Removing the link from post titles from post page is a good thinking because it is there for nothing, if some one do click on it, it will redirect to the same page, which doesn't seems a professional work, so better to remove link from post titles when we are at the post page. It is also too easy to do this just follow the few steps below to do it.
- Login to Blogger Dashboard
- Click on the blog, and then click "Template" tab
- Click on "Edit HTML"
- Find the Following code
<b:if cond='data:post.url'>
<a expr:href='data:post.url'>
<data:post.title/>
</a>
<b:else/>
<data:post.title/>
</b:if>
- And Replace it with the following code
<b:if cond='data:post.link'> <a expr:href='data:post.link'><data:post.title/></a>
<b:else/>
<b:if cond='data:post.url'>
<data:post.title/>
</b:if>
- Finally Click on "Save template"
If you have any query, you can ask in the comments below. Thanks














