Many bloggers like to add Auto Read More option for their blogs. So I have included it with my templates.But if you want to remove auto read more option from your blog, follow the steps given here. This tutorial will help you to remove auto read more feature from many blogger templates of mine.


How To Remove Read More Option To My Blog/Blogger And Full Post Show To Homepage:

Follow My Steps:

  • Now Go To "Design" --->"Edit Html".IF You Are Using Blogger New Interface Go To "Template"      --->"Edit Html"
  • Find This:

<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='readmorecontent'><a class='readmore' expr:href='data:post.url'><b>Read more &#187;</b></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>
  • Also Look At The Image To Easily Identify the Code:

Note:Some part of the code cab be different,according to your template.But you can find this code easily.
  • Now Replace Above Code With Below One:
  • <data:post.body/>
  • Save your template and refresh your site.You can see Read More Option Remove This Site.
But still you can see "Read More"Button in Your Blogger Post? Then find this and remove it again some part of the code can be different ,according to your template.
<b:if cond='data:blog.pageType != &quot;static_page&quot;'>
<b:if cond='data:blog.pageType != &quot;item&quot;'>
<div class='readmore-wrap'>
<a class='readmore' expr:href='data:post.url'>Read More</a>
</div>
</b:if>
</b:if>
Do You Like This Tutorial Plz Comments Me First!!