Showing posts with label Remove Title. Show all posts
Showing posts with label Remove Title. Show all posts

Saturday, December 12, 2015

How To Remove Link From Post Titles For Blogger Simple Tricks

There are also some other ways to remove link from the Post title. But I think this one easy to for your blogger.
Go to Template > Edit HTML.

Find <b:if cond='data:post.url'> and delete the line of code just after the first occurrence of <b:if cond='data:post.url'>.

Delete this line of code: <a expr:href='data:post.url'><data:post.title/></a>

Add the following piece of code in place of the above deleted line of code:

<b:if cond='data:blog.url != data:post.url'> <a expr:href='data:post.url'><data:post.title/></a> <b:else/> <data:post.title/> </b:if>