Creating Facebook Comments on site with Phoca Facebook Comments module:
If you want to add Facebook comment feature to your site, you need to create a Facebook Comment Application in your Facebook Account.
You can edit your Facebook application in your Facebook Account. Go to Account - Application Settings - click on Developer (or go to this site: http://www.facebook.com/developers/). Now you should see your application(s) in the top right area of your site. Click on your selected application to edit it.
As administrator and developer of the Facebook Comment Application you are able to admin the comments on the site. You are able to delete the comments on your site if you are logged in on the site with your Facebook login.
Because Phoca Facebook Comments module cannot edit main html tag of your site, recommended attribute (by Facebook) should be added to your template index.php:
xmlns:fb="http://www.facebook.com/2008/fbml"Example - setting rhuk_milkyway, modify:
templates/rhuk_milkyway/index.php
FROM:
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" >TO:
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/2008/fbml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" >|
|