17 March 2011

Make Blogger Post Title Unclickable In Single Post Page


If you want to make your blog post unclickable then this perfect for you. By replacing this bellow code you can make your blog post nonclickable. If you will make your blog post nonclickable and then add a ads bellow it i think it will be more better for making profit from blog. So let see how to do that -

For Blogger Blog:
01. Go to Layout -> Edit HTML and click on Expand Widget Templates
02. Now look for something similar to this code in your template:

<b:if cond='data:post.title'>
<h2 class='post-title entry-title'>
<b:if cond='data:post.link'>
<a expr:href='data:post.link'><data:post.title/></a>
<b:else/>
<b:if cond='data:post.url'>
<a expr:href='data:post.url'><data:post.title/></a>
<b:else/>
<data:post.title/>
</b:if>
</b:if>
</h2>
</b:if>


03. And Replace It with:

<b:if cond='data:blog.pageType != "item"'>
<h2 class='post-title entry-title'>
<a expr:href='data:post.url'><data:post.title/></a>
</h2>
<b:else/>
<h2 class='post-title entry-title'>
<data:post.title/>
</h2>
</b:if>
05. Now Save it and See how it work.

For Wordpress User :
01. In your Wordpress Admin Dashboard, in left hand side, click on Appearance -> Editor02. Now Click on Single.php from your right hand sidebar Theme Files.
03. Search for:
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>

And Replace It with:
<h2><?php the_title(); ?></h2>
Save it. Now when you will post a new post. It will be unclickable.

Get Free Updates:
Note : You will find a confirmation link in your inbox or junk folder

0 comments:

Post a Comment

Twitter Delicious Facebook Digg Stumbleupon Favorites More