The first thing you need to login into your blogger account and go to Templates >> Edit HTML (be sure you have taken a backup of your template, it is a good practice in case something went wrong you can use the backup) and search for the following code. You will find the below code somewhere near the BLOG1 Code.
<div class="date-outer">
Now correctly replace the above code with the following lines of coding by making sure you are exactly copying and pasting the right code. If you miss a single thing, then the code will not work and you may face some kind of errors.
<div class="date-outer"
<b:if cond='data:blog.pageType == "index"'>
<b:if cond='data:blog.searchQuery == ""'>
<b:if cond='data:blog.searchLabel == ""'>
<b:if cond='data:post.url == "Your-Post-Link"'> style='display:none;'</b:if>
<b:if cond='data:post.url == "ANOTHER POST URL"'> style='display:none;'</b:if>
</b:if>
</b:if>
</b:if>
>
After pasting the above code, now it is up to you which blog posts you would like to hide from your homepage. Replace Your-Post-Link with the URL of you post that you would like to hide from your homepage. You can hide multiple posts by adding more URLS in <b:if condition/> tag.
Congratulations: Once everything is done, save the template. Now go to your homepage and test if things are working according to the plan. If you follow the steps correctly, we are certain it would work just fine.
Alternative Method:
Every post has its own unique ID, so if we are able to find that unique id we can obviously apply display:none; CSS to hide it from our homepage. We have already written a tutorial on how you can find ID of your posts, so before moving ahead read that tutorial here.Once you got your Post ID, go to Blogger.com >> Template >> Edit HTML and search for the ]]></b:skin>, and just above it paste the following CSS code. Rememeber. Do not forget to replace post-1234567 with your own Post ID which you would like to hide from your homepage.
<style>
<b:if cond='data:blog.url == ... >
#post-1234567 {display:none}
</b:if>
<b:if cond='data:blog.searchLabel == ... >
#post-8903456 {display:none}
</b:if>
We hope this tutorial, may have helped you in learning a few techniques through which you can hide a post from your homepage. Since, we have used display:none; css so the search bots will continue to index it as it is not completely removed from the source code of your website.
Awesome brother ! .. Jazak Allah Khair ..
ReplyDeleteYou can also move the article to an older date easily.
ReplyDeleteSeriously the way you write your posts is simply amazing, i am very impressed by you, i want to say the words and the knowledge you put in the post both are very impressive, i want to thank you for sharing such a great post and want to say i going to subscribe to your posts.
ReplyDeleteTehcnology Eater
http://www.technologyeater.com/
Seriously the way you write your posts is simply amazing, i am very impressed by you, i want to say the words and the knowledge you put in the post both are very impressive, i want to thank you for sharing such a great post and want to say i going to subscribe to your posts.
ReplyDeleteTechnology Eater
http://www.technologyeater.com/
I can't find the code above
ReplyDeleteTry finding by this
Deletedate-outer
Hi,
ReplyDeleteNot working for me, any help,,
Yes what error you are facing?
Deletei didnt unsderstund how to hide more than one?
ReplyDeleteHi, You can hide more than one by finding their post ids and later on with display:none CSS. Please check the Alternative Method.
DeleteThank you brother...God bless you
ReplyDeleteCan you help me with this?
ReplyDeleteError parsing XML, line 49, column 1: The value of attribute "cond" associated with an element type "b:if" must not contain the '<' character.
Assalamu alikum please tell me that how to show pages on home page like u have ''recommended pages for you''' please help
ReplyDeletePlease follow this tutorial
Deletehttp://www.mybloggerlab.com/2013/09/how-to-display-related-articles-below-posts-in-blogger.html
Thank you! Works great & very useful.
ReplyDeleteNot working for me! Can you help me please?
ReplyDeleteCan't figure out what Skin tag is.. Any help?
ReplyDeleteTutorial updated.
Deletei want to my every post not show on my home page because i am working different categories is it possible here is my site please give me sugession
ReplyDeletehttp://onlinepakistanofficial.blogspot.com/
Hi,
DeleteHere's a fix for you
Add this code above </head> in your template
<b:if cond='data:blog.url == data:blog.homepageUrl'>
<style>
.Blog {
display: none;
}
</style>
</b:if>
Save Template.
Hi,
ReplyDeleteI want to remove all the recent posts from main page what should I do? I dont want any of the posts to be displayed on the main page...Please help
Add this code above </head> in your template
Delete<b:if cond='data:blog.url == data:blog.homepageUrl'>
<style>
.Blog {
display: none;
}
</style>
</b:if>
Save Template.