简体   繁体   中英

Facebook comments box not showing

For some reason facebook comment box appears on my web articles only after I refresh the article page although it was working correctly few days ago:

The website is: http://metallica-gr.net/ , each article contains facebook comments on the bottom of the page.

Any ideas?

SOLUTION:

So I pasted the comments script right before closing instead of right after openning it like it was recommended by Facebook and now it's working again. Not sure why that happened though since it was working fine, probably it conflicts with some other script?(although I didn't add anything to my website).

So I pasted the comments script right before closing </body> instead of right after openning it like it was recommended by Facebook and now it's working again. Not sure why that happened though since it was working fine, probably it conflicts with some other script?(although I didn't add anything to my website).

I use jquery to show the facebook comment box:

<div id="fb-root"></div>
<script>
    $(document).ready(function () {
        (function (d, s, id) {
            var js, fjs = d.getElementsByTagName(s)[0];
            if (d.getElementById(id)) return;
            js = d.createElement(s); js.id = id;
            js.src = "//connect.facebook.net/he_IL/all.js#xfbml=1";
            fjs.parentNode.insertBefore(js, fjs);
        }(document, 'script', 'facebook-jssdk'));
    });
</script>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM