How to-Remove-Blogger-Auto-Read-More-100% work
How to Remove Blogger Auto Read More
When you install a Blogger template of mine, your posts will start to display as summaries on homepage, label pages, archive pages and search pages. To view full content of a post, need to go to that post page. If you don't want to display post summaries like this, follow the steps in this tutorial to remove blogger auto read more feature.
First go to "Edit HTML" page of your blog.
Find this code in your template (It can be different according to the template you are using) :
Refresh your site. Now you will see full post content on homepage.
First go to "Edit HTML" page of your blog.
Find this code in your template (It can be different according to the template you are using) :
<b:if cond='data:blog.pageType != "static_page"'>Replace it with this:
<b:if cond='data:blog.pageType != "item"'>
<div expr:id='"summary" + data:post.id'><data:post.body/></div>
<script type='text/javascript'>createSummaryAndThumb("summary<data:post.id/>");</script>
</b:if>
</b:if>
<b:if cond='data:blog.pageType == "item"'><data:post.body/></b:if>
<b:if cond='data:blog.pageType == "static_page"'><data:post.body/></b:if>
<data:post.body/>Now we need to remove read more button. Scroll down slowly until you find a code more similar to this:
<b:if cond='data:blog.pageType != "static_page"'>Remove it and save your template.
<b:if cond='data:blog.pageType != "item"'>
<div style='float:right;padding-right:10px;margin-top:10px;'>
<a class='morer' expr:href='data:post.url'>Read More</a>
</div>
</b:if>
</b:if>
Refresh your site. Now you will see full post content on homepage.
0 comments:
Post a Comment