How To Summarize Posts and Hide Read More Link in Static Pages?
- Go To Blogger > Design > Edit HTML
- Backup your template
- Search for the old read more code which looks like this,
<b:if cond='data:blog.pageType != "item"'>
<a expr:href='data:post.url'><div style="text-align: right;">Read More ->></div></a>
</b:if>
or something similar to this. Simply replace it with this one,
<!--READ-MORE-STARTS-->
<b:if cond='data:blog.pageType == "static_page"'><br/>
<b:else/>
<b:if cond='data:blog.pageType == "index"'><br/>
<a expr:href='data:post.url'><div style='text-align: right;'>
<img height='33px' src='IMAGE URL OF READ MORE BUTTON' width='120px'/></div>
</a>
</b:if>
</b:if>
<!--READ-MORE-STOPS-->
kindly replace IMAGE URL OF READ MORE BUTTON with Image link of your read more button.