How To Remove Automatic Readmore at Static Page Blogger


Most Blogger template that I created still using recent version of "automatic readmore" feature. So, if you're using my blogger templates than you would like to edit the template manually to get rid of browse additional possibility from the static pages.

Follow the directions below to get rid of automatic browse additional from blogger static pages.


1. Go to Dashboard → Design → Edit Html → Expand Widget Templates.

2. Press Ctrl+F and search this codes.


<div class='post-body entry-content'>


Then add this code below that codes.

<b:if cond='data:blog.pageType == &quot;static_page&quot;'><br/>
<data:post.body/>
<b:else/>


Look like this

<div class='post-body entry-content'>
<b:if cond='data:blog.pageType == &quot;static_page&quot;'><br/>
<data:post.body/>
<b:else/>


3. Press Ctrl+F and search this codes.

<div style='clear: both;'/> <!-- clear for photos floats -->


Then add this code above that codes.

</b:if>


look like this

</b:if>
<div style='clear: both;'/> <!-- clear for photos floats -->


4. Save

0 comments: