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 have configured my web application to display Facebook comments and comment count in the post details template... It is displaying perfectly when there is a comment, but I would like to hide the "x Comments" part when there is no comment posted.

< fb:comments-count href="[ARTICLELINK]"/>< /fb:comments-count> Comments

This is my template to display the comment count...

In my application's own comments feature, I could use the [hascomments][commentcount]Comments[/hascomments] template...

However, I couldn't find which token to use for Facebook comments.

share|improve this question

1 Answer

Put the above code you have into a div with an id="hideMeIfZero". After Facebook has had time to parse the fb:comments-count tag, then use JavaScript to parse the innerText of the div "hideMeIfZero" for the count.

If the count is 0, then hide the div using CSS.

share|improve this answer
Did this answer help you to find your solution to your question, if so, please accept this answer. See meta.stackoverflow.com/questions/5234/… for how to mark answers. Thank you! – DMCS Feb 4 '12 at 15:35

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.