Showing posts with label Customize - Label. Show all posts
Showing posts with label Customize - Label. Show all posts

Saturday, June 6, 2009

Hack To Improve Blogger Label and Archive Pages

How to display post titles only on Blogger archive page?
How to show blog posts titles on Blogspot archive page?
How to set Blogger to show only blog titles on archive page?
How to show titles only on archive pages of Blogger blog?

How to display post titles only on Blogger label page?
How to show blog posts titles on Blogspot label page?
How to set Blogger to show only blog titles on label page?
How to show titles only on label pages of Blogger blog?

This hack will enhance the label and archive pages on a Blogspot blog.

blogger archive title only

Showing only the titles and not the content.

Dashboard > Layout > Edit HTML > check Expand Widget Templates box

Then find this code line:

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

Replace that line with this coding.

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

Save.

Now you have summarized label and archive pages.

Credit: Blogger Widgets

Friday, June 5, 2009

Remove "Showing post with label...show all posts"

How to remove "Showing post with label...show all posts" on Blogger blog?

Here's how:

blogger remove this

Log in to your Blogger account, Back-up your template, then go to:

Dashboard > Layout > Edit HTML > check Expand Widget Templates box

Find the following part of code:

<b:includable id='status-message'>
<b:if cond='data:navMessage'>
<div class='status-msg-wrap'>
<div class='status-msg-body'>
<data:navMessage/>
</div>
<div class='status-msg-border'>
<div class='status-msg-bg'>
<div class='status-msg-hidden'><data:navMessage/></div>
</div>
</div>
</div>
<div style='clear: both;'/>
</b:if>
</b:includable>

Then REPLACE it with:

<b:includable id='status-message'>
<b:if cond='data:navMessage'>
<div>
</div>
<div style='clear: both;'/>
</b:if>
</b:includable>

Save.

Now open your blog and view any label.

Credit: BlogBluk

Related Posts Plugin for WordPress, Blogger...
Follow Me on Twitter