Thursday, June 2, 2011

How To Remove Automatic Readmore at Static Page Blogger

Author: Gagan Masoun


Most Blogger template that I created still using old version of "automatic readmore" feature. So, if you are using my blogger templates than you need to edit the template manually to remove read more option from the static pages.

Follow the instructions below to remove automatic read more 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

2 comments:

  1. Wow!

    I literally solved this problem in less than 2 minutes.
    Several blogs I tried previously had kinda complicated
    explanations that didn't work at all....lol

    (I'm using Techboxed template for blogger)

    Thanks Blogdaddy!

    ReplyDelete