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 implemented facebook comments across a legacy, custom CMS. I used the XFBML implementation. Everything works as expected except when clicking the links back to the article page from a commenter's facebook feed the comment box does not show any comments. The link is of this form:

{Article URL}?fb_comment_id={comment_id_string}

And if I remove the comment parameter and only go to the article url the comment box renders correctly with the comment and all other comments on the article. So, it's some issue with the fb_comment_id parameter. One weird thing about how I had to implement the comments is, because of how the routing on the site works, I could not use server side code to set the the URL parameter in the <fb:comments> object. So I had to use this jquery code in the <head>:

<script>
        // assign current page to comments url
        $(document).ready(function() {
            $('fb\\:comments').each(function(){
                $(this).attr('href', window.location);
            });
        });
</script>

And used this for the actual <fb:comments> code:

<fb:comments href="{site's root URL}" num_posts="8" width="570"></fb:comments>

So, I figure doing this client side may be causing the issue. Not doing this server side is a hard constraint though, and everything else works so I'm hopeful there may be some way to make this work. If making the comment link work correctly is impossible, a reasonable hack would be to rewrite the link in the facebook feed so that it just points to the article url without adding the comment parameter. Any suggestions? Thanks!

NOTE: I've also tried using the html5 comments implementation and there is the same issue.;

share|improve this question

1 Answer

up vote 1 down vote accepted

Once facebook has rendered the iframe based upon your fb:comments tag, does it have the correct url? I am thinking it does not. You may have to call FB.XFBML.parse() after you inject the complete

share|improve this answer
thanks for the suggestions. It looks like the iframe source is correct, there's lots of other encoding but the full URL string is in there. Likewise the fb:comments tag URL value is correct in my DOM inspector. I tried placing FB.XFBML.parse() after the jquery, after the facebook js-sdk include, and after the fb:comments tag, but it didn't help. Do you know of any way to set it so that feed link doesn't include the comment id parameter? – tks Jan 4 '12 at 17:46
1  
No, I don't but there may be someone around who does. – DMCS Jan 4 '12 at 17:57
ok, appreciate your help. – tks Jan 4 '12 at 18:05
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 23:26

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.