How to Remove Blogger Auto Read More

Updated on June 09, 2016
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) :
<b:if cond='data:blog.pageType != &quot;static_page&quot;'>
<b:if cond='data:blog.pageType != &quot;item&quot;'>
<div expr:id='&quot;summary&quot; + data:post.id'><data:post.body/></div>
<script type='text/javascript'>createSummaryAndThumb(&quot;summary<data:post.id/>&quot;);</script>
</b:if>
</b:if>
<b:if cond='data:blog.pageType == &quot;item&quot;'><data:post.body/></b:if>
<b:if cond='data:blog.pageType == &quot;static_page&quot;'><data:post.body/></b:if>
Replace it with this:
<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 != &quot;static_page&quot;'>
<b:if cond='data:blog.pageType != &quot;item&quot;'>
<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>
Remove it and save your template.
Refresh your site. Now you will see full post content on homepage.
Share this: pinterest