LEARN BLOGGING EASY - By Abhijit Patil
  • Home
  • About
  • Sitemap
  • Disclaimer
  • Contact
  • Trending Now! ▼
    • [T.E] Computer Engineering Syllabus
    • CRICKET PEPSI IPL 2015 Patch
    • Theory Of Computation
  • Write for Us!
Home » Blogging Tips » Blogging Tricks » Removing author name from blog posts » Removing Date & time from blog posts » How to remove/hide author name and date-time from your blogger blog posts permanantly?

How to remove/hide author name and date-time from your blogger blog posts permanantly?

Posted by BA
» Blogging Tips, » Blogging Tricks, » Removing author name from blog posts, » Removing Date & time from blog posts
» Tuesday, June 24, 2014

Hi ! Today we will see the solution of one of the main problems faced by bloggers while they post on their blogs. Yes, it's the privacy set-up for bloggers i.e the author name and date-time settings. Many bloggers earn revenue with blogs which are entertainment or another content where the author doesn't want his/her name on the blog. Also, due to some reasons, bloggers also don't want their posts date & time to be showed.So, let's see how to remove the name of author and date-time of blogs posts.

The Simplest way to remove the author name and date & time from blog's posts is that you should follow the following steps:

1]  Go to your blogger dashboard.
2] Click on Layout > Blog Posts> EDIT.

After Clicking on Blogs Posts edit, a window will appear with options like as follows,
How to remove author name and date and time from your blogger blog posts?
Blog Posts 'EDIT' Options

As you can see, I have removed all the options as 'posted by' and 'posted at' with 'posted on' which will remove the author's name from blogs posts with date-time too.

Another method to remove author's name and blog's date and time is to remove it by editing your HTML template.
..........................................................................................................................................
Find for "<span class='post-author vcard'>" 

How to remove author name and date and time from your blogger blog posts from blogger template.
Open this image in new tab, to view in good HD resolution


............................................................................................................................................
<span class='post-author vcard'>
                <b:if cond='data:top.showAuthor'>
                  <b:if cond='data:post.authorProfileUrl'>
                    <span class='fn' itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'>
                      <meta expr:content='data:post.authorProfileUrl' itemprop='url'/>
                      <a expr:href='data:post.authorProfileUrl' rel='author' title='author profile'>
                        <span itemprop='name'><data:post.author/></span>
                      </a>
                    </span>
                  <b:else/>
                    <span class='fn' itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'>
                      <span itemprop='name'><data:post.author/></span>
                    </span>
                  </b:if>
                </b:if>
              </span>

              <span class='post-timestamp'>
                <b:if cond='data:top.showTimestamp'>
                  <data:top.timestampLabel/>
                  <b:if cond='data:post.url'>
                    <meta expr:content='data:post.canonicalUrl' itemprop='url'/>
                    <a class='timestamp-link' expr:href='data:post.url' rel='bookmark' title='permanent link'><abbr class='published' expr:title='data:post.timestampISO8601' itemprop='datePublished'><data:post.timestamp/></abbr></a>
                  </b:if>
                </b:if>
              </span>
............................................................................................................................

Read Carefully, you just need to add the following codes before and after the bolded reddish line named <span=''> and </span>.


<b:if cond='data:blog.url != "URL OF Selected Post"'>
<span class='post-author vcard'>
                <b:if cond='data:top.showAuthor'>
                  <b:if cond='data:post.authorProfileUrl'>
                    <span class='fn' itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'>
                      <meta expr:content='data:post.authorProfileUrl' itemprop='url'/>
                      <a expr:href='data:post.authorProfileUrl' rel='author' title='author profile'>
                        <span itemprop='name'><data:post.author/></span>
                      </a>
                    </span>
                  <b:else/>
                    <span class='fn' itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'>
                      <span itemprop='name'><data:post.author/></span>
                    </span>
                  </b:if>
                </b:if>
              </span>

              <span class='post-timestamp'>
                <b:if cond='data:top.showTimestamp'>
                  <data:top.timestampLabel/>
                  <b:if cond='data:post.url'>
                    <meta expr:content='data:post.canonicalUrl' itemprop='url'/>
                    <a class='timestamp-link' expr:href='data:post.url' rel='bookmark' title='permanent link'><abbr class='published' expr:title='data:post.timestampISO8601' itemprop='datePublished'><data:post.timestamp/></abbr></a>
                  </b:if>
                </b:if>
              </span>
