Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using the facebook comments plugin for my site . Everything works ok except I want all comments to appear without being moderated first . Comment appears on the user's wall. I checked 'Make every post public by default.' and then 'Save' button option but no results . I used the url linter-it showed no error . My meta tags looks like

<meta property="fb:admins" content="1"/>
<meta property="fb:app_id" content="a"/>
<meta property="og:url" id="fb_url" content="u"/>
<meta property="og:title" content="t"/>
<meta property="og:type" content="movie"/>
<meta property="og:image" id="fb_img" content="i"/> 

My Comments code is as follow

 function fbinit()
 {
  var app_id='appid';
  FB.init({ appId : app_id, status:true, cookie : true, oauth:true, xfbml:true });
 }
 function show_comments(vid)
 {
   var fbcomments =document.getElementById("fbcomments");
   ref_comments='some url';
   markup_comments='<fb:comments xid="c'+vid +'" colorscheme="dark" style="margin-left:120px;" href="'+ref_comments+'"></fb:comments>';
   FB.XFBML.parse();
 }
   Facebook root:<div id='fb-root'></div> 
share|improve this question
will you please put your code too – Awais Qarni Oct 11 '11 at 7:20
Meta tags::<meta property="fb:admins" content="1"/> <meta property="fb:app_id" content="a"/> <meta property="og:url" id="fb_url" content="u"/> <meta property="og:title" content="t"/> <meta property="og:type" content="movie"/> <meta property="og:image" id="fb_img" content="i"/> – Alex Dumitrescu Oct 11 '11 at 7:36
The comment box is generated with javascript .The necessary data is loaded through ajax-the user remains on the same page . – Alex Dumitrescu Oct 11 '11 at 7:47
Facebook initialization:function fbinit() { var app_id='appid'; FB.init({ appId : app_id, status:true, cookie : true, oauth:true, xfbml:true });} function show_comments(vid) { var fbcomments =document.getElementById("fbcomments");ref_comments='some url'; markup_comments='<fb:comments xid="c'+vid +'" colorscheme="dark" style="margin-left:120px;" href="'+ref_comments+'"></fb:comments>';fbcomments.innerHTML = markup_comments; FB.XFBML.parse();} Facebook root:<div id='fb-root'></div> – Alex Dumitrescu Oct 11 '11 at 7:49

1 Answer

FB Comments is a detail tutorials about fb comments. You can have every thing that you want to have

share|improve this answer
Useful but I want the exact opposite:not to receive mail about new comments, or to have to moderate them .The comments show up in the moderator view, I moderate them and then show up .I don't want to go through all this process:comments must appear right after being written . – Alex Dumitrescu Oct 11 '11 at 8:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.