Before do any change to your blogger theme, you must backup it first. Don't forget to do it, if you don't like to loose all customization did to the theme.
First, make sure that you have activated Google+ comment in Blogger settings.
https://www.blogger.com/blogger.g?blogID=YOUR_BLOG_ID#googleplusNow go to "Edit HTML".
Find this:
<b:if cond='data:blog.pageType == "static_page"'> <b:if cond='data:post.showThreadedComments'> <b:include data='post' name='threaded_comments'/> <b:else/> <b:include data='post' name='comments'/> </b:if> </b:if> <b:if cond='data:blog.pageType == "item"'> <b:if cond='data:post.showThreadedComments'> <b:include data='post' name='threaded_comments'/> <b:else/> <b:include data='post' name='comments'/> </b:if> </b:if>You will found it 2 times. Now replace that both codes with below code:
<b:if cond='data:blog.pageType == "static_page"'> <b:include data='post' name='comment_picker'/> </b:if> <b:if cond='data:blog.pageType == "item"'> <b:include data='post' name='comment_picker'/> </b:if>Finally save your theme.
0 Comments