We have been moved to http://www.bloganol.com/

Showing posts with label labels. Show all posts
Showing posts with label labels. Show all posts
It is very easy to hide posts count in your labels widget.First of all sign in to blogger.After that goto Layout and then Edit HTML page.Now Expand Widget Templates by Checking on "Expand Widget Templates" and Find the following code.

<span dir="ltr">(<data:label.count>)</data:label.count></span>

All you have to do now is delete that code.Mission Accomplished!
Read more
You may have used maximum labels at your blog posts . showing all the labels at label widget may make your label widget look dirty . There is a solution or a hack to show limited labels at label widget by betabloggerfordummies. By using this hack you can show labels having more posts as you define . For example if you define "5" then the labels having more than 5 posts will be displayed.

Hack starts:

Step 1

First of all sign in to your blogger Account after that goto Layout Page.Now add label widget in your blog (Add a Page Element --> Labels --> Save).If you already have label widget in your blog then you should not have to do this step.

Step 2

Goto Edit HTML section , Expand Widget Templates and Search for the following Code.

<b:widget id='Label1' locked='false' title='Labels' type='Label'>
<b:includable id='main'>
<b:if cond='data:title'>
<h2><data:title/></h2>
</b:if>
<div class='widget-content'>
<ul>
<b:loop values='data:labels' var='label'>
<li>
<b:if cond='data:blog.url == data:label.url'>
<span expr:dir='data:blog.languageDirection'>
<data:label.name/>
</span>
<b:else/>
<a expr:dir='data:blog.languageDirection' expr:href='data:label.url'>
<data:label.name/>
</a>
</b:if>
<span dir='ltr'>(<data:label.count/>)</span>
</li>
</b:loop>
</ul>

<b:include name='quickedit'/>
</div>
</b:includable>
</b:widget>
Step 3

Replace the above code with the following code.

<b:widget id='Label1' locked='false' title='Labels' type='Label'>
<b:includable id='main'>
<b:if cond='data:title'>
<h2><data:title/></h2>
</b:if>
<ul>
<script type='text/javascript'>
var labelnum = 0;
<b:loop values='data:labels' var='label'>
if (<data:label.count/> &gt; 2) {
document.write(&quot;<li><a expr:href='data:label.url + "?max-results=100"'
rel='nofollow'><span><data:label.name/></span></a>(<data:label.count/>)</li>&quot;);
}
</b:loop>
</script>
</ul>
<b:include name='quickedit'/>
</b:includable>
</b:widget>

The code above will only show labels with more than two posts. To increase number of labels increase the number two in this code :
if (<data:label.count/> &gt; 2) {
Read more

You keep cool Labels in your wonderful blog posts. Do you know the importance of Label ?Whenever people search a Keyword similar to your Post label in different Search engines it will take them to your blog Label Page. Suppose People searched for blogger Templates and visit your blog's Blogger Templates Label Page and you have 20 posts labeled Blogger Templates then all your 20 posts will be displayed in same Page . People will close your blog window after getting required information without visiting other 20 Pages. Oh! what a traffic loss . You may say it.

The above example is not only applicable in Label but also applicable in Archives . You may have 25 posts in January and when people clicked on Month January all the 25 posts will be displayed in the same page .you will get single traffic from there though you have expected more than 20 Traffic from there . Oh! what a Traffic Loss you may say again. Keeping your words in mind Bloganol brings you the solution of this situation. Here comes the blogger hack to show Only post Titles at Label and Archive Pages.

I got this great blogger hack in Thirdworldchaos. Thirdworldchaos is a blog that brings you cool blogger tips, logger hacks and different things that a blogger must need. Although this hack is not so hard to install as expected . I found this hack very easy you may also say so. Now lets start the Installation of This hack .But before starting this hack please go to your blog Edit Html Tab , Expand your Template and follow the steps that follows below.

Step1

Search for the following code in your Template.

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

Step 2

Replace the above code from step 1 with the follow lines of code.

<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>

Step 3

Save you Template. If you liked this post then please leave a comment
on us or Subscribe to us.

Hope you have a Good day.

Read more