How to Add Blogger and Google+ Comments System in Blogger?
- Click on the Template tab from the left sidebar, and then click on Edit HTML.
- From the code editor, press Ctrl + F, and search for the following line of code
<b:includable id='nextprev'>
- Immediate after this line, add the following code.
<div id='gcontainer'><div id='gcomments'/></div>
<script src='http://apis.google.com/js/plusone.js'/>
<script>
gapi.comments.render('gcomments', {
href: window.location,
width: '570',
first_party_property: 'BLOGGER',
view_type: 'FILTERED_POSTMOD'
});
$('#comments-norm').click(function(){
// switch to normal comments displaying
$('#gcontainer').css('display','none');
$('#comments').css('display','block');
$('#comments-norm').addClass('comment-on');
$('#comments-gplus').removeClass('comment-on');
$('#comments-norm').attr('src','https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgDRc876LPUAzzas8TrySn5oXZ4yC9qPUwMLqlJprPG8WaBvTgxpTCmReSNuXuug0aD4zTkJ4sJFZD2Vo076KaTv45xMGqvJdaTAvy2Feo-gmknbLW5O6nJ4gbXtv8UhSonSSGUhGY-SZlM/s50/blogger_on.png');
$('#comments-gplus').attr('src','https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgCkbsBjLe7a491gWvuUEdObrj1PSNM5c2iBP96X47mqVS3sLlzbn4QtiO1Kq4eNnX0Y6NR8VehipfK1qJ4yaNkzdcTdsXgZNCVrSlt2Xure1AJPLYz4XTRUpik6HLxhkAIunnr4L8OgOBi/s50/plus_off.png');
});
$('#comments-gplus').click(function(){
// switch to google plus comments displaying
$('#comments').css('display','none');
$('#gcontainer').css('display','block');
$('#comments-norm').removeClass('comment-on');
$('#comments-gplus').addClass('comment-on');
$('#comments-norm').attr('src','https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEia9Ipv4oZHF7IyPAGKTokJ1xUbUjgZgCE_9WbnbK6D_GCxmKk7-PxTXdA4CU68W-xL3Zojmcxhpf8FQwCaDYG8DlXvXEFXAczEJ9E6MokbLUsmGA4uzUAPxUpNm0vo4xv7fN7crdAzWany/s50/blogger_off.png');
$('#comments-gplus').attr('src','https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgVkL4ASmVOwHX3xYRRHd5_KDb6Ke4qae3RISCkq4eKibZpFDU56Z62UdwK642h6pxLYDPn3iTIBdogpIpzJUwPtx6ampo7bWpj9bEEq6yW8x_kS7hamexJ6MWdlnz4IaLi2kvwX361gO6z/s50/plus_on.png');
});
$('#comments-norm').hover(
// switch to normal comments displaying
function(){
if (!$('#comments-norm').hasClass('comment-on')){ $('#comments-norm').attr('src','https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgDRc876LPUAzzas8TrySn5oXZ4yC9qPUwMLqlJprPG8WaBvTgxpTCmReSNuXuug0aD4zTkJ4sJFZD2Vo076KaTv45xMGqvJdaTAvy2Feo-gmknbLW5O6nJ4gbXtv8UhSonSSGUhGY-SZlM/s50/blogger_on.png');}
}, function(){
if (!$('#comments-norm').hasClass('comment-on')){ $('#comments-norm').attr('src','https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEia9Ipv4oZHF7IyPAGKTokJ1xUbUjgZgCE_9WbnbK6D_GCxmKk7-PxTXdA4CU68W-xL3Zojmcxhpf8FQwCaDYG8DlXvXEFXAczEJ9E6MokbLUsmGA4uzUAPxUpNm0vo4xv7fN7crdAzWany/s50/blogger_off.png');}
}
);
$('#comments-gplus').hover(
// switch to gplus comments displaying
function(){
if (!$('#comments-gplus').hasClass('comment-on')){ $('#comments-gplus').attr('src','https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgVkL4ASmVOwHX3xYRRHd5_KDb6Ke4qae3RISCkq4eKibZpFDU56Z62UdwK642h6pxLYDPn3iTIBdogpIpzJUwPtx6ampo7bWpj9bEEq6yW8x_kS7hamexJ6MWdlnz4IaLi2kvwX361gO6z/s50/plus_on.png');}
}, function(){
if (!$('#comments-gplus').hasClass('comment-on')){ $('#comments-gplus').attr('src','https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgCkbsBjLe7a491gWvuUEdObrj1PSNM5c2iBP96X47mqVS3sLlzbn4QtiO1Kq4eNnX0Y6NR8VehipfK1qJ4yaNkzdcTdsXgZNCVrSlt2Xure1AJPLYz4XTRUpik6HLxhkAIunnr4L8OgOBi/s50/plus_off.png');}
}
);
</script>
<style>
#gcontainer {
display: none;
}
#comments-norm, #comments-gplus {
cursor: pointer;
padding: 0px 5px;
float: left;
}
#comment-header {
padding-left: 10px;
float: left;
width: 595px;
border-top: 1px solid #d2d2d2;
border-bottom: 1px solid #d2d2d2;
padding-top: 10px;
margin-left: 25px;
padding-bottom: 5px;
margin-right: 25px;
}
#gcontainer {
margin-left: 40px;
margin-top:20px;
float: left;
}
</style>
Now Proceed To Step 2
- From the code editor, press Ctrl + F, and search for the following CSS code
]]></b:skin>
- Paste below code before above code
/*****************************************
Bloggerheroe.com Blogger and G+ Comment System
******************************************/
#comments-norm, #comments-gplus {
cursor: pointer;
padding: 0px 5px;
float: left;
}
#comment-header {
padding-left: 10px;
float: left;
width: 595px;
border-top: 1px solid #d2d2d2;
border-bottom: 1px solid #d2d2d2;
padding-top: 10px;
margin-left: 25px;
padding-bottom: 5px;
margin-right: 25px;
}
#gcontainer {
margin-left: 40px;
margin-top:20px;
float: left;
}
.commentwith h5 {
text-transform: uppercase;
font-family: 'Oswald', Arial, Helvetica, sans-serif;
font-size: 24px;
color:#1BA1E2;
font-weight: normal;
line-height: 25px;
margin-bottom: 35px;
float: left;
margin: 15px;
}
Step 3
- Search this code <div class='post-footer-line post-footer-line-1'> in your blogs HTML
- Copy above HTML code and paste just after <div class='post-footer-line post-footer-line-1'>
<b:if cond='data:blog.pageType == "item"'>
<div id='comment-header'>
<div class='commentwith'><h5><b> Comment Using:</b></h5></div>
<img class='comment-on' id='comments-norm' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgDRc876LPUAzzas8TrySn5oXZ4yC9qPUwMLqlJprPG8WaBvTgxpTCmReSNuXuug0aD4zTkJ4sJFZD2Vo076KaTv45xMGqvJdaTAvy2Feo-gmknbLW5O6nJ4gbXtv8UhSonSSGUhGY-SZlM/s50/blogger_on.png' title='view Blogger comments'/>
<div class='commentwith'><h5><b>OR</b></h5></div>
<image id='comments-gplus' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgCkbsBjLe7a491gWvuUEdObrj1PSNM5c2iBP96X47mqVS3sLlzbn4QtiO1Kq4eNnX0Y6NR8VehipfK1qJ4yaNkzdcTdsXgZNCVrSlt2Xure1AJPLYz4XTRUpik6HLxhkAIunnr4L8OgOBi/s50/plus_off.png' title='view Google+ comments'/>
<div class='commentwith'><h5><b>Happy Reading!!</b></h5></div>
</div>
</b:if>
- Hit save and your done.
- If you have any doubts or problem adding this code please leave your comments below.





Hello! This is Adrian Lucernas, the owner and administrator of this blog, who lives in Camotes Island Cebu, Philippines. I have a pretty and loving wife Eljen Lucernas. 


Superb ! Awesome stuff man :)
ReplyDelete@Tanmay KapseThank you bro.Stay with us for the latest updates..:)
ReplyDeletei think you would be not getting backlinks if we use google+ ? HWO TO DELETE UNWANTED FILES AND SPEED UP YOUR PC
ReplyDelete@Tharun RajThat's why i made this combination both Blogger and Google Plus Comment System.
ReplyDeleteThank you my brother was working in my blog thanks
ReplyDeletehttp://bilokr.blogspot.com/
Hello Adrian,
ReplyDeleteThanks for this trick
Can you please further modify the code to make Google Plus Comment Default ? I mean Google Plus comment will appear after loading page and one can choose the Blogger Old Comment System
Please ! Waiting for your reply
@techrinser.comThanks for your feedback, if you install all this code, just uncheck your google plus.in blogger dasboard.because this code is is automatically activate the google plus comment system,..
ReplyDeleteLet me know if you have any problem...
Thanks..
This was really awesome system. used by many pro blogger
ReplyDelete