New Facebook Comment Box for Blogger With Notifications Enabled


Facebook comment for your blog can serve as a good way to make your site more engaging and encourage readers to drop comments if they’re already logged in to Facebook. It also serves as a source of traffic since using Facebook comment shares the comment and post page on the visitor’s Facebook wall. One thing should be noted though: Facebook comment has no SEO value since it’s being displayed in an iframe which Google won’t index. Comments made with the regular comment box on your site has more advantages especially if you get loads of comment, more keywords you didn’t actually mention in the post content but appearing in comments do bring more search engine traffic. This is something Facebook comment lacks, execept the extra traffic you get from Facebook.

I just thought you should know that before you implent it on your blog. As you can see, I do use it too. I wrote a post on this particular topic earlier but Facebook has changed since, lots of things on the post may not look exactly as explained. Also, this one has a feature the previous one didn’t have – getting notified of every comment made on your blog. One other thing, I customized this with a little CSS. Below is a screenshot of what it looks like:

new facebook comment box for blogger with notification

You may also check the live demo on my old blog here.

How to add Facebook comment box to Blogspot

There are about five steps to get this done but chill out, it’s easy, ok? :D Just follow the steps and you’ll have a nice Facebook comment box installed on your blog in no time.

1. Creating a Facebook Application

i. Head on to facebook developer page, you should create a new app by clicking the button at the top right.

how to add facebook comment box for blogger

ii. Enter your application name and namespace,input the captcha code and proceed.

how to add facebook comment to blogger

iii. On the next page, enter your custom domain name (if you’re using a custom domain) or just blogspot.com (if you’re using blogspot sub domain) in the space provided for App domain.

For App website, enter you blog URL. ( http://www.xyz.com/ or http://xyz.blogspot.com/ ). Be sure it starts with http:// and ends with / as shown in the screenshot below:

how to add facebook comment to blogspot

iv. Scroll down a bit and hit the Save Changes button. Now you’re done with creating your facebook application but there’s one more thing to do. On that same page, you should see your application ID. Copy it and save somewhere, you’re gonna be needing it.

facebook comment box for blogspot

Now let’s head to your blog and finish this up ;)

2. Adding the codes to your template

We’re adding four sets of codes into your template to make this work the way we want, aight?

i. xmnls attribute
ii. SDK script
iiI. Open graph meta tag
iv. Comment form iframe code

Log in to your blogger account and click on Template > Edit HTML > Check Expand Widget Template

i. Press Ctrl + F and search for this code:

<html

This should be found on the second or third line of your template.

- Right in front of this, add the following code:

xmlns:fb='http://www.facebook.com/2008/fbml'

-Be sure to have a space before and after this code. Take a look at the example below:

<html xmlns:fb='http://www.facebook.com/2008/fbml' expr:dir='data:blog…………..2005/gml/expr' >

ii. Press CTRL + F on your keyboard and search for this:

<body>

If you can’t find this, search for something similar. You should search for this instead:

<body expr:class='&quot;loading&quot; + data:blog.mobileClass'>

In the next line, paste this code:

<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : 'YOUR APPLICATION ID HERE',
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
};
(function() {
var e = document.createElement('script');
e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
e.async = true;
document.getElementById('fb-root').appendChild(e);
}());
</script>

Be sure to replace YOUR APPLICATION ID HERE with the application ID I asked you to copy earlier, remember?

iii. Now, let’s add the open graph meta tag. Search for this code in your template:

</head>

In the line above it, paste this piece of code:

<meta property="fb:app_id" content="YOUR_APP_ID" />

Replace YOUR_APP_ID with that same application ID you previously copied.

iv. Now here’s the last part of tweaking your template your template to make it display Facebook comment box. The last thing is the iframe to display the comment box where you want. Search for this in your template:

<data:post.body/>

If you’re using a magazine style template, you’re likely to have more than one occurrence of this. Using the wrong one won’t make the comment show up. If you’re not sure about which one to use, search for this instead:

<div class='post-footer-line post-footer-line-1'>

In the line just below it, paste this code:

<b:if cond='data:blog.pageType == &quot;item&quot;'>
<style>
.doncaprio-share-buttons
{
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
border:1px solid #BBBBBB;
background-color:#F2F2F2;
-webkit-box-shadow: #B3B3B3 5px 5px 5px;
-moz-box-shadow: #B3B3B3 5px 5px 5px;
box-shadow: #B3B3B3 5px 5px 5px;
padding: 5px;
margin: 10px;
}
</style>
<p align='center'>
<div class='doncaprio-share-buttons' style='background: #f2f2f2;'>
<font size='6'><strong>Love to hear what you think!</strong></font> <img src='http://www.doncaprio.com/wp-content/uploads/2012/08/comment.png'/>
<br/>
<script src='http://connect.facebook.net/en_US/all.js#xfbml=1'/>
<div><fb:comments expr:href='data:post.url' expr:title='data:post.title' expr:xid='data:post.id' width='450'/></div>
<div align='right'><a href='http://www.doncaprio.com/2011/08/facebook-comment-box-for-blogger.html' target='blank'><small>[Facebook Comment For Blogger]</small></a></div>
</div>
</p>
</b:if>

Save your template, the Facebook comment form should now appear. If it looks rather small, replace width=’450′ with width=’600′. This increases the width from 450px to 600px.

3. Enabling notification for comments on every post

This is the last part and it’s optional but I recommend it. Enabling this lets you know whenever someone comments on your blog. You get a regular notification on Facebook and you can visit your blog to reply the comment.

- Visit this URL: https://developers.facebook.com/tools/comments/?id=YOUR_APP_ID

- Be sure to replace YOUR_APP_ID with your real application ID

- On the page that opens, click on settings and add yourself as moderator

facebook comment box for blogger with notification

- Click on your name when it shows up and save the changes you made. When someone drops a comment on your blog, you should be notified that instant on Facebook.

facebook comment box for blogger with notification enabled

If this works for you, you can say thank you by sharing on Facebook, hitting the Google +1 button or simply using the comment box. Also, it would be nice of you not to remove the credit link to allow others find this useful widget. If you’re having problems implementing this as well, don’t hesitate to let me know maybe I can be of help.

Update 1: Showing the Comment Box on the Homepage and Archive

I don’t recommend this because it doesn’t make your blog look neat and professional but if you have to show the comment box on the homepage, there’s only a little thing you must do. See the code you pasted in STEP 2 iv? Yeah, just remove the first and the last line of that code and the box should appear on the homepage below every post.

Update 2: Fix Facebook Comment Box Aligned to the Right

We all know Blogger recently made some changes and I noticed this box got aligned to the right due to some reasons. This seems to be cause by some HTML tags being incorrectly parsed by the new template editor… my guess.

Anyway, here’s the fix: Replace the code you have under data:post.body with the one below.

