Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save MdKutubuddinSardar/6300bba54c2100d31e7ce17509cab601 to your computer and use it in GitHub Desktop.
Save MdKutubuddinSardar/6300bba54c2100d31e7ce17509cab601 to your computer and use it in GitHub Desktop.
How to remove "Read More" and show full post instead in Blogger
<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>
@MdKutubuddinSardar
Copy link
Author

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:

Source : http://d-install.blogspot.in/2011/11/how-to-remove-read-more-and-show-full.html

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment