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 receive this message on my page where there is facebook comments plugin. "Warning: this comments plugin is operating in compatibility mode, but has no posts yet. Consider specifying an explicit 'href' as suggested in the comments plugin documentation to take advantage of all plugin features."

In the tag Head I've included meta property fb:app_id, fb:admins and added an XML namespace to the tag of document like this xmlns:fb="http://ogp.me/ns/fb#". I use Facebook XFBML code. If I use parameter "href" in fb:comments I'm not able to moderate comments, if I don't use it I can moderate comments but the message posted above appears in a yellow box.

I run a static website not a php blog. Until two weeks ago Facebook comments plugin works well, but something is changed. I have also on my site like button with href parameter without problems. Can anyone heklp me to fix this? Thanks in advance for your reply.

share|improve this question

1 Answer

Static site? no system at all? If so do you place the fb:comments tags where you want manually each and every time? if you do, then you need to remove the 'xid', 'migrated', and 'url' attributes from the tag and only use the 'href' attribute.

If you do running on some system even a blog on Blogger, then I wrote a complete tutorial with a small use of JS to solve this issue. Visit the tutorial


What I did was:

  • Set off the parse for XFBML tags in the JS SDK
  • Adding a function-call to the JS SDK with a date parameter that you manually set it once with a date that posts published after that date will start using the 'href' version, and posts published until that date will use the migrated version.
  • Adding another attribute to the fb:comments tag which is 'data-date' and in it's value you place your post date (dynamic code).
  • Calculating the dates in a JS code, and base on the result it's removing the not wanted attributes, and finally then it's render the XFBML tags using FB.XFBML.parse
share|improve this answer

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.