I am working on my new site, and I wanted to intergrate the facebook comment box so people could leave authentic feedback.
I've got the box on the site, created my app , got my app ID and my facebook ID. Put them in the meta tags but it still won't let me delete peoples comments. I had a friend put a test comment on for me to try.
The page is www dot bodmaster dot com/product/Bodology/EFX-10%20Oxygenator
I hovered the mouse over my facebook display pic to get my FB ID from the url...

This is how I got my app ID, and shows all my settings...

I've added the following meta tags to the page...
<meta property="fb:admins" content="10150317838260636" />
<meta property="fb:app_id" content="414103721981616" />
Just to be thorough this is the fb script added to the page...
<!-- facebook script -->
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=414103721981616";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<!-- end facebook script -->
and the code for the comment box...
<?php $url = (!empty($_SERVER['HTTPS'])) ? "https://".$_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI'] : "http://".$_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI']; ?>
<div class="fb-comments" data-href="<?php echo urlencode($url); ?>" data-num-posts="10" data-width="470"></div>
Facebook did say, "it may take a few moments to update the servers"
It's not working after an hour, am I not waiting long enough?
Any assistance would be greatly appreciated from you wizards.
10150317838260636is your profile id? – Lix Sep 2 '12 at 6:03