<b:if cond='data:blog.pageType == &quot;item&quot;'>
<style>
.doncaprio-share-buttons
{
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
border:1px solid #BBBBBB;
background-color:#F2F2F2;
-webkit-box-shadow: #B3B3B3 5px 5px 5px;
-moz-box-shadow: #B3B3B3 5px 5px 5px;
box-shadow: #B3B3B3 5px 5px 5px;
padding: 5px;
margin: 10px;
}
</style>
<p align='center'>
<div class='doncaprio-share-buttons' style='background: #f2f2f2;'>
<font size='6'><strong>Love to hear what you think!</strong></font> <img src='http://www.doncaprio.com/wp-content/uploads/2012/08/comment.png'/>
<br/>
<script src='http://connect.facebook.net/en_US/all.js#xfbml=1'/>
<div><fb:comments expr:href='data:post.url' expr:title='data:post.title' expr:xid='data:post.id' width='450'/></div>
<div align='right'><a href='http://www.doncaprio.com/2011/08/facebook-comment-box-for-blogger.html' target='blank'><small>[Facebook Comment For Blogger]</small></a></div>
</div>
</p>
</b:if>

Replacing the whole code pasted earlier under data:post.body or post-footer-line-1 should fix it. I did it on my test blog and it works just fine. Any problem? Don’t hesitate to holla at me. :)

Peace.

avatar
Don Caprio is a full time blogger / web designer living in Nigeria and apart from blogging, my other obsession is music. I'm a self-confessed Tupac fan, an iOS lover, an Android user, a Windows 8 power user, a writer with a 5-year old unfinished novel... and the list goes on and on. You can add me on Facebook, follow my updates on Twitter or add me to your circles on ! You can as well grab my feed and get updates through email.
avatar
avatar
avatar

Get free daily updates through email

