How to Hide Author Name in Blogger Post



How to Hide Author Name in Blogger Post
Easy steps to remove the Author Name in blogger post
  • Again Go To Blogger >> Your Blog >> Template >> Edit HTML 
  • BackUp Your Template
  • Press Ctrl+F And Search For below Code


<span class='post-author vcard'>


  • Below the above code you'll see the code similar to the below one

<span class='post-author vcard'>
                <b:if cond='data:top.showAuthor'>
                  <b:if cond='data:post.authorProfileUrl'>
                    <span class='fn'>
                      <a expr:href='data:post.authorProfileUrl' rel='author' title='author profile'>
                        <data:post.author/>
                      </a>
                    </span>
                  <b:else/>
                    <span class='fn'><data:post.author/></span>
                  </b:if>
                </b:if>
             
 </span>


  • You have to add the below codes before and after the red text tags.


<b:if cond='data:blog.url != "URL Of Particular Post 1"'>
<span class='post-author vcard'>
                <b:if cond='data:top.showAuthor'>
                  <b:if cond='data:post.authorProfileUrl'>
                    <span class='fn'>
                      <a expr:href='data:post.authorProfileUrl' rel='author' title='author profile'>
                        <data:post.author/>
                      </a>
                    </span>
                  <b:else/>
                    <span class='fn'><data:post.author/></span>
                  </b:if>
                </b:if>
             
 </span>
</b:if> 


  • Replace the yellow highlighted text with the link of that posts, whose date, author name and time, you want to hide.
  • If you want to hide author name, date and time on more than one page then simply add do this in below way.


<b:if cond='data:blog.url != "URL Of Particular Post 1"'>
<b:if cond='data:blog.url != "URL Of Particular Post 2"'>
<b:if cond='data:blog.url != "URL Of Particular Post 3"'>
<b:if cond='data:blog.url != "URL Of Particular Post 4"'> 
<span class='post-author vcard'>
                <b:if cond='data:top.showAuthor'>
                  <b:if cond='data:post.authorProfileUrl'>
                    <span class='fn'>
                      <a expr:href='data:post.authorProfileUrl' rel='author' title='author profile'>
                        <data:post.author/>
                      </a>
                    </span>
                  <b:else/>
                    <span class='fn'><data:post.author/></span>
                  </b:if>
                </b:if>
             
 </span>
</b:if> 
</b:if>
</b:if>
</b:if> 

Now Save Your Template And You are Done
Read more ...

how to hide labels in blogger


Hide labels from blogger post footer ! just very easy as you want.



Many people want or prefer to hide labels or tags from the post footer ,therefore we are going to the following steps !

Here is how to do it.
Click 'Layout' tab and click the 'Edit HTML' Subtab. Now click 'Expand Widget Templates' to expand the CSS code. Find the following code in your template.


<b:if cond='data:post.labels'> 
          <data:postLabelsLabel/> 
          <b:loop values='data:post.labels' var='label'> 
            <a expr:href='data:label.url' rel='tag'><data:label.name/></a><b:if cond='data:label.isLast != &quot;true&quot;'>,</b:if> 
          </b:loop> 
        </b:if>

First take a backup of your template and after that delete this portion from your template. Now no labels will come beneath your posts. I hope this will help you.

If you are facing any problems regarding this comment bellow the post and i will be happy to answer you ..
Read more ...

how do i blog


How to Create a Blogger Blog ?



This is for those who are new to blogging especially to a friend who loves to learn and explore.

1. Blogspot.
2. Wordpress.


These are the major blogging platforms which help you create a free Blog.  But if you are confused which one to start with then go for Blogger. It has many features which wordpress doesn’t have and the best part is that Blogger allows you to customize your template in any way you like by editing the CSS style sheet! So what are you looking? Start blogging now and build up a new cyber life. Best of luck!

1. Blogspot.

Step 1. Sign up at blogger.com or Google Plus.

Step 2. You will be prompted to add a profile photo or you can go to the Next Step

Step 3. Click  "Back to Blogger" on the next page.


Step 4. A welcome page will be loaded. Click "Continue to Blogger".





Step 5. On the new page, you can now create your blog. Click "New Blog".







Step 6. Type the title of your blog, the address (url) and the template.   The blog name and the url should be the same. For example, My blog's url is http://how-d.blogspot.com/, my blog's name is How do i blog so as not to confuse the readers/visitors but of course it's up to you if you want them to be different from each other. For the Template, if you're a minimalist, select Simple. Any template is ok, you can change it later and modify the design. Click "Create Blog" at the bottom.



Step 6. You're now ready to create your new post! Click Start Posting and you're good to go.





2. Wordpress - click here to continue



Read more ...