@elize82 I checked to make sure no updates on Facebook side and the code is still working for me.
First, let me check some things.
Are you running W3 Total Cache? If so, the latest build? This has been creating problems with most everything.
Are you running Google Analtyics Dashboard (or similar google script). Could be possible you are loading script twice.
You see this code on your page:
jQuery(window).load(function () {
FB.Event.subscribe(‘comment.create’, comment_add);
FB.Event.subscribe(‘comment.remove’, comment_remove);
jQuery(“[id=comments]”).each(function () {
jQuery(“[id=comments]:gt(0)”).hide();
});
});
If that is there, you have this on page?
var comment_add = function (response) {
var cevap = response;
jQuery.ajax({
type: ‘POST’,
url: ‘https://www.yourdomain.com/wp-admin/admin-ajax.php’,
data: {
‘action’: ‘fbcs_ajaxCA’, myData: cevap
},
success: function (response) {
console.log(‘comment.create fired’ + response);
},
error: function (exception) {
console.log(‘Exception:’ + exception);
}
});
return false;
};
And, if that’s the case, what is the log response when you comment on Facebook comments? Have a link to pages running the comment plugin?
Cheers
Ryan