Comments

  1. Facebook comment box is not working for my blog. I don’t know why. Please help me
    Emeka Kamanda recently posted..Adding Stylish Share Buttons to Your Blogger/Wordpress Blog’s PostMy Profile

  2. The Widget is so Cool Bro Don, the Notification feature is on pint, and you made it look awesome by styling it, besides this, I notice you do styling in widgets you talk on your blog these days, seems you’ve added CSS to your skills.
    Thumbs Up ;)
    Edi – The A.J Geek recently posted..Android Meets Digital PhotographyMy Profile

  3. Its cool
    Buh i don’t think i want facebook comment boc on my blog right now.
    Perhaps when i move to WP
    Derek recently posted..5 Steps for Branding through Social MediaMy Profile

  4. Thank done, good to see this simple steps

  5. I have allready set up facebook comment box to my [url=http://www.e-blog24.blogspot.com]blog.[/url] i think it need to be update from your post. Thanks don

    • Since you already have a facebook comment installed, just replace that with is as explained above: You can replace the comment form with this new one. Just replace the code under

  6. Thank you sir, for this great share but please what about we that are using the old facebook comment box before.
    How are we going to remove the old one before installing this new one?

  7. Mine is working perfectly good………saw alot of comment notification on my facebook wall coming from my site……………..good work Don
    Victor Ome Umukoro recently posted..Photos: Togolese Women ProtestMy Profile

  8. Mr Don Caprio pls do you any article on this “Get free daily updates through email Subscription Bar”? pls i need it
    Victor Ome Umukoro recently posted..Photos: Togolese Women ProtestMy Profile

  9. The instrument is so calm, the Notification component exists on pint, also you caused it appearance large by styling it, additional this, I caution you do styling in instruments you conversation on your blog these days.
    Shane recently posted..Putra FM 90.7 Malaysia Radio OnlineMy Profile

  10. thanks for this!

  11. Hi Don, I am fine up to the point where I search for the line
    No search results. Any suggestions? Thanks

  12. forgot to check the Check Expand Widget Template box. Done and it looks great! Thanks!

  13. Thanks man its cool and i love it.
    Cyracks recently posted..How to Get Google index your Backlinks fast without waiting Part 2My Profile

  14. Can the facebook comment box be removed?
    cholesterol recently posted..Stop bully, Share this on facebook, twitter and google plus!My Profile

  15. Not working for my blog…… message shown like this …… ” Error parsing XML, line 3, column 340: Attribute “xmlns:fb” was already specified for element “html”…..

  16. Thank YOU!!! I can’t believe I did it!! Hooray!

    Lina
    http://www.fancyfrugallife.blogspot.com

  17. hi sir am following same steps in my blogger .but it will not showing anything.and there is no error at saving template.Please help me and am using blogger theme simple magazine 2 theme pls reply to me sir

  18. Hi friend thanks to you for this awesome information, my blog now is using FB comment :)
    Mike recently posted..Wanita ini Hamil Gara-gara Bercinta dengan MayatMy Profile

  19. I can’t find anything with with “post.body” or “div class=’post” on my blog…. not sure where to add the code in part iv.

  20. Is there any way to get this to jive with the mobile version?
    Chuck Porter ( recently posted..Yankees All-Time Team v.2012My Profile

  21. Awesome plugin!!! Great work. thanks…
    GoodCook recently posted..Around the World in 80 RecipesMy Profile

  22. I changed my blog template to a third party template and when I did that I lost the Facebook Comment Box. Do you know of an easy fix for this or is this something that won’t jive?
    Chuck Porter ( recently posted..2012 Gold Glove WinnersMy Profile

  23. Thanks Don, it worked fine
    Toby Allen recently posted..How To Activate Etisalat Talkzone To Make Calls As Low As 1k/secMy Profile

  24. Hello,
    I did all the above and the commet box apperas normaly and when i comment it works(i’ve added myself as moderator) but when someone else commets he gets this message: “Something went wrong. We’re working on getting it fixed as soon as we can.” Also I don’t get a notification of a new comment. Ca n you help?

  25. I just the comment box for a few days snd took if off because, a comment posted on a particular post runs through all the posts, can u help. Thanks

  26. App creation failed
    Please use your personal account to create this app. To use a different name for testing, create the app with your personal account and then create a test account.

    If you received this message in error, please submit an appeal.
    Aslam recently posted..Preparing For Travel To BangladeshMy Profile

  27. How To make action default
    Post to Facebook
    Box aleardy have checked
    user no need to make check to post it to his profile
    I wish u understand me
    thanks for this good topic
    Ahmed recently posted..How to Become a Creative GeniusMy Profile

  28. thanks Don Caprio
    I love happy with your wondrfull posts…forward
    Ahmed recently posted..How to Become a Creative GeniusMy Profile

  29. Thanks — Don Caprio
    Successfully added FB Comments to my blog.
    John Dick recently posted..Enrique Iglesias Gorgeous WallpaperMy Profile

  30. Thanks for this Article Doncaprio, i have successfully added it to my blog @ Make Money Online

  31. Thanks for sharing this cool widget with us. It’s definitely a real nice one to have. Keep up woth the good work.
    Cyberneticus recently posted..TestMy Profile

  32. Thanks Don for the simple tutorial. The app works perfectly on my site and it also looks good thanks to your css code.
    Lahaul Seth recently posted..Why you should join Blog Engage ?My Profile

    • Glad you love it, bro.

      • Hi. When I try to add myself as moderator, I get this message:
        “Cannot add non-users or non-friends as moderators: Ara Aquino”
        What should I do?

      • I did all of the steps, but the comment box is not showing :(
        What should I do?
        Ara recently posted..The Church on RH Bill + my thoughtsMy Profile

        • Never mind this one as well, I got it to work :)

          I am using a design by Sora Templates (Eclipse) and appeared thrice in my codes so I looked for instead. However, when I paste the codes after it still doesn’t work, so I tried pasting it after . Unfortunately, it still didn’t work so I asked you what to do.

          After a couple of days, I tried pasting it after the second and it finally worked! It looked great, I have to say. But I had to revert to the simple Facebook comments because it seemed to me that there was already “a lot” happening in my pages.

          Anyway, great work, Don! Thanks for this one! Hugggs! xoxo

          • Yeah, I do understand… trying to keep post pages as simple as possible. Nice blog, Ara. :)

          • LOL I just noticed that the tags didn’t appear :P Anyway, I said:

            I am using a design by Sora Templates (Eclipse) and appeared thrice in my codes so I looked for instead. However, when I paste the codes after it still doesn’t work, so I tried pasting it after . Unfortunately, it still didn’t work so I asked you what to do.

            After a couple of days, I tried pasting it after the second and it finally worked! It looked great, I have to say. But I had to revert to the simple Facebook comments because it seemed to me that there was already “a lot” happening in my pages.

            Anyway, great work, Don! Thanks for this one! Hugggs! xoxo

            **remove spaces between tags
            ———-
            Yep, keeping it simple Don. Thanks :)

  33. Thanks bro. It works
    SamDaddyCool recently posted..December 2012 Contest GiveawayMy Profile

  34. It’s work here
    http://how-tobecome.blogspot.com

    but here it didn’t
    http://moonl8.blogspot.com/

    what problem Dear I applied all steps
    Ahmed recently posted..Blogspot SEO Guide: How to Tweak your Search Preferences SettingsMy Profile

    • I hope you don’t mind me replying here, but try to play with the codes :)
      Search for and if it appeared more than once, try to paste it after the first. If it doesn’t work, cut the codes and paste them after the second. And so on. Same thing with . If it doesn’t work, move the codes after , or , blah blah blah. Give it a try :)
      Arakarenina recently posted..The Church on RH Bill + my thoughtsMy Profile

  35. Don, I did what you wrote (and even added tweets) but my problem is, the “Posted by” tag is below the comments boxes instead of been just under the post. I need help!
    My blog is: http://www.campuzfilla.com
    Archurst recently posted..Welcome To Campuz Filla!My Profile

  36. Wow, thanks @ don. its useful

  37. Don, I did what you wrote, but my blog is showing old blogger comment box… help… :(

  38. Hi there,
    Thanks for this tutorial! I think it works. I tried commenting on my blog, and got no notification; is that just because it was me who wrote and not someone else?
    Also, the comment box is covering up my post-footer. How can I move it down?
    (haha, most of my blog design problems involve spacing – see my sidebar! – I really need to figure it out!)
    Thanks so much!

    • Ah, got it to work AND be in the right place! Yes!
      I modified it a touch, just to make it fit better on my page (removed shadow, changed “Love to hear what you think” to “I’d love to hear what you think”, removed the comment icon picture thingy, changed the font size of the title so it’s not so big…)
      The only thing is that I would LIKE it to fit the space of my blog post. Changing the size like you say in this post only makes the actual comment space where you write bigger and not the whole thing. Any recommendations?

      • Glad you got it working! By using width=’600′ it should actually be bigger… I mean the whole thing. Just noticed the apostrophe up there in the post looks a bit twisted.

    • Hi,

      I checked just now and it seems you’ve fixed it. It wasn’t covering the footer and you probably won’t get notified if you commented yourself.

  39. thanks..very helpful..i have implemented this on my blog.

  40. Can I keep both Facebook Comments and Disqus on Blogger at same time?
    Jim Luthra recently posted..10 Indian Bloggers with Highest AdSense IncomeMy Profile

  41. avatar Malik Ismail says:

    hi
    i have coded this step by step but it is only working for 1 post and not showing comment box for other post
    kindly help

  42. Nic………… post thnks
    Nitesh saitand recently posted..Mr. Abhi Shaw have a Mysterious Words what was that?My Profile

  43. I followed these steps but it seems the box is still not showing up.
    Do you have any suggestions?

  44. me too I followed these steps but it seems the box is still not showing up.
    Do you have any suggestions?

  45. I tried your code but on my blog http://www.spicejaat.com its working on post pages but when on label search facebook messagebox is not displayed. Any resolution to it.

  46. Hi,

    thanks ! i already did it but thanks for sharing.

    But, i want to have the notification on my mobile (iOs), in facebook’s app, i don’t know how to do that (i ONLY receive notification on facebook’s website, not mobile app).

    Any idea ?
    Thomas Benezeth recently posted..Partageons nos lecturesMy Profile

  47. is it available for Thesis WordPress theme? Please let me know.
    Shemul49rmc recently posted..Download Skype 6 Final Standalone Offline Installer For Windows MacMy Profile

  48. Hi Don
    THANK YOU so much – it works!!!
    I just made some changes as I didn’t want the border.

    I have a question thought – I’d like the FB-comment-box to be AFTER the Linkwithin box.
    How do I do that??
    Thanks in advance

  49. Step 2 part iv searched for both codes and can’t find it now I don’t know where to put the code that will make the box show I thought the problem might be in the template I used one called Awesome Inc. so I changed it to water mark they both the same they don’t have that section and I just wanna know where to put the last code part

  50. Hi Don
    I searched for the right “footer-line” and placed the code in the place I wanted it.
    Thanks.
    It’s working and I already seeing comment, but I DO NOT get any notification, and I followed your instructions
    Winnie recently posted..לחם ינשוףMy Profile

  51. Dear admin, where will we get the notification if someone leaves comment on our post coz in default comment box we receive notification in blogger but when using facebook comment box where we will find this notification. Plz help.
    Babita tomar recently posted..Command And Conquer Red Alert 3 WallpapersMy Profile

  52. well done!!! It’s very cool ,thanks u so much :x
    Visit my site : http://www.share99.net

  53. hey bro i can’t add app domain it rejected with Error
    App Domains: http://www.photoscape-material.blogspot.com/ is not a valid domain. now what to do?? plzzz help

  54. what is the real advantages of having this comment box?

  55. Wonderful and thanks for all. I have you use this for my blog http://www.facebooksrc.com
    sugumarje recently posted..New year 2013 WishesMy Profile

  56. Thank you so much for sharing this don. I try it and it work !!!

  57. after put it on http://www.bastanta.com now I put it on http://www.grafik4.com. Thankyou Don
    Ferdinand Kamadin recently posted..Kuis PULSA GRATIS BASTANTA RELOAD 06/01/2013My Profile

  58. Can I move the Facebook comment box at the lower side ? Below the standard blogspot comment box, because I prefer Blogspot comment box first, and Facebook comment box after it.
    Thankyou

  59. really nice and also very much helpful. thanks bro
    rams recently posted..Insight into ieltsMy Profile

  60. i already have the fb comments on my blog for some time and now its showing that “Warning: [url of the blog post] is unreachable.” i fear if i do the steps you’ve mentioned, my old posts with comments will disappear. do you know if anyone tried to change to your style and did not lost the old comments?
    K recently posted..Palibhasa Parañaque!My Profile

  61. Dear

    I have tried to follow the instructions, but the fb box did not appear. Would you mind helping check what is wrong if that is possible?

    Thanks a lot.

  62. This errors is coming


    Error parsing XML, line 3, column 339: Attribute “xmlns:fb” was already specified for element “html”.”

    while implementing this tool on my blog of ” latest jobs, bank job government jobs, exam paper and career resources”
    http://abhicareer.blogspot.com

  63. avatar Alina Aronow says:

    I did all steps and it works. Thanks! One problem – people can only comment through Facebook if you’re logged in from a computer. It doesn’t work if You’re trying to comment through your phone. Please help! My blog is alinasfashtips.blogspot.com

  64. Already have fb comment on my blog, but without notification it difficult to trace any incoming new comment on each my post. Thanks don! nice tutorial, very much helpful

  65. I love this tutorial. It works so well on my blog. You deserve a million likes!

  66. Thank you very much! No instructions worked until I found your perfect explanation. It works just fine and it looks amazing. I just translated the top line to my language. Just one thing – when the page loads, it takes some time to load comment box. It sort of tries to load it many times before it’s finally done. Maybe there is a way to fix it? Thanks again
    lieknek-lengvai.blogspot.co.uk

    • That’s because it’s a server side javascript that has to be loaded straight from Facebook’s server. There’s no way tofix it, Ieva. Glad it worked for you though :)

      • Hello again,

        I hope you can help. Again:)
        I decided to change my blogspot domain to my own. And all the comments disappeared… Comment box is still there but all the likes and all the comments gone:(
        Is there a way to fix it please?

        Thank you
        Ieva

        • There’s no way to fix that that I know of. The comments appear as per the URL of each post and once the URL changes or even just your permalink structure, the comments disappear.

  67. Haha, that’s nice! Thank you a lot! :D

  68. Thank you! It’s not a big problem anyway

  69. Hi Don, thanks for the post. I believe Facebook has changed since you wrote this post. In step 1, iii, your instructions are to put in your domain or subdomain and in the lower section put in your site URL, there is no place to put my url. Help please!

  70. avatar Alina Aronow says:

    thank you very much!

  71. This Facebook comment box is not working.and you are not a trusted person now anymore cause you have wasted my time.
    ali ahmad recently posted..Pure White Fancy King PigeonsMy Profile

  72. I have read your blog twice first part is under stable but second is not understable. and even i applied 3rd one and did it. Very informative, thanks for visual post

  73. Very happy … just opened this site for a while already be science anymore … Thanks

  74. I tried this. Finished all the steps. But the comment box didn’t appear on my blog! :( And when I go to settings (for comment notifications) there’s literally nothing in the settings dialogue box, except ‘Save’ and ‘Cancel’

    Help?

    • avatar Alexis Mendoza
      Twitter:
      says:

      I also experienced this, what I did is just go to my website, and check the comments area, theres a similar settings button there. That worked for me :)

  75. Thank you SO MUCH ! I love it!

  76. everything is in place but I’ve got one question – how can I put the comment box beneath every post on front page?

    • You only need to go to step 2 iv. Remove these <b:if cond='data:blog.pageType == &quot;item&quot;'> and </b:if>

      • i’ve tried ! it works !
        Atiqah recently posted..resepi puding roti mudah lazat berkrimMy Profile

      • I understand, thank you. I was thinking about something else:

        What if I would want to make a link at the right bottom of every post I make that says ‘Comment’ and that link is just the same ‘variable’ link that says the ‘name of the post’ and goes to the post page? And also automatically scrolls down to the bottom of the page to the comment form? I know how to make the page ‘jump’ to bottom but I have no idea where should I place the codes.

        What’s the code for the link up top and where should I place it?

        Have you got any idea how to achieve this?

        • ok I figured out where to put the ‘Comment’ jump link:

          COMMENT

          but I have no idea why the jump link doesn’t work,

          I’ve put the blabla after the line:

          and it’s linked to the comment link so it should jump to the bottom of the page but it does not happen.

          Have you got an idea?

  77. Hi Don,

    Thanks for the free info on how to do this, people like me really need all the help we can get with this stuff.
    I followed your instructions and was able to (eventually) get it to work! Any delay in making this work was due to my brain, not your instructions!
    The only place where I had to do something differently than was instructed was where you input the App domain. I couldn’t get any version of my blogspot.com url to be accepted, so I ended up leaving it blank and for some reason that worked !?!
    I hope it will still function alright.
    Many thanks for doing the HTML hard yards on this tutorial.
    Clair recently posted..Inspired: Bill GibbMy Profile

  78. BRO MINE HAS REFUSED TO SHOW ON MOBILE IT ONLY SHOWS ON PC PLZ AM URGENTLY WAITING FOR UR REPLY

  79. BRO MINE HAS REFUSED TO SHOW ON MOBILE U CAN ONLY FIND IT ON PC PLZ AM WAITING FOR UR REPLY URGENTLY
    MILLSMUSICENT recently posted..Exclusive!!! Video Of A pastor Having Sex With Woman WHILE PRAYING For her to get PREGNANT in Delta State,Nigeria(Warning: Mature Content)My Profile

  80. Thank you, Don!! That was scary, but it worked! It looks awesome.
    Jenn recently posted..My Breast is NOT Best.My Profile

  81. This is a really cool app! Thanks for sharing! Is there any way to register as a developer without sharing your phone number?
    Roshni recently posted..Messiest Mom of the Week!!My Profile

  82. Does these steps work with WordPress too? There are so many Facebook commenting plugins but none that actually notify you. Hope I can use your advice on my blog!

  83. I successfully added the comment box to my blog but when i try to add notification alerts by following the link “https://developers.facebook.com/tools/comments/?id=……….” and clicking setting, it just shows “loading” and remains that way… waht do i do pls

  84. Great info! Is there a way to receive notifications to mail instead of within facebook?

    Thanks!

  85. I have same issue as Mako has. Also comment box is not appearing under page URL (page which I have created under blogger). for post page, it’s working fine.

    Thanks for sharing this greate tutorials.

  86. yeah its perfect for my blog, thanks for great tutorial…

  87. avatar Chuck Richter says:

    Hey Don, I tried following your directions and it’s not working for me. I’m using Blogger. Here’s my Blog: http://angelswinblog.blogspot.com/ …. I’m probably just lame, but I was wondering if I sent you mail if I could send you my template and if/when you have time, if you can add it for me. If you have a donation box or PayPal I’d be happy to send you some $$$ for your time.

    Respectfully,
    Chuck Richter
    AngelsWin.com

  88. hi there, i have a fashion blog and i was trying to put the comment box but unfortunetelly i couldnt do it although i followed all the steps, could you please help me? :/ ive been trying to use this for months :/ and the fb widget only works in the bottom of my messages and not post by post you see? Please give me a hand

  89. hi, i followed the steps exactly but it doesnt work…cand u help me out? adress of the site: http://www.filmetitrate.net/

  90. Thank Dude, Works Fine, Thank For The Share…..
    Funny memes recently posted..meme allMy Profile

  91. I created a comment box and it works great the way I wanted for my customers responsive website . However when I look at in on an iPhone there is white space under the box.. Can you help me make it go away thanks in advance

  92. how do i change the color scheme to “dark” … the tutorial you made is for “light” color scheme

  93. Hi Don,
    Will the Facebook box displace my blogger box?
    Will it appear below or above it?
    Waiting for your reply please.
    Thanks a lot.
    Ugochi recently posted..ATTRACTED OR NOTMy Profile

    • Hi Ugo,

      It will appear above your your default comment box, directly below your posts. It won’t displace your blogger comment box unless you disable that from your settings.

  94. That’s lovely.. Your tut is simplest. It worked like charm… Thanks for sharing.. keep doing the good work,,

    Regards,
    Noor
    http://www.trickshacker.com
    Noor recently posted..Amendments Applicable for CA Final May 2013 ExaminationMy Profile

  95. thanks for your fantastic post, i will try it and back to you if they are any problem

  96. hi dear
    Facebook comment box not showing on my blogspot site.

    kindly check it
    Malik recently posted..چلے بھی آؤ….My Profile

  97. avatar Sirius Black says:

    i implemented what you have said. but i ddnt use XFBML . still it worked ! Excellent Man ! :D DD

  98. This is great. i love it. well done bro…

  99. Thank you sir

  100. I had installed facebook comment on my blogspot blog it is http://www.computertweaks.in . It worked fine. Whenever somebody comments using facebook comment I see notifications, and when I click on that notification it takes me to facebook developers moderation page, where I can see all the comments made on my blog. But the problem is: I am not able to distinguish on which particular POST that comment was made. I hope you got my problem. So how to resolve this thing? I mean how would I come to know on which post that comment was made??
    Mohammed Faizan Ansari recently posted..Firefox Private BrowsingMy Profile

  101. Hey Don,
    Thanks for this blog.
    I followed all your steps rigorously.
    But when I tried commenting using it it says you are not logged in.
    Please help me out here.
    Saba recently posted..വീണ്ടും ചില മഞ്ജു വിശേഷങ്ങള്‍My Profile

  102. Hi! What works for me is to set a time to do blog hopping and blog commenting several times a week even each day. This gives me the opportunity to really know what is trending in my niche and reach out to other bloggers who talk about the same topic. I even share their posts in my social media accounts if I really find their content interesting and useful to my followers.

  103. thanks bro am using a blogspot mine worked perfectly but it dosent show on mobile what should i do?

  104. Hey, Not Working Bro.
    Try So Many Times But no Success.
    Finally i Install disqus Widget.
    Ashish Christian recently posted..Priyanka Chopra on The Cover of Hello Magazine – February 2013.My Profile

  105. Works Perfect!!! You are a genius :D
    Thankyou

  106. thanks for sharing this post, i am searching the how to embed Facebook Comment Box in Blogger. finely get good post, now i used your code on my blog.
    way2readonline recently posted..UP Police Recruitment 2013- 24,000 Constable Jobs Online Application Uppolice.up.nic.inMy Profile

  107. It worked! Thanks

  108. Hey, Bro. Don Caprio:
    This post is really helpful for me. I will try to add Facebook comment box on my blogger blog. Thanks for sharing this post with us.
    atiqur rahman recently posted..Fixed Floating Vertical Social Share Counters Buttons / Bar for BloggerMy Profile

  109. Hi, thanks for sharing this tutorials. i’m wondering, why you are not using this kind of comment box.?

    • I was using it before but I decided to do away with Facebook comments. It wasn’t easy trying to moderate both Facebook comments and default WP comments at once cuz I get loads of comments here.

  110. O.M.G!!!!… It works like a magic. You can view my site to see how it looks so fit meritword.blogspot.com

  111. Pls. I want the facebook comment to be under the shearing icon. How can I do that??? pls view my site to see what I am talking about. Thank you in advance http://meritword.blogspot.com/2013/02/be-swift-to-hear-slow-to-speak.html
    Hassan recently posted..Be swift to, hear, slow to speakMy Profile

  112. Waowww… :D
    Superb Man.!!! it was So easy to enable facebook comments on a Blog…Really Simple.Thank You Don…You actually made it easy..thank’s
    Check out My Blog & let me know comment box working fine or not.
    GOD BLESS.
    Mubi Rana recently posted..Bmw i8 ConceptMy Profile

  113. Hi there,

    Is it possible to control the thumbnail image that gets displayed on facebook walls when commenting?
    Caryn recently posted..MacaronsMy Profile

  114. Heeee!!!!!!! I can’t believe I did this….
    Hassan recently posted..Defeating GoliathMy Profile

  115. Hi this is a bit off topic but is there any way to add a comment box to blogger similar to the one you have here. I looked at commentluv and see that it is only for wordpress. Do you know of anything similar that would work on Blogger. I’m not a fan of their drop down menu on the comment box

  116. oops…I just realize commentluv is an ap for sharing post . Anyway, to clarify, What I’m looking for is a comment box where, readers can just type in their name (like yours) instead of the drop down where they have to sign in through another account.

  117. Thank you very much for the step-by-step tutorial. Your post is the best on the web on this subject. Nigerians are definitely the best educators!!! Proud of ya. I also own a blog dedicated to the learning of CAD (and obviously it’s the only Nigerian blog on this subject). Please tell me what you think about the blog. Thank you. http://inventortutorials.blogspot.com
    Ndianabasi Udonkang recently posted..Using the Sweep Tool (Swept Feature)My Profile

  118. This tricks doesn’t working for me…
    Komol recently posted..How to add stylish share buttons to blogspot blogMy Profile

  119. i get this ereo please try to help me
    when someone comment on posti get this
    this comment has not yet been published to facebook. publish comment

    • I’m getting the same message, and have to confirm twice before having the message publish to facebook page.
      “This comment has not yet been published to Facebook. Publish Comment”.
      Sara, were you able to handle it?
      Couldn’t anyone else help us on that? Don?

      • I never experiencd such issue. Did you change the settings to have comments approved before being published?

        • Thanks for your quick response.
          The posts are made public by default, and I seem to have made any important changes. I’ll start it over again so maybe I can fix something that could’ve gone wrong in the way.

  120. I want to add 2 comment box on my blogger blog one is Facebook and other is like comment luv what to do can you give me suggestion.
    vivek recently posted..TEST CRICKET WILL ‘DIE’ AFTER SACHIN TENDULKAR’S RETIREMENT: ARJUNA RANATUNGAMy Profile

  121. Pls Don Caprio, I want It to show on mobile view…. How will I do that??? Pls Help
    Hassan recently posted..Stand firm in GodMy Profile

  122. Caprio, you are the Don men! Thanks a lot. I have been trying to add the Facebook to my blogger for quite sometime now, but finally with you outstanding expertise I am good. Thanks again. *taking off my hat for the Don*

  123. i like your artikel

  124. Thank you for this useful tutorial. It works on my blog -http://newschest.blogspot.com/. :)
    Rockbleeder recently posted..Readers and Fellow Bloggers: Join Dahlia GiveawayMy Profile

  125. Thank you for this great information. it is really helpful for me to modify my blog. i appreciate your contribution.
    Googma Sansar recently posted..Social Media Optimization (SMO) StrategyMy Profile

  126. Hi,

    What plugin do you use for showing the php/html/java/code like you did on this page?
    tudor mateescu recently posted..Expert Mark DUO – Pentru Expertul Din TineMy Profile

  127. Hey!

    It doesn’t work for me.
    I tried both the s and the .

    Help!
    GarlicPickle recently posted..In The Sky With DiamondsMy Profile

  128. Sorry, I mean I tried both the “data:post.body”s and the “”
    GarlicPickle recently posted..In The Sky With DiamondsMy Profile

    • In some templates, you may have to try all the data:post.body’s to know which one works. So far the other codes are in place, it’s gotta work.

      • Still no luck. Followed the steps and tried both the data:post bodys as well as post-footer-line1.

        Could it be because of this code I inserted for the facebook like button under div:post.body? (removed the angle brackets so it appears in the comment)
        b:if cond=’data:blog.pageType != "static_page"’
        iframe allowTransparency=’true’ expr:src=’"http://www.facebook.com/plugins/like.php?href=&quot; + data:post.canonicalUrl + "&send=false&layout=box_count&show_faces=false&width=55&action=like&font=arial&colorscheme=light&height=62"’ frameborder=’0′ scrolling=’no’ style=’border:none; overflow:hidden; width:55px; height:62px;’/
        /b:if
        GarlicPickle recently posted..A Pictorial Guide To Stashing Away ScentsMy Profile

        • No, it shouldn’t be the reason. Does that Facebook like button appear? Can you put the commment box code right under it too? If it doesn’t show up with that despite the like button still showin, then something is definitely wrong with the rest of the code or where you placed them.

  129. Thanks a lot buddy! I needed to insert the code step by step for 3 times because it wasn’t working on me, but finally I tried to post the part under:

    instead of:

    and everything worked perfect!

    Thanks a lot!

  130. Thank you for great tutorial. It is really helful for me to install this pluging to my blog. I appreciate contribution.
    Seonep recently posted..70 ways to Get More Website Traffic to Your siteMy Profile

  131. didn’t work for me followed all the steps… using ur ex-blogger theme… and the “xmlns:fb=’http://www.facebook.com/2008/fbml’” is already in the theme buh far from <html tried re-arranging it buh it didn't work.. any help??
    wilson recently posted..Glo BIS now Back and Better… Working on Phone/PCMy Profile

  132. This is a real bummer but it didn’t work for me and actually messed up my coding =( Can you help me???

  133. This works great. Thank you so much! One question: Is there a way to add it to static pages and the homepage? The comment will appear if I go to the post link, but it’s not under the homepage post.
    Steve Giordano recently posted..Empowered: Act 1, Part 5My Profile

  134. Thank you for this tutorial. I want to try fb-comment in google site also. But unlike blogspot google site does not allow me to edit complete html.. Is it possible to follow above steps in google site?

    • I really don’t know exactly how google site works but if you have no control over HTML editing, I’m not sure you can use it there, Besides, this tutorial is strictly for Blogger.

    • For Google Sites integrating FB comment is very easy. Go to Edit HTML and before tag place the following code…

      remeber to replace ‘upalc’ with your FB ID.

  135. I’m wondering if there’s any way to integrate your FB comment box with the preset blogger comment box? On my site, focusonthebeer.com, I now have two comment boxes and I’m hoping just to have one. I wouldn’t mind just having yours but people can’t comment anonymously, or through google, or a variety of other options. Is there a way to have these options?

    • Unless you disable the default Blogger comment box from your dashboard. Facebook comment box also provide a few options for those not signed in to Facebook.

  136. hi!

    I love this tutorial and made it work. I have one question though, when I get a notification on my facebook it only brings me to the moderation page on facebook not the page where they commented.

    thanks!

  137. I tried to integrate this on http://stories.jolchobi.com …but it is not working !!! Is it because I am using advanced mode or I have not been able to complete the last part of integration properly ?

    • I can see some share buttons below your posts so I guess there’s probably a problem implementing the last part of the code that’s supposed to be under data:post.body.

      Have you tried putting it before or after those share buttons?

  138. Thanks so much for this tutorial. It was all working fine till I had to find this For some reason it’s not in my html? What do I do? Thanks in advance!

  139. This is Good Plugin and u explained in very detail :) thanks for your Post…
    Now days a new Plugin come across and thats too much awesome, With Facebook, Twitter, G+ and other Social Services. You can check by clicking below link :)

    http://www.thetrickslab.com/2013/03/how-to-add-smooth-comment-widget-to.html

    The Tricks Lab

  140. Hey, great post and it really helped me get the facebook comments working on my blog. I wanted to get some SEO out of it but the iframe issues made this impossible and, of course, the only way I could find to pull the text of the comments was through php scripts (which blogger doesn’t support). Soooo, i wrote a php script and threw it on my server and then called it as an object on my blogger template and viola! – it worked. In kind, I thought I’d share it with you and maybe add a little value to your already great post. Just paste this code in your blogger template above or below the commenting code and it should be good to go. If you want to view the results just remove the div tags and give the object some width/height parameters. Hope this helps some of you!

    One more note, the php script grabs the referring URL so it should work for any and all posts/pages dynamically – I thought that was a nice touch ;-)

    One final note, I AM NOT a programmer so this isn’t the prettiest thing in the world, but it works great…

    • just realized the code didn’t paste… here it is:

      <!– BEGIN Graph API comment pull and text insertion in an invisible div for SEO purposes –>

      <div class='separator' style='clear: both; display: none; text-align: center;'><object data='http://sukithookahs.com/get_comment_text.php&#039; height='60px' type='text/html' width='450px'>

      </object></div>

      <!– END Graph API comment pull and text insertion in an invisible div for SEO purposes –>

      • sorry, now I noticed a type :-(

        &lt;!– BEGIN Graph API comment pull and text insertion in an invisible div for SEO purposes –&gt; <div class=’separator’ style=’clear: both; display: none; text-align: center;’>&lt;object data=’http://sukithookahs.com/get_comment_text.php’ height=’60px’ type=’text/html’ width=’450 px’&gt; &lt;/object&gt;&lt;/div> &lt;!– END Graph API comment pull and text insertion in an invisible div for SEO purposes –&gt;

    • Great idea, JP. Never thought of that. Thanks for the addition!

  141. hi don. i followed your instructions and examples but not seeing comment box. not sure what i did wrong. can you assist? thanks, dk.

  142. Hi Don !
    Thank you for haring an excellent ideas to installed Facebook Comment Box and notification Plugin. It will try to my blog.
    TheBestSEO recently posted..How to Optimize your Hubpages &ndash; The Essential GuideMy Profile

  143. Thanks alot… this is working Fine… i won’t remove Credit link :) god bless you

  144. Hello..
    Really Nice box and all working fine.
    Can you help me 1 thing please… to make appear at home page fb comment box ( under pic same with social share). Thanks for your time and great job.
    http://wesharefunny.blogspot.com/
    jaratsee recently posted..Bud Light’s new widemouth canMy Profile

  145. Thank you for this great tool! I have it working on the simpler of my blogs (static) as a trial. My only concern is having both the Facebook and the standard Blooger comment box showing up. Is this supposed to happen?

    Also, my standard FB [LIKE} widget has stopped displaying. What would cause this?
    Alberto Rodriguez recently posted..Your Comments, please / Sus Comentarios, por favorMy Profile

  146. Hey, Thanks man! it is working perfectly fine for my blog :D
    Sef Cruz recently posted..Build Your Network in Blog Commenting Through G+ and FBMy Profile

  147. Hi, Don. Thanks for this tutorial. However, I’ve tried all the steps but still it didn’t work out on my blog. Is there something that I’ve missed or wronged to follow here? I hope you could help me out. Thank you.
    Rob recently posted..The Bachelor’s SearchMy Profile

  148. Hi,
    I’m pretty new to blogging and tried this on my blog but it just didn’t work. There are no error messages but the Facebook comment option just doesn’t come on the blog. I had a bit of trouble with the 4th part of the code.

    I have 3 of this – data:post.body code
    and 2 of the footer code.
    I tried copying your code below the second footer code and also below the third data:post,body code. But nothing seems to work.
    Pls help me out.
    Thanks
    Dee

  149. nice post and large traffice generator THANKS
    manu recently posted..JEE Main Answer Key 2013, JEE Main 2013 Paper 1 2 Answer KeyMy Profile

  150. i followed all instructions, but comment box isnt showing on my mobile… what should ido next to have it apply when viewing blog on mobile

  151. Nice tutorial, but facebook comment box is not showing when view with mobile

  152. I tried this earlier today, and the code worked fine – then I guess I had too many different blogger code windows open, so I must have shut down the wrong one….code was gone except for the css styling box for FB comments. I can not get this to work on my blog again, but I did notice that blogger reverts characters to ascii (or whatever it means when the ‘ mark becomes ' ) and absolutely will not save the code as it is copied and then pasted. I realize this is likely a blogger issue rather than an issue with the code, but I even pasted it with the “characters” all typed out and it still won’t show on my blog. Any suggestions?

    Also, when I do get this working again: is there a way to get the FB comment box right under the blogger comment box, and not directly underneath the post itself? Thank you for sharing your code, and for any help you can give me!
    Kim recently posted..Test postMy Profile

    • I can only suggest you clear all edits and try again. Better still, if you saved your template before making those changes, you can restore the backup and try the steps all over again.

      It’s quite possible to place it under the default Blogger comment box but I’ve never tried it before. The last part of the code that’s supposed to go under data:post.body can be placed before <div expr:id='data:widget.instanceId + &quot;_comments-block-wrapper&quot;'>

      • Thank you so much for your quick response! I will definitely try this again, because I’d love to have it on my blog :)
        Kim recently posted..Test postMy Profile

      • Cleared everything out; thanks again so much for trying to help! Unfortunately, blogger will absolutely not save any code as I have copy/pasted it, and the needed things like the apostrophes or single quotations turn into four characters – AGAIN. Ugh.
        Kim recently posted..Test postMy Profile

  153. Thanks so much for your help getting the facebook commenting onto my blog! I’m just wondering what to do about the default blogger comment box that is still left underneath the facebook? Seems a little odd to have both still ;P Any help you can provide is GREATLY appreciated!

  154. hey thanks so much for the tutorial! its great… on step 3, I cant figure out how to turn on comments? When I click on settings in facebook it just says loading forever? any tips?

    thanks!
    taylor
    Taylor recently posted..Surfer SlacksMy Profile

  155. Great, thanks, it worked perfectly.

  156. Hello Don,

    I used your instructions about 3 months ago and comment box worked perfectly all this time. THANK YOU! Now last couple of posts keep getting strange message “unreachable” inside the comment box. I would appreciate your advice if it’s possible to fix it.
    And one more quick question. How can I change the language on my “like” button?

    Thank you
    Ieva

  157. I don’t get any notifications for the comments I did all the steps as mentioned!!
    Julia Al Arab recently posted..KFC Chicken Crispy StripsMy Profile

  158. Hi, I followed these directions but don’t see the comment box on my blog. can you tell what i’m doing wrong? when i go to the moderater site for the comments i can see posts people made through facebook but not sure why I can’t see it on my blog: http://www.danalaymonphotographyblog.com. thanks!

  159. bro, it didn’t appear on my site
    but there’s an empty space under my post….
    PLEASE SHARE YOUR WISDOM, I’M NEW AT THIS BLOGGING STUFF
    eril recently posted..Morning RandomnessMy Profile

    • I saw the white space but on checking your source code, all I see is a lot of line break tags. This sure works unless you’re doing something wrong. Maybe you can restore your backed up template and try again.

  160. thanks bro, it realy work for me. since i hv been finding it difficult to install it in my site, untill i found it here, u realy solve my problem,
    Denco recently posted..How to reduce/minimize spendingMy Profile

  161. Hi doncaprio, thanks for your article. Btw, How do if I want to restrict comments that appear? thx
    Erakata.com recently posted..Gambar Animasi Bergerak LucuMy Profile

  162. it is really great tips ….i follow ur tips …

  163. Thank you for this tutorial! This will help me a lot to gain more comments in my blog post! Others prefer facebook comment because it is easier to use.

  164. Hi there, just a quick question before I try to do this, will this tutorial work if I am using a dynamic template? And could you maybe just peek at my site to see if you think it will work with my current template. Thank you in advance.
    Carol King recently posted..Confession #24 – My Husband is Sneaking Out of Our Bed at NightMy Profile

  165. nice post very useful for me thanks

  166. why the facebook comment box only show in my old blog post
    didn’t show in my new post (post after add the comment box)
    Please help me !
    thanks you!
    http://www.joliediary.com
    Jolie recently posted..I want participate Bag of Love Unboxing Tea Party at Delectable SuMy Profile

  167. Hi Don, thanks so much for looking at my site. I do have one more question, when I click your link to go to the Facebook Developer page, it is totally different from the page you show in your tutorial and there is no option to “create an app”. Has the link to the page changed and if so can you post the new link, thanks again.
    Carol King recently posted..Confession #24 – My Husband is Sneaking Out of Our Bed at NightMy Profile

    • It’s gonna be different if you’ve never created an application before but you will eventually come to that page. The link is still the same but I guess you need to first sign up to become a developer.

  168. this article having uniqueness and helpful for me……….
    Interior Designer recently posted..Design Trends 2013My Profile

  169. Hey, I added the comment box and it was working well but I am not getting notifications on Facebook when someone comments. Any ideas?

  170. its not showing on my blog
    help meeeeeeeeeeeeeeeeeee

    whay ?

  171. Is there any way to have the facebook comments box appear if they are on the blog homepage and not on a post? You can only see the facebook comments option if you have clicked on a post link. thanks!

  172. Hi Don,
    Your tutorial is really very clear and elaborative; indeed a well written article.
    I implemented it on my blog but it is not working.
    Just to mention
    my original blogspost address is paradigmwisdom.blogspot.com and I have a domain http://www.DailyTenMinutes.com. This domain is actually a mirror of my blogspot.
    While making my facebook app, I mentioned http://www.DailyTenMinutes.com
    do you suggest making a new facebook app with paradigmwisdom.blogspot.com?
    Thanks bro
    Junaid
    UAE

  173. For some reason the comments have moved to the right when it was centered whY?

  174. Hello, thank you for sharing this. I implemented in February and it was all working fine. However, today I noticed that the comments have shifted to the right and no longer fits in the FB comment “box.” Any ideas on how I can fix this? Thank you so much.
    Maria recently posted..Frequently Asked QuestionsMy Profile

  175. Hello Don,
    I have added your app on my site a long time ago and I didn’t have any problems. Although today I saw that the comment box moved right for no reason. Check it out if you please! http://www.asudotoi.gr/2013/04/blog-post_7834.html

    It is the same on every post! How can I fix that? Why is tha happening?

  176. here is the solution to

    Error parsing XML, line 4, column 290: Attribute “xmlns:fb” was already specified for element “html problem visit this below link

    http://www.howtoread.co.in/2013/04/facebook-recommendation-bar-parsing-error-solution.html

  177. Notification is not working Why Please Help Me..

  178. Hey! Despite following the instructions properly, there is no notification for the comments posted. The first time I had installed, there was no notification but suddenly one day I started getting notifications and now they have stopped again. I removed it and did it again, but no notifications :(
    Arti Honrao recently posted..walking awayMy Profile

  179. Hi.. I’m not getting any notifications when someone comments anymore. Googled the problem, seems to be a very common issue but cant find a reason. It used to work fine. Any ideas?
    linsey recently posted..EXCITING Cover Reveal, Synopsis & Excerpt: Up From The Grave (Night Huntress #7) by Jeaniene FrostMy Profile

  180. avatar sipahi reza says:

    fb don’t notify me :( please help. i do fallow all step properly.

  181. thank you Don Caprio the Facebook comment box is working in my blog. This article will help more blogger to get more visitors.
    SRIKANTH recently posted..Beauty and the Beast – Beauty to UglyMy Profile

  182. Thank your for the post with so clear instruction. I will try it on my game news blog.
    Hung recently posted..The Mummy Online (Review)My Profile

  183. hey Don,

    Im wanting to install this last bit of coding but just one question. Why are your urls in the final coding??

    • That is only to promote the widget and help more people find it. Of course, you can remove it if you like but there’s no harm keeping the credit anyway.

  184. thank you so much :D it works perfectly :)
    Simon Child recently posted..Narkoba Termahal di DuniaMy Profile

  185. It’s a success… Thanks for the guide. However, fail in attempts to change the width.
    rahmat tahir recently posted..Fun Car Flash Game – List 1My Profile

  186. Hello again Don,
    I changed my template and not working Facebook comment box anymore, i do all the steps again at new. Please help me again Don. THANKS
    jaratsee recently posted..great movie gifMy Profile

  187. Great guidance with superb images, i m impress with your given facebook app application development guidelines.

  188. any update please
    jaratsee recently posted..dance with meMy Profile

  189. avatar Abubaker says:

    Dear Its not work in my Side :(

  190. how if i forget my app id ?
    IndoPhotoshop recently posted..memanipulasi gambar seseorang menjadi botakMy Profile

  191. this works only for one of my websites, for the other one it seems not be working, they are both on blogger….I don’t understand why

  192. Hi,
    I did this and it worked but when I tried to implement update 1 to get the comment box on the homepage it didn’t work anymore. So I repasted the original code to get the box on the blog posts but it won’t work anymore even though I’m following the exact same steps. Any ideas?

    Sarah
    Sarah Binney recently posted..ONE WAY STREET PARTY SURFERS PARADISEMy Profile

  193. sir, i put those codes as u directed,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,but its not showing comments…please help
    funnbooks recently posted..Controversially Yours By Shoaib AkhtarMy Profile

  194. Thanks so much for this! It was an easy to follow tutorial :)

  195. Hi, I used this code for my two blogs and it worked perfectly – until some time ago (I’m guessing a month or so). I get no notifications regarding new comments. Moreover, on the developer tab on my FB page I got some notifications about these apps not being compliant with some changes that will take place in July 2013. I have absolutely no idea what to do to fix the apps. It would be really lovely if you could take a look at it. Thanks!

  196. Great post but not working for me either! Followed your instructions to the letter and no go. And somehow I have ended up with an AdSense ad embedded in my posts? WEIRD!

    BTW, I COULD get the comment box to show up as a banner gadget at the bottom of my home page or on the sidebars, but never under the posts. What gives? Any help.info is appreciated!
    notsosupermomconfessions recently posted..Around the BlockMy Profile

    • Also, I did restore previous template and STILL AdSense ad embedded. UGH!!

    • I’m sure you’ve tried other things on your template that resulted in those Adsense ads, not the code in the post. I would never stoop so low as to embedded an Adsense code in my widget.

      Anyway, I checked your blog to see what’s stopping the comment from showing but I can see you have a different widget already.

  197. Hello Don Caprio, your code is too much, how can shorten it?

  198. comments widget should be awesome like yours because it helps in building relationship with readers and engaging conversation ,many of the top bloggers like you have written about it and also give importance to it.thanks for sharing.
    Widget For Blogger recently posted..Coca Cola Email Subscription Box Widget For Blogger Above CommentsMy Profile

  199. This article is having uniqueness and is helpful . I have posted some tutorials on my blog and i hope, my tutorials will clear your remaining issues related to “Facebook Comment Box” .

  200. It’s works and alive … thanks bro!

  201. Hello there I have the comment box on my other website which works fine. But I have tried to add it to the new website I have made and it does not come up for some reason, do you know why mate??
    craig recently posted..55ft snakeMy Profile

  202. Comment box is working fine…bt Im nt getting any notifications… :(
    Nice work..
    Athira recently posted..Sky is Clear Here!!!My Profile

Speak Your Mind

*

CommentLuv badge