SOFTWARE TIPS

What most of the experts skip...

TIP

. Avoid 'Overburn CD' option when Writing to any CD. Sometimes the data may not be read.

How to show only Post TITLES when a label or month archive is clicked  

 

Generally when a label has more than 15 or above links of posts and if you happen to click the label, all the 15+ posts will be opening in the web page taking lot of time depending on the size of the posts.

Follow the following simple tweak which lets user to view only Post titles when a label is clicked thus opening any no. of posts with in no time.

Log in to Blogger
Go to Layout, and click on "Edit HTML" tab. Check “Expand Widget Templates”, now find (CTRL+F) this code in the template:

 

 

<b:include data='post' name='post'/>

 

And REPLACE that line with this code:

 

 

<b:if cond='data:blog.homepageUrl !=
data:blog.url'>
<b:if cond='data:blog.pageType != "item"'>
<a expr:href='data:post.url'>
<li></li><data:post.title/></a><br/><br/>
<b:else/>
<b:include data='post' name='post'/>
</b:if>
<b:else/>
<b:include data='post' name='post'/>
</b:if>


 

You can check this tweak in this blog by clicking any label with morethan 1 posts or any monthly archive

Read More...
AddThis Social Bookmark Button