Add Automatic Read More Button To Blogger Posts

As we all know that we can't actually add read more button without using 'Jump Break' option. Without jump break your post is going to appear all over your homepage.
Basically, a nice homepage is one which loads faster without actually leaving behind main contents of your blog.


Add Automatic Read More Button To Blogger Posts



What this trick will do?

By this trick you can add read more button to every post and then there will be no need to use jump break tool to add read more button to your posts. Just add the codes below and publish your posts without actually using jump break tool.

Also, if you're not using jump break in your posts and your homepage is showing full post then you must customise your homepage.


Steps to follow


  • Open blogger
  • Go to 'Template' and select 'Edit HTML'
  • Now search for this code

</head>

  • Copy this code paste above </head>

<script type='text/javascript'>
posts_no_thumb_sum = 490;
posts_thumb_sum = 400;
img_thumb_height = 160;
img_thumb_width = 180;
</script>
<script type='text/javascript'>
//<![CDATA[
function removeHtmlTag(strx,chop){
if(strx.indexOf("<")!=-1)
{
var s = strx.split("<");
for(var i=0;i<s.length;i++){
if(s[i].indexOf(">")!=-1){
s[i] = s[i].substring(s[i].indexOf(">")+1,s[i].length);
}
}
strx = s.join("");
}
chop = (chop < strx.length-1) ? chop : strx.length-2;
while(strx.charAt(chop-1)!=' ' && strx.indexOf(' ',chop)!=-1) chop++;
strx = strx.substring(0,chop-1);
return strx+'...';
}
function createSummaryAndThumb(pID, pURL, pTITLE){
var div = document.getElementById(pID);
var imgtag = "";
var img = div.getElementsByTagName("img");
var summ = posts_no_thumb_sum;
if(img.length>=1) {
imgtag = '<span class="posts-thumb" style="float:left; margin-right: 10px;"><a href="'+ pURL +'" title="'+ pTITLE+'"><img src="'+img[0].src+'" width="'+img_thumb_width+'px" height="'+img_thumb_height+'px" /></a></span>';
summ = posts_thumb_sum;
}
var summary = imgtag + '<div>' + removeHtmlTag(div.innerHTML,summ) + '</div>';
div.innerHTML = summary;
}
//]]>
</script>
<b:if cond='data:blog.pageType != &quot;static_page&quot;'>
<b:if cond='data:blog.pageType != &quot;item&quot;'>
<style type='text/css'>
.post-footer {display: none;}
.post {margin-bottom: 10px; border-bottom: 1px dotted #E6E6E6; padding-bottom: 20px;}
 .readmore a {text-decoration: none; }
</style>
</b:if>
</b:if>

  • Now search for this code

<data:post.body/>

  • Now copy this code and replace above code

<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;,&quot;<data:post.url/>&quot;,&quot;<data:post.title/>&quot;);</script>
 <span class='readmore' style='float:right;'><a expr:href='data:post.url'>Read More &#187;</a></span></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>

  • Save your template and you're done.

In case you've more than one <data:post.body/> then replace the last one.


Customise


To change number of characters when there is no image, change the value in blue.

posts_no_thumb_sum = 490;

To change the number of characters when there is an image, change the value in blue

posts_thumb_sum = 400;

To change image size change the value in blue

img_thumb_height = 160;
img_thumb_width = 180;

The easy way to customise your homepage in blogger.

Happy blogging!

I like blogging as much as I like coding and designing though not more than traveling.
If I'm not here publishing stuff then you will find me researching about SEO and marketing.
Love to meet new people and try to help every person.
Find me interesting or have any issue?
Shoot a message and I'll be with you.

1 comment:

Don't forget to check 'Notify me' box to get notification of reply.