I am having a problem enabling facebook comment moderation on my site. Comments are appearing fine, but moderation is not, either on the page(s) or here: https://developers.facebook.com/tools/comments
I've included in the head:
<meta property="fb:admins" content="10xxx16606762xxxx"/>
<meta property="fb:app_id" content="16xxx702682xxxx" />
And this in the script:
## PAGE BODY
$body
#if ($page.date)
<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=16xxx702682xxxx";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<div class="fb-comments" data-href="http://${request.serverName}${page.url}" data-num-posts="10" data-width="800"></div>
Any suggestions?