</b:if>
............................................................................................................................
Now, You are all done! Enjoy blogging! If you still face any problems or have any queries feel free to comment.
............................................................................................................................

ADS HERE !!!

COMMENT POLICY: We’re pleased to see your comment here. However, Please Keep in mind that all comments are moderated manually by humans according to our comment policy. Using Keywords and links to your blogs or websites in the name field area is forbidden. Let’s enjoy a personal and meaningful conversation. Do not break the rules of comment policy.

Newer Post
Older Post
Home
Subscribe to: Post Comments (Atom)

Popular Posts

  • Third Year [T.E] Computer Engineering Pune University 2012 Course Syllabus
    T.E Computer (Pune University) [2012 Pattern/Course] Syllabus and Subjects : SEM-I Subjects for  semester 1  of T.E Computer engg [201...
  • Download CRICKET PEPSI IPL 2015 Patch For EA Sports Cricket 07
    EA SPORTS CRICKET 07 A2 STUDIOS IPL GAME PATCH  DOWNLOAD Today's post will be fun for 'gamers' as they will love the new IPL...
  • Theory Of Computation : Computer Engineering 5th Sem
    Theory of computation is a subject in computer science which deals with how efficiently a problem can be solved using a algorithm on a  ma...
  • The 6 Best Footer Designs For Blogger Template
    The 6 Best Footer Designs For Blogger Template Many of us are interested in designing their blogger template on their own. So, we design eve...
  • What is Bluestacks? How to use android apps On PC (Computer/Laptop)
      WHAT IS BLUESTACKS ? Bluestacks App Player For PC Bluestacks allows us to run all android applications on windows operating syste...
  • What is On-Page SEO and what are On-Page SEO Methods?
    What is On-Page SEO? 1) On-Page Seo  : It is  where you optimise elements of your site in an effort to increase your search ranking. U...
  • Write a shell program to convert all lowercase letter in a file to uppercase letter
    QUE: Write a shell program to convert all lowercase letter in a file to uppercase letter. ANS - clear         echo "Menu" ...
  • How to remove/hide author name and date-time from your blogger blog posts permanantly?
    Hi ! Today we will see the solution of one of the main problems faced by bloggers while they post on their blogs. Yes, it's the privacy...
  • Bidvertiser Advertising Adnetwork Review, Bidvertiser Payment Proof 2014
    Today, we will review an advertising network for our bloggers named 'Bidvertiser'. Don't worry if you have been banned or disab...
  • How to remove Subcribe to posts atom from blogger? Remove it permanantly from Blog
    Today, we will see that how can we design our blog and keep it clean and neat. So, many bloggers have thought of removing the 'subcribe...

CATEGORIES

  • Android
  • Big Data
  • Chrome Browser Tricks
  • Computer Engineering
  • Database Management Systems Applications
  • Download Youtube Videos
  • Hive
  • IPL 2015 EA Sports Cricket Game
  • Programming Basics
  • SEO
  • Top 10 Blogging Templates
  • Tutorials For Bloggers
  • Website Designing
  • Website Development
  • Widgets

ABOUT LBE

WHAT'S LBE?


Learn blogging easy often said (LBE) is a blog where you would be served with the finest of tech articles and other trending articles. The blog is a source of articles useful for computer engineering and other blogging topics. Started with a vision to provide good tech articles, we would do better and better day by day. Thank you all visitors for making this blog a success. We are thankful for your co-operation. Stay tuned and keep blogging :)

HEY VISITOR!

This is Abhijit Patil, an enthusiast geek blogger from Pune city (India), mostly interested in writing tech articles. Certified HTML/CSS web developer, also likes programming and tech niche. More importantly an SEO lover.

LBE QUOTE

You are what you think!

Copyright © | LEARN BLOGGING EASY - By Abhijit Patil | All rights reserved

↑