Twitist Forums
How to admin the comment box on FaceBook? - Printable Version

+- Twitist Forums (http://twitist.com)
+-- Forum: Facebook forums (/forum-14.html)
+--- Forum: Facebook apps (/forum-22.html)
+--- Thread: How to admin the comment box on FaceBook? (/thread-161844.html)



How to admin the comment box on FaceBook? - Jake Reeves - 06-05-2014 10:14 AM

DON'T ANSWER IF YOU DON'T KNOW WHAT THE HELL TO DO! Smile Thank you


To add a Moderation tools in the facebook new comment box i have to add the meta tag in the comment box code. Where in the hell do i put it? I put it almost everywhere and still does not work!

--------------------------------------…
Comment code---


<div id="fb-root"></div><script src="http://connect.facebook.net/en_US/a… href="example.com" num_posts="2" width="500"></fb:comments>
--------------------------------------…
META TAG---
(single comment boxes on my site)
<meta property="fb:admins" content="{YOUR_FACEBOOK_USER_ID}"/>

And
(Multiple comment boxes on my site)
<meta property="fb:app_id" content="{YOUR_APPLICATION_ID}">


- Nubbiestn00b - 06-05-2014 10:16 AM

According to Facebook's blog, you add the meta tag right below your div id. It shouldn't matter as long as it's under it. Press enter and paste. If that doesn't work, you might have something missing that they've listed on

http://developers.facebook.com/blog/post/472

because I see you don't have everything. Just follow this basic outline

<html>
<head>

<meta property="fb:app_id" content="{YOUR_APPLICATION_ID}">

</head>

<script src="http://connect.facebook.net/en_US/all.js#xfbml=1">
</script>

<body>

<div id="fb-root"></div>

<fb:comments href="YOUR_CANONICAL_URL"></fb:comments>

</body>
</html>

It could also be that you're using the facebook default things (e.g. example.com) that you should input yourself. Those things that you just posted are just examples by Facebook, so you should edit them to your website's personal information.

Good luck!