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>