How to remove "Read More" and show full post instead in Blogger


How to remove "Read More" and show full post instead in Blogger

In this tutorial i will show you how to remove the Auto Read More feature from blogger template, it is often wanted by someone who want their post to become full post and there is no read more article hidden.

To remove the Auto Read More feature from your template, go to Dashboard - Design - Edit HTML - Download Full Template - Expand Widget Templates -  Find and delete the following lines:


<p>
<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>
<div class='readmore-wrap'>
<a class='readmore' expr:href='data:post.url'>Read More</a>
</div>
</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></p>

Paste these lines in place of the deleted lines above:

<p>
<data:post.body/>
</p>

Cheers.