How to Remove, hide or delete Date Time Stamp Author from Blogger Blogspot.
There are two methods and solutions on how to hide date time stamp in Blogger Blogspot. It’s recommended that you use the first method as it’s the easiest and without any risk of breaking the template codes.
I. Removing Date Time Stamp through Page Element (Recommended)
- After login -> Layout -> Blog Posts / Posting Blog -> Edit (See Picture 1)
- At Post Page Options -> Uncheck everything you want to hide/remove including Post Time, Post Date, Post Author, Label, etc. (See Picture 2)
- Click Save. Done
Picture 1. Blog Posts / Posting Blog in Blogger Page Elements

Picture 2: Post Page Options

II.Removing Date Time Stamp through HTML Editing (Not Recommended)
Tip: (a) Use CTRL+F or F3 to Search for a Code inside the Template; (b) Enter the code you’re searching inside the “Find” box (b) Back up your template first by clicking Download Full Template
A. Removing Post Date
- After login -> Layout -> Edit HTML -> check Expand Widget Template
- Search for this code -> <data:post.dateHeader/>
- Delete it. Save Template. Done.
B. Removing Post Time
- Search for this code at #2
- <span class=’post-timestamp’>
<b:if cond=’data:top.showTimestamp’>
<data:top.timestampLabel/>
<b:if cond=’data:post.url’>
<a class=’timestamp-link’ expr:href=’data:post.url’ rel=’bookmark’
title=’permanent link’><abbr class=’published’
expr:title=’data:post.timestampISO8601′><data:post.timestamp/></abbr></a>
</b:if>
</b:if>
</span>
- Delete the code. Save Template. Done.
C. Remove Post Author
- Search for this code at #2
- <span class=’post-author vcard’>
<b:if cond=’data:top.showAuthor’>
<data:top.authorLabel/>
<span class=’fn’><data:post.author/></span>
</b:if>
</span>
- Delete it. Save Tempate. Done.