How to Add Facebook and Disqus Comment Systems to Blogger in Tabs Using JQuery
Ever since I've learned to blog, I've been customizing my blogger comment section a lot of times to get that certain desired look. The look is one thing, choosing what comment system for my blog is quite another. There's facebook comment box and there's the famous disqus commenting system. So then I thought, why not mash them altogether?
I've learned a few tricks scouring some tutorials. Trust me, it wasn't that easy like what most would claim especially if you get "little codes" from Github or look up your problem at StackOverflow. You'd come across some problems which are hard to address especially for dummies. Like myself. And now I've finally come up with a sleek design for my blog in a much convenient way to deliver which I'm going to share.
Some tutorials out there will teach you to REPLACE blogger comment section with facebook social plugin or with disqus commenting system. As to integrate the three? Good luck. What makes this tutorial different from other tutorials? Aside from the idea that we won't be replacing our blogger comment section with another, we'll employ a tiny jquery script that will make the tab selection work not just properly but with animation.
I could ask you to just search tutorials that will help you put facebook or disqus comment section to blogger. But then, why don't I just do that part myself?
This post is practically my future reference shall I make any changes (again!) to my comment section.
This tutorial is intended for dummies who don't have much knowledge in coding (or blogger for that matter). So pardon me if I'm going to treat you like a fool.
Here's how it looks when blogger comment tab is activated:
When facebook comment tab is activated (I made 3 test comments to make sure that the comment counter of facebook works.):
When disqus is activated:
Note: You can always change the color of each tab. I also expect you already know how to tweak your blogger template and that you have activated threaded commenting in blogger. Wait, didn't I say this tutorial is for dummies? Ok, scrap that. I'll get to that later.
So here's what you are going to do:
1. Login to Facebook Developers
2. Click on Apps then click Create New App
3. Fill out the Form then click on Create App
The Display Name could be a few words. The namespace is one word.
4. After submitting, you'll be directed to your App Dashboard. Copy your App ID and save it somewhere. If you have a photographic memory, I mean good memory, you might as well just memorize it.
5. Click on Add Platform then Choose Website.
6. Fill in the details. Basically, you just have to put your website URL in both the Site URL and Mobile Site URL. (I only had mine on Site URL)
Input your own details on the boxes I highlighted. Notice how I added /* to the url? That's to ensure all pages on the website are accounted for. But it wouldn't hurt if you don't add that, just your URL as is. For new bloggers, your URL is something like this: http://DOMAINNAME.blogspot.com *rolls eyes* whatever your domain name is. I know, I know. I expect you have gone like this now:
7. Hit Save Changes.
8. You can moderate your FB APP comments here.
1. Signup for Disqus (for website) here: Disqus Signup
2. Choose platform: Universal Code
3. You don't have to do anything from hereon. You will be directed to this page: Disqus Universal Code and you'll see the instruction for installing disqus to your site. I got that covered in the next Steps. Basically, you're done! (Just for this part)
4. At this point, make sure you are signed in to your Disqus Account. Disqus Comment count link text can be customized at your
Disqus admin's Settings > General page.
Change everything to this image:
In short, just delete the word Comments in all the Count links.
5. Moderate Disqus Comments here.
1. Find <head> and add these things below it:
(Note: click on the text area then Ctrl + C)
2. Replace YOUR_FB_ID with your facebook ID and YOUR_FB_APP_ID with the APP ID I told you to memorize earlier. You can choose 2 facebook ID (fbid): your personal fbid and your apps' fbid.
If you have already added a different Jquery pack in your template, then go to this tutorial, How to Use Multiple JQuery on the Same Page to Avoid Conflict. Updated!
This part is optional, your choice.
1. Go to your blogger home
2. Go to Settings:
3. Click on Post and Comments under Settings. Then toggle Comment Location and choose Embedded:
That's it!
That's because I'm lazy going over the details from hereon. So just bear with me. And by lazy, I don't want to discuss which part inside a section needs to be eliminated and how to replace with another html code. Rather than going through the hassle of changing each of the tiniest detail inside the includable section, I'd rather have you replace the entire includable section with something akin to a single click.
1. In .blog-comment, change font-family: 'Open Sans Condensed'; to whatever font you like or whatever is available in your blogger site.
2. If the Comment Tabs collapse, in .blog-comment, either you change the font-family or the font-size.
3. The margin under .blogger-comment.selected (margin: 0 0 0 -8px;) is for the sliding effect in JQuery as you select tabs. Change the value of -8px if you don't want the sliding effect (or emphasize the effect) and in effect, change the width under .blog-comment.
4. If you want to change the color of the tabs as you hover, then add this:
Change #EECCE to whatever color.
5. Update! Someone told me that his blog comment section shows an inappropriate blank space that wasn't there before. Do this: In .blog-comment-tabs, you either delete the margin ( margin: 15px 0;) or change the value to 0 auto or 0.
Because I'm really lazy...
Note: The numbering on my template differs from yours.
If you really want to know what happened, just compare the new includable section from your old template. Besides, instructions are commented in the provided javascript code. More than anything else, that tiny jquery code is the most important part of the tutorial. Without it, you might just as well stick to your old template.
EDIT!
Change the width of facebook-comment-body by changing the value of width='720' to whatever width that is suitable for your blogger site. This occurs in both Steps 5 and 9 so be sure to edit the other one too.
1. In fb-comment-box, change width to suit your site.
2. Change this comments h4 'Leave your comment' to whatever heading you want when the comment count is 0.
Again, replace 'YOUR_DISQUS_SHORTNAME' with your disqus shortname.
Done!
OPTIONAL: Add Google+ Comment System
1 From Step 1 from above, edit in CSS the width for .blog-comment from 27.5% to a value of at least 20%. The value is your call. Just play around.
2 Still from Step 1, in the CSS after .disqus-comment.selected, add .gplus-comment.selected {background: #D34836;}
3 From Step 5 from above, use this instead of that:
4 Just like from above, use this in place of Step 9:
- For November 2015, I've made a fresher and better tutorial through this link. It showcases step-by-step instructions on the things needed to add for Blogger coding. If you want to understand what are added and how they are added, I suggest for you to head over that tutorial instead.
Some tutorials out there will teach you to REPLACE blogger comment section with facebook social plugin or with disqus commenting system. As to integrate the three? Good luck. What makes this tutorial different from other tutorials? Aside from the idea that we won't be replacing our blogger comment section with another, we'll employ a tiny jquery script that will make the tab selection work not just properly but with animation.
I could ask you to just search tutorials that will help you put facebook or disqus comment section to blogger. But then, why don't I just do that part myself?
This post is practically my future reference shall I make any changes (again!) to my comment section.
This tutorial is intended for dummies who don't have much knowledge in coding (or blogger for that matter). So pardon me if I'm going to treat you like a fool.
Here's how it looks when blogger comment tab is activated:
When facebook comment tab is activated (I made 3 test comments to make sure that the comment counter of facebook works.):
When disqus is activated:
Note: You can always change the color of each tab. I also expect you already know how to tweak your blogger template and that you have activated threaded commenting in blogger. Wait, didn't I say this tutorial is for dummies? Ok, scrap that. I'll get to that later.
So here's what you are going to do:
- Create a Facebook Application
- Register at Disqus for your website
- Enable Threaded Comments in blogger (Optional)
- Add meta tags in your blogger template (Facebook, Font-Awesome Library from BootStrap and JQuery Source)
- Change codes in comments includable section
- Apply changes
- OPTIONAL: Add Google+ System (so there are now 4 comment systems)
For Facebook Comment System
1. Login to Facebook Developers
2. Click on Apps then click Create New App
3. Fill out the Form then click on Create App
The Display Name could be a few words. The namespace is one word.
4. After submitting, you'll be directed to your App Dashboard. Copy your App ID and save it somewhere. If you have a photographic memory, I mean good memory, you might as well just memorize it.
5. Click on Add Platform then Choose Website.
6. Fill in the details. Basically, you just have to put your website URL in both the Site URL and Mobile Site URL. (I only had mine on Site URL)
Input your own details on the boxes I highlighted. Notice how I added /* to the url? That's to ensure all pages on the website are accounted for. But it wouldn't hurt if you don't add that, just your URL as is. For new bloggers, your URL is something like this: http://DOMAINNAME.blogspot.com *rolls eyes* whatever your domain name is. I know, I know. I expect you have gone like this now:
7. Hit Save Changes.
8. You can moderate your FB APP comments here.
For Disqus Comment System
1. Signup for Disqus (for website) here: Disqus Signup
2. Choose platform: Universal Code
3. You don't have to do anything from hereon. You will be directed to this page: Disqus Universal Code and you'll see the instruction for installing disqus to your site. I got that covered in the next Steps. Basically, you're done! (Just for this part)
4. At this point, make sure you are signed in to your Disqus Account. Disqus Comment count link text can be customized at your
Disqus admin's Settings > General page.
Change everything to this image:
In short, just delete the word Comments in all the Count links.
5. Moderate Disqus Comments here.
Adding Meta Tags
1. Find <head> and add these things below it:
(Note: click on the text area then Ctrl + C)
2. Replace YOUR_FB_ID with your facebook ID and YOUR_FB_APP_ID with the APP ID I told you to memorize earlier. You can choose 2 facebook ID (fbid): your personal fbid and your apps' fbid.
If you have already added a different Jquery pack in your template, then go to this tutorial, How to Use Multiple JQuery on the Same Page to Avoid Conflict. Updated!
Enable Threaded Comments in Blogger
This part is optional, your choice.
1. Go to your blogger home
2. Go to Settings:
3. Click on Post and Comments under Settings. Then toggle Comment Location and choose Embedded:
That's it!
Changes in the blogger template
I already said this tutorial is for dummies, right?
That's because I'm lazy going over the details from hereon. So just bear with me. And by lazy, I don't want to discuss which part inside a section needs to be eliminated and how to replace with another html code. Rather than going through the hassle of changing each of the tiniest detail inside the includable section, I'd rather have you replace the entire includable section with something akin to a single click.
Step 0:
Go to Blogger Home TemplateBackup/RestoreDownload full templateCloseEdit HTML.
Step 1:
Add this CSS BEFORE ]]></b:skin>
Edits:
1. In .blog-comment, change font-family: 'Open Sans Condensed'; to whatever font you like or whatever is available in your blogger site.
2. If the Comment Tabs collapse, in .blog-comment, either you change the font-family or the font-size.
3. The margin under .blogger-comment.selected (margin: 0 0 0 -8px;) is for the sliding effect in JQuery as you select tabs. Change the value of -8px if you don't want the sliding effect (or emphasize the effect) and in effect, change the width under .blog-comment.
4. If you want to change the color of the tabs as you hover, then add this:
Change #EECCE to whatever color.
5. Update! Someone told me that his blog comment section shows an inappropriate blank space that wasn't there before. Do this: In .blog-comment-tabs, you either delete the margin ( margin: 15px 0;) or change the value to 0 auto or 0.
Step 2:
Search for this code: <b:includable id='comments' var='post'>
Because I'm really lazy...
Step 3:
Click on the space beside the number assigned to that line of code to minimize the whole "includable" section.
Note: The numbering on my template differs from yours.
Step 4:
Highlight the whole "includable" section. We are going to replace all of that: from <b:includable id='comments' var='post'> to </b:includable>. Be careful not to exceed other includable sections. In any event shall that includable section collapse, just keep trying from Step 1.
Step 5:
(Be careful!) Delete that includable section and replace with this After highlighting, paste over this code:
EDIT!
Change the width of facebook-comment-body by changing the value of width='720' to whatever width that is suitable for your blogger site. This occurs in both Steps 5 and 9 so be sure to edit the other one too.
Step 6:
Replace YOUR_DISQUS_SHORTNAME with your disqus shortname. This appeared twice! If you remember from the Install Instruction for the Universal Code of Disqus, I kept the whole codes as pure as possible.
Edits:
1. In fb-comment-box, change width to suit your site.
2. Change this comments h4 'Leave your comment' to whatever heading you want when the comment count is 0.
Step 7:
For those who enabled Threaded Comments, proceed! Otherwise, Click HERE.
Step 8:
Search for this code: <b:includable id='threaded_comments' var='post'>
Step 9:
Highlight the whole includable section as usual and replace with this:
Again, replace 'YOUR_DISQUS_SHORTNAME' with your disqus shortname.
Step 10:
Go back to Step 6 then jump to Step 11.
Hit Save Template.
Step 12:
Complain when something is wrong.
Step 13:
Check out the Comment Section below for reaction.
Done!
OPTIONAL: Add Google+ Comment System
1 From Step 1 from above, edit in CSS the width for .blog-comment from 27.5% to a value of at least 20%. The value is your call. Just play around.
2 Still from Step 1, in the CSS after .disqus-comment.selected, add .gplus-comment.selected {background: #D34836;}
3 From Step 5 from above, use this instead of that:
4 Just like from above, use this in place of Step 9:
Muchas gracias por el post, esto es realmente lo que estaba buscando desde hace semanas que tuve problemas con la caja de comentarios.
ReplyDeleteMuchos saludos Liezl Ruiz :D y un fuerte abrazo.
I think I am a little bit stupid.. I can't do this.. :(
ReplyDeleteHi there.. How to display Blogger and Facebook comment only? I want to remove Disqus comment tab. Thanks
ReplyDeleteSorry for the late reply. I've been on vacation for the Halloween.
DeleteFirst, change the width of .blog-comment from 27.5% to a measure of about 40% or whatever suits your site, just play around this percentage.
Second, just delete anything that has something to do with disqus. For example these lines that appear in steps 5 & 9:
Delete the whole element of [can't write the whole thing here since tags aren't allowed in the comment section]:
1) li class='blog-comment disqus-comment'
2) div class='commtab' id='blog-comment3'
First of all thanks for your excellent job.It works almost perfect.But it doesn't show the number of comment at Disqus Comment. Here is the blog.http://sokrati21.blogspot.ch/2014/02/blog-post_2672.html.
ReplyDeleteIf you have any idea why , I would be hgappy to hear it. :)
Problem solved. I wasn't resister at disqus from the beggining, and when I restirered it took some time for the counter to begun to count. Thanks again
DeleteYou're welcome!
DeleteI'm glad it worked for you. :)
Applied to my blog but the facebook comment are blank, is that normal? Also when the tab is clicked the position of the screen always changed, how I change that?
ReplyDeleteOk the facebook is fine. It just taking a long time to load. Just need help for screen position always changed when the tab is clicked.
ReplyDelete"When the tab is clicked" -- Do you mean when facebook tab is clicked? You need to change the width value of facebook comment system.
Delete1) Look for ---> div id='fb-root'
2) You will see the assigned value width='720'
3) Change the value to whatever is suitable for your site (in px)
4) Remember that this occurred twice so change the other one too.
i add fb and blog comments only ! but when i visit my posts the 2 types of comments are shown , i want to make blogger comments is shown (main comments) and fb comment box hidden and when click on the tab the fb comment box is shown and blogger comment box is hidden
ReplyDeletesorry for my bad in En and hope you help me
This tutorial exactly does that. Either your internet connection is just too slow or there's some conflict in your javascript code.
DeleteFind all occurrences of this "$jq" (without the apostrophe) from my code (which you might already be using in your template) and add a number at the end. Say, "$jq1" or "$jq2".
can u add google + comments. and it will be 4 comments. facebook, google + , blogger and disqus.
ReplyDeleteplease..
thanks
In update, I added the instructions for adding Google+ comments near the end of the post. But just like what google support said, "Unfortunately, we cannot guarantee the experience with heavily customized templates."
DeleteYou can try it out and please give me feedback whether it worked or not. And next time, if you were the one who messaged me via my contact page, put your email address instead of your blog URL so I may be able to reply to you there.
Hello Liezl, you're awesome for writing this amazing tutorial(and you're not lazy at all :P )
ReplyDeleteEverything is done just as you instructed however I am getting this error while saving my blogger template
[ See Screenshot :
[1] https://drive.google.com/file/d/0B4FcEYPLEtlJRU5xbXV4M1RXWlk/view?usp=sharing
[2] https://drive.google.com/file/d/0B4FcEYPLEtlJdW1NLU5HUnhQYkk/view?usp=sharing ]
Help me overcome this hurdle please!
Okay I retraced all steps over and over again. I'm still getting this message after I do step5 and save
ReplyDelete"The widget with id "Blog1" cannot contain element: "#comment". A widget can only contain b:includable elements"
I followed all steps and hit SAVE at STEP11(without saving anywhere in between) in one of my tries. Same result. I just cant get rid of this message.
What I tried:
- Searched "#comment" from to ; There was no "#comment" in between.
- Searched "#comment" in the whole document ; found some results upto line no.1062 .... However id="Blog1" starts from line 1266... so how could that have caused the error?
- Reverted my Blogger Template and Did all steps exactly, without fail time and again. Just didnt work out for me.
- No duplicate id for Blog1 ; I checked that
What I suspect(One or multiple):
- Somehow my blogger template is not supported? I am using the Simple Template by modifying bits and pieces to my liking. [plz check source if you have time: https://drive.google.com/file/d/0B4FcEYPLEtlJMkk5YmthNmVBMFE/view?usp=sharing ]
- I am magically missing some step even though its my 5th time with this...
- My lack of sleep is creating problems
- I am really very dumb :3
Enlighten me please!
Finally managed to get this down!!
ReplyDeleteFirst of all, thanks a ton for writing and sharing this article. It seems that blogger doesn't like my html comments like . (And yes, this happened just for your codes. I do this all the time with other codes ; no problem). I think it must have interfered with the javascript (or maybe it made some codes act like comments.. and made them useless..).
Anyway, my suggestion to people who try this in the future is:
- DO EXACTLY AS GIVEN IN THE INSTRUCTIONS IN THIS POST, WORD-BY-WORD
- If it doesn't implement in your blog, you're doing something wrong. This lady is a genius. Don't doubt it :D
- Strangely enough, highlighting and then pasting the given codes over it WORKS! ... while Highlighting, then hitting delete, and then pasting failed me 6 out of 7 times. Blogger just sucks like that. So you guys do the same ---> Highlight the code and copy over it.
Thanks again Liezl ; Sorry for bothering you! (This is almost like spam lol! :P )
Lol. Hello again Liezl!!
ReplyDeleteHelp me out a bit okay?
This part of the code doesn't seem to work for me. Although it should...
I can see the the number of comments posted in G+ with this part:
Problem is :: I CAN'T SEE THE COMMENT BOX ITSELF; Neither on the PAGES or the POSTS (anywhere in my blog).
I've tried lots of things and reverted my template tons of times. (kinda regretting putting G+ comment tab now lol :P )
Anyways, since you told that you're not much into Google+ , here is something I've found online. Please refer it if you have to, and hopefully find me a solution.
[1] http://www.mybloggerbuzz.com/2013/12/use-blogger-and-googleplus-comment-system-together.html
[2] http://www.bloggerspice.com/2014/12/How-to-add-Blogger-and-Google-plus-Comments-System-Together-With-Toggle.html
^ I didn't understandmost of what was being done there. However, I know that the js script for google has to be called. I did that and implemented that. Works well with empty /dummy blog.... can't seem to make it work out with your tabs.
Here is my blog: http://csitauthority.blogspot.com/p/3rdsem.html
You will notice that Google Plus Comment Count is working... but the comment box itself is nowhere to be seen. Can you help me fix this? Thanks a ton in advance.
Sorry for earlier... code got interpreted as comment... and disappeared... lol.
ReplyDeleteThis part of the code doesn't seem to work for me. Although it should...
<div class='commtab' id='blog-comment4'>
<script src='https://apis.google.com/js/plusone.js'/>
<div class='g-comments' data-first_party_property='BLOGGER' data-view_type='FILTERED_POSTMOD' data-width='560' expr:data-href='data:post.url'/>
</div>
I can see the the number of comments posted in G+ with this part:
<li class='blog-comment gplus-comment'><span class='comment-count'><div class='g-commentcount' expr:data-href='data:post.canonicalUrl'/></span><i class='fa fa-google-plus commenticon'/>Google+ Comment</li>
Problem is :: I CAN'T SEE THE COMMENT BOX ITSELF; Neither on the PAGES or the POSTS (anywhere in my blog).
Please check my blog and suggest how I should fix this: http://csitauthority.blogspot.com/p/3rdsem.html
You will notice that Google Plus Comment Count is working... but the comment box itself is nowhere to be seen.
I've already fixed it! It should be working now. This is what I changed, from:
Delete<div class='cmt_iframe_holder'
expr:data-href='data:post.canonicalUrl'
expr:data-viewtype='data:post.viewType'/>
to:
<div class='g-comments' data-first_party_property='BLOGGER' data-view_type='FILTERED_POSTMOD' data-width='600' expr:data-href='data:post.canonicalUrl'/>
Thanks a ton Liezl. It worked like a charm. You have been very helpful. Your blog is very helpful. You're great!! Thanks again!
ReplyDeleteYou're welcome. I'm glad it worked for you.
DeleteAwesome !! Thanks... It worked for me !!!
ReplyDeleteThanks for this...can you share with us the left floating share buttons you are using on web version.
ReplyDeleteJust added the Comment System but the Title which shows comment count, comment icon and comment name doesnot shows on a line.
Deleteand I want it on a single line. How do I fix this demo at http://techblogng.com
i have the same problem as Lance Elot.
ReplyDelete"The widget with id "Blog1" cannot contain element: "#comment". A widget can only contain b:includable elements."
i didn't find any #comment in the code so i'm not sure what the problem is and how to solve it...
I think what you're trying to do is edit things manually. You simply have to follow Step 4: Highlight the whole "includable" section and paste over the codes I provided in Step 5.
DeleteIf you can't follow that, then there's nothing I can do for you. Lance Elot learned his mistakes and he just followed the steps to get it done.
hi! just realized that blogger comments are not working. when someone leaves a message and hit publish, it refreshes the page but the comment is gone. what went wrong?
ReplyDeletejust found out I forgot the step 8. sorry. and thanks for this amazing tutorial!
DeleteI'm very grateful for the exhaustive tutorial. Sadly, Facebook is showing blank..not an even the option to comment....would you care to help?
ReplyDeletehttp://www.politicalkenya.com is the blog
thanks
ReplyDeleteI Liezl,
ReplyDeleteThank you so much for such a great tutorial! I have deleted the facebook comment system, and kept just blogger and disqus. It works like a charm! :D
Thanks for this...can you share with us the left floating share buttons you are using on web version.....................
ReplyDeleteI can't just yet. There used to be a counter right there. Supposedly, every time you hover on a social share button, the number of counts will show for that social medium (with the hover 3D effect), and the sum for all the counts of all the media will show right there on top with the word SHARES.
DeleteUnfortunately, the social media made changes with their API (about 3 of them) and my code broke. Until I find a way to recreate the counter and make it permanent or find the best 3rd-party service for it, then I will post a tutorial for it.
i have custom template embedded with disqus comment footer, want to replace it with blogger comment section of facebook one, hope you will help me out, thanx :)
ReplyDeletehave GREAT TIME AHEAD.....:)
I know it's late in replying but this is for future readers. I made a new tutorial here: http://www.zirev.com/2015/11/how-to-add-facebook-disqus-and-google.html
DeleteYou'll see the rundown of events. You can choose which commenting system/s to add (could be any combination): Facebook, Disqus and Google+.
Hi, I´m trying to put it off, but when I do reverse, my blog gets with no commet tab. Can you please post how take it off and came back to original blog comment tab?
ReplyDeletePlease refer to this new tutorial: http://www.zirev.com/2015/11/how-to-add-facebook-disqus-and-google.html
DeleteYou'll see the details on what what were added so you'll know what to take out. Pay close attention starting from step 3 there.
Your original comment section is this whole thing:
"<div class='comments' id='comments'>...</div>".
Thanks for your tutorial, but can you help me how to resize the comment flat form.. here is my website www.healthcertified2k.com can you check please... thanks
ReplyDeletePlease add this on your CSS styling for Tabbed Comments:
Delete.blog-comment-tabs ul li {
float: left;
width: 33.33%;
padding: 1.5% 0;
text-align: center;
-webkit-transition: all .2s ease-in-out;
-moz-transition: all .2s ease-in-out;
-o-transition: all .2s ease-in-out;
transition: all .2s ease-in-out;
}
And then for the child list of blog-comment-tabs (ul li names) under <b:includable id='threaded_comments' var='post'>, you can delete the word "Comment" for Blogger Comment, Facebook Comment and Disqus Comment for better aesthetics.
Oh, thank you for the article.
ReplyDeletevery.very.very.thanks
ReplyDeleteThe important thing is to choose whether to implement the facebook code directly in the html base code of the blog or to add it in the layout as a widget. It has to be carefully done.
ReplyDeleteSometimes the javascript code may not work properly, which needs to be slightly tweaked in order to make it work.
Thanks for sharing.
ReplyDeleteThank you for sharing Awesome blog post its amazing will come back to read more.
ReplyDeletehi thank you very much its working as charm but i noticed something, if you use the disqus comments first then use the blogger comments after, the comment i did before on disqus disappears bcz blogger have 2 comments section, visit my test blog and test it https://animesan-template-updates.blogspot.com/
ReplyDeleteSorry for the late reply. Please enable threaded comment. Refer to step 8 on my new post for this tutorial at https://www.zirev.com/2015/11/how-to-add-facebook-disqus-and-google.html
DeleteWhen your website or blog goes live for the first time, it is exciting. That is until you realize no one but you and your.
ReplyDeleteIt is very good, but look at the information at this address. Satta king online
ReplyDeleteReal estate companies in dubai Manages Exclusive Premium Properties For Buying, Selling, Renting & Inhouse Mortgage Services Across The United Arab Emirates.
ReplyDeleteAZCO Real Estate Manages Exclusive Premium Properties For Buying, Selling, houses for sale in dubai Renting & Inhouse Mortgage Services Across The United Arab Emirates.
ReplyDeleteAZCO Real Estate Manages Exclusive Premium Properties For Buying, Selling, Villas for sale in dubai Renting & Inhouse Mortgage Services Across The United Arab Emirates.
ReplyDeleteBuy full building through AZCO Real Estate Manages Exclusive Premium Properties For Buying, Selling, Renting & Inhouse Mortgage Services Across The United Arab Emirates.
ReplyDeleteImpressive blog to be honest definitely this post will inspire many more upcoming aspirants. Eventually, this makes the participants experience and innovate themselves knowledge wise by visiting this kind of a blog. Once again excellent job keep inspiring with your cool stuff.
ReplyDeleteData Science Training in Bhilai
Much thanks to you for this magnificent post. It is extremely useful and helpful. I might want to share something here as well. buy youtube watch hours
ReplyDeleteA majuscule website with engrossing and incomparable physical what else would you condition. thetabletsviews
ReplyDeletehttps://optiin.com/best-quiz-funnel-builderBest quiz funnel builder. If you want to drive traffic to your business website and generate leads for your business this year, then one thing you should know is that you need good lead generation tools. A lead generation tool can help you build a strong brand and community around your business. This blog will look at the best quiz funnel builder that can help you create quizzes, build follow-ups, and use the ask method to create qualified leads and prospects.
ReplyDeleteBuying real twitch views puts a great impact on your organic viewers. We provide only real Twitch viewers for your channel. So, you can grow the popularity of your channel naturally. Also, good quality content is always necessary, to begin with. But, it is important to have enough viewers for each stream.buy twitch followers
ReplyDeleteMarketing your brand or company becomes much easier when you buy active YouTube subscribers for the channel. Moreover, it helps in broadly broadcasting your videos and content and making it more accessible. When your videos start rolling out to the market under a channel head that already has a lot of active subscribers, it gives your channel a kind of brand credibility and increases your chances of gaining more and more loyal followers.buy youtube views
ReplyDelete
ReplyDeleteHey I am Umair.I am using cordis.us services they offered large variety of business management services in affordable rates,they have different packages for small medium and large corporate sectors for more information visit websites pos software
This comment has been removed by the author.
ReplyDeleteYour work is very good and I appreciate you and hopping for some more informative posts
ReplyDeleteSoftware Training Institute in Hyderabad
thankyou for your post visit us to see article about anything at https://www.unair.ac.id/
ReplyDeleteI am really happy to say it’s an interesting post to read. I learn new information from your article, you are doing a great job. Keep it up
ReplyDeleteSoftware Testing Tools Training in Hyderabad
At ITEK Insight, we offer training in different departments. May it be for a Job Position or IT professional services or may it just be for a Software that your job requires you to be proficient in, we have got you covered.
ReplyDeleteAt Itek Insight we strongly recommend to take advantage from our IT professional services. Itek Insights provides well trained staff for every service they provide.They provide personalized service that is efficient, friendly and comply with Industry standards.
ReplyDeleteNotwithstanding, being a long way from ordinary promoting as perhaps, likewise, it has confounded numerous producers that are uncertain how to use the framework to drive income and new openness.iceliker
ReplyDelete
ReplyDeleteAre you looking for IT professional services for your project?, ITEK Insights provides you with the best Professional services related to IT. You can take these services for betterment of your project. Go and visit ITEK Insights.
ReplyDeleteOf course, energy supplements are the best source to boost strength and energy. People are using them for centuries to stay strong and healthy. Sharbat faulad, an herbal source of iron, is considered the best tonic for overall physical maintenance. It contains a sizable amount of iron, which improves the body’s efficiency. It betters the function of the liver and stomach.
ReplyDeleteITEK Insights provide Training for various Job Roles in the IT Department as well as major in-demand Systems and also provide IT professional services. May it be for a Job Position or may it just be for a Software that your job requires you to be proficient in, we have got you covered.
Of course, energy supplements are the best source to boost strength and energy. People are using them for centuries to stay strong and healthy. techcreative
ReplyDeletefloral arrangements Belarus
ReplyDeleteкупон на скидку 50 процентов мореон купоны на скидку 2022
ReplyDeletehttp://google.fi/
ReplyDeleterantootika
ReplyDeleterantootika
ReplyDeleteюр адрес москва
ReplyDeleteFirma remontowa Warszawa moja strona www
ReplyDeletehttps://eumos.eu/news/bitcoin_mixing__bitcoin_mixing__best_crypto_mixer__mixer_btc__best_crypto_mixer.html
ReplyDeleteикс бокс сайт
ReplyDeleteхорроры на xbox 360 freeboot
ReplyDeletehttps://www.perfectpearceremonies.com.au/forum/general-discussions/free-online-games-at-uptown-pokies-casino-in-australia
ReplyDeleteusługi remontowe trochę ode mnie
ReplyDeletepo co Firmy remontowo wykończeniowe nieco ode mnie
ReplyDeletewejdź i sprawdź najlepsza strona internetowa o remonty mieszkań warszawa
ReplyDeletesprawdzone remonty Warszawa wspiera
ReplyDeleteBlog
ReplyDeletewejdź tu wspiera
ReplyDeleteremonty mieszkań warszawa remont mieszkania warszawa to temat jaki mnie niepokoi
ReplyDeleteremont mieszkania coś ode mnie
ReplyDeletehttps://karlinsky.ru
ReplyDeleteremonty mieszkań pod klucz warszawa remont mieszkań pod klucz w Warszawie to zagadnienie jakie mnie niepokoi
ReplyDeletesprawdź coś ode mnie
ReplyDeleteklik to kwestia jakie mnie interesuje
ReplyDeletehttps://zged.pl
ReplyDeleteremonty mieszkań w stolicy najfajniejsza strona www o remonty mieszkań warszawa
ReplyDeletekramp
ReplyDeleteszalunek ścienny co to wspiera
ReplyDeleteIsraFace - израильтяне, это еврейский клуб, где встречают свою любовь еврейки и евреи и русский еврей из Украины и Израиля. Добавляйте свои фото, ролики, регистрируйтесь в клуб, заходите в блог, навещайте форум, начинайте еврейские знакомства.
ReplyDeletewejdź tu ociupinę ode mnie
ReplyDeletewykończenia mieszkania pod klucz Warszawa z kim wspiera
ReplyDeletehttps://semyon-irlanda.ru вырастить рассаду
ReplyDeleteIsraFace - израильтяне в россии, это община для евреев, где встречают свою любовь еврейки и евреи и русский еврей из Израиля и Украины. Добавляйте любимые фото, ролики, объединяйтесь в сообщества, читайте блог, читайте форум, заводите еврейские знакомства.
ReplyDeleteритуальные услуги стоимость похорон
ReplyDeleteТачскрин для автомагнитолы MyDean 3106 - сенсорное стекло
ReplyDeletebok24.naklo.pl
ReplyDeleteStudying to experience the blues might seem as a overwhelming task, even when you’re not a rookie guitar player. How ever with all the right Blues Guitar Lessons and trainer you’ll be able to understand the “tools of the trade” so to speek to help demystify the truly amazing grooves, solos and riffs you cherish. adobe xd to webflow
ReplyDeletehttps://texnikaspec.ru
ReplyDeletefloral arrangements Minsk
ReplyDeletelocal florist Belarus
ReplyDeleteИнстраграмм остается самой популярной площадкой для продвижения собственного бизнеса. Но, как показывает практика, люди еще чаще подписываются на профили в которых уже достаточное количество подписчиков. В случае если заниматься продвижение своими силами, потратить на это вы можете очень множество времени, потому гораздо лучше обратиться к специалистам из Krutiminst.ru подробнее https://collinsldv88765.blogstival.com/35824172/how-to-get-instagram-followers-rapidly
ReplyDeleteкрипто миксер
ReplyDeletesend flowers online Minsk
ReplyDeleteзеркальная пленка на окна
ReplyDeleteвоенный адвокат Запорожье по мобилизации
ReplyDeleteКамагра гель Израиль закупить мужской возбудитель камагра гель в Израиле. Это известный, функциональный и высокоэффективный возбуждающий препарат повышения и улучшения мужской силы по доступной цене с доставкой по вему Израилю.
ReplyDeleteПродукция сменные кассеты gillette купить оптом, это отличный способ открыть свой бизнес. Постоянные распродажи на сменные картриджи gillette fusion. Средства для бритья триммер-лезвие fusion практичные наборы gillette купить оптом по оптимальной цене производителя. Спешите купить лезвия джилет mach3, станки для бритья джиллет фьюжен проглайд, а также любой другой продукт линейки gillette mach 3 по оптимальной стоимости!. Всегда в наличии популярные одноразовые станки gillette venus.
ReplyDeletehttps://www.dzschkola.ru/2022/12/informatsiya-o-kompanii-topeu-i-otzyvy-o-brokere-topeu.com.html
ReplyDeleteSex shop в Израиле, где вы можете закупить мужские и женские препараты потенции, повышение либидо и афродизиаки для мужчин и женщин. Знаменитый, действующий и высокоэффективный ассортимент возбуждающих препаратов повышения и улучшения женского либидо и мужской потенции по выгодным ценам.
ReplyDeleteI am for sure returning again for more contents of yours. Moremarta | Latest Tech Reviews
ReplyDeleteJa Rule 33 лучших фото cojo.ru
ReplyDeleteАнна Михайлова Актриса HD https://cojo.ru/znamenitosti/anna-mihaylova-aktrisa-33-foto/
ReplyDelete30 тонн песка сколько кубов https://prazdnikko.com/budivnictvo-ta-remont/jak-pereviriti-pid-naprugoju-chi-provid-2.html расчет деревянной балки
ReplyDeleteсайт отзывов
ReplyDeleteI am for sure returning again for more contents of yours. best tablet for football coaches
ReplyDeleteYour work forces out your followers for blog commenting. Best tablet for vainglory
ReplyDeleteI’m flattened for your blogs writings and blogs as well. best tablet for screen mirroring
ReplyDeleteяк виміряти частоту струму мультиметром https://prazdnikko.com/podarunki-divchini/110-idej-shho-podaruvati-kohanij-divchini.html подарунок на день народження дружині
ReplyDeleteКомпрессоры Dalgakiran
ReplyDeleteBest bitcoin mixer
ReplyDeleteGreetings! I am Herschel Weathersby and I absolutely dig that name. What I love doing is to climb and I'm trying to make it a profession. He's always enjoyed living in Nebraska and he likes every day living there. Financial obligation gathering is what she does and she will not alter it anytime soon. See what's brand-new on her website here: epic games download
ReplyDeleteHi pal. Let me introduce myself. I am Joya Otten although it's not the most womanly of names. Playing crochet is the only hobby her hubby does not authorize of. Administering databases is what he performs in his day job but soon he'll be on his own. He's always liked living in Nebraska and he likes every day living there. See what's brand-new on her website here: online games of pc
ReplyDeleteThe author's name is Esta Knapp and she totally digs that name. I am actually fond of aromatherapy however I don't have the time lately. Wisconsin has always been my home and my family likes it. Curing people has actually been his day task for a while. See what's brand-new on his site here: bloons td 6
ReplyDeleteгригорий лепс билеты
ReplyDeleteJudie is what individuals call me though I do not really like being called like that. My family lives in Mississippi. My job is a bookkeeper however soon my other half and I will begin our own company. To play with dogs is something I will never ever give up. Go to my website to find out more: jurassic world the game hack
ReplyDeleteThey call me Providencia however I never ever actually liked that name. My pals state it's not good for me but what I enjoy doing is fashion and now I'm trying to make money with it. Accounting has actually been my day task for a while however I've currently applied for another one. My family resides in Mississippi. You can discover my website here: strike force heroes 2 hacked
ReplyDeletekraken
ReplyDeleteWhen individuals utilize the full name, I'm Kenton and I feel comfortable. My friends say it's not excellent for me but what I like doing is archery and I've been doing it for a long time. My family lives in Mississippi. For several years I've been working as a client service agent however I've already made an application for another one. You can discover my website here: higgs domino versi 1.64
ReplyDeleteHis name is Ben Strauser. Accounting is what he provides for a living and his income has actually been actually fulfilling. Her husband and her picked to reside in Kansas now she is considering other options. Watching movies is the only hobby my wife does not approve of. Her other half and her preserve a website. You might wish to inspect it out: man of the house apk
ReplyDeleteUpload Video And Get Rewarded! - Vidone.net. Share video without any limits. Manage all your files in a single click! vidone.net
ReplyDelete2krn
ReplyDelete