If you decide to link your Blogger Profile to your Google+ profile, be aware that Author Name of your posts will also get replaced with your Google+ profile.
If you do not like this for whatever reason there is a way to change this behavior by modifying Blogger Template.
Before we start I need to warn you that the modification discussed here will change Author name to all your posts in the blog, so this tutorial is for those blogs with a single Author.
Anyway, here are the steps you need to do:
- As always when doing any modifications to the blogger template, your first step should always be to backup your current template . Go to Dashboard > Template and on the top right corner click on Backup / Restore button and choose Download full template.
- Still on the Dashboard > Template click on Edit HTML button and then on Proceed button. Code for your template will show up.
- Make sure that Expand Widget Templates is checked.
- Now you have to search for
data:top.showAuthorin the template.
NOTE:The easiest way to search for a piece of code is to use some source code editor. Personally I am using Notepad++. Just select whole code in template window (CTRL+A), copy the code (CTRL+C) and paste it into the source editor (CTRL+V)
- You should find two instances of
data:top.showAuthorin the template. First one is for Desktop devices and the second one is for Mobile devices. - Under
data:top.showAuthor(in both instances) you should see the code that looks something like this:<b:if cond='data:post.authorProfileUrl'> <span class='fn'> <a expr:href='data:post.authorProfileUrl' itemprop='author' rel='author' title='author profile'> <data:post.author/> </a> </span> <b:else/> <span class='fn'><data:post.author/></span> </b:if>
- Now all you need to do is replace
<data:post.author/>with a static text that you want to be displayed as Author Name.
Regarding the link you can either comment out anchor tag<a>to remove the link from your Author Name or just changehrefattribute so it doesn’t point to your Google Profile. You achieve that by removingdata:post.authorProfileUrland in its place put URL you think is appropriate, for example URL to your Facebook or Twitter profile.Note:Remember that the above changes of Author Name will happen on all the posts in your Blog.
- Find the second instance of
data:top.showAuthorand repeat steps 6 and 7. As mentioned before that second instance is used for mobile devices. If you cannot find this second instance, just skip this step as your template might be lacking mobile template code.
A Concrete example
Below is the modified code that I used for this blog when it was still on the Blogger Platform:
<span class='fn'> <a href='http://goo.gl/mgYqQ' itemprop='author' rel='author' target='_blank' title='author profile'> httpb<!--<data:post.author/>--> </a> </span>
First I commented out the Author code <data:post.author/> and in its place entered my nickname “httpb”. Regarding the anchor tag <a> I changed the link so that it points to my Google+ Page for this blog instead of my Google+ Personal profile Account.
if you find this article useful, please drop a comment or consider sharing either the article or the blog using the social icons.
UPDATE:
We took care of Author Name in our posts, but we still have to fix Author Name appearing in comments. Check my other article on this blog that tackles this problem.

Nice tips, will try later. Thanks!
Shiful Alam recently posted..Customer Relationship Management (CRM) with Blogging: How Is It Possible?
Liked the article. But one this I wanted to know apart from this. How can I also change my name in the comments. It is still showing me as the author while I reply to people comments on my blog.
Bhaskar Bharti recently posted..7 Foods That Boost Sexual Desire
I just added new post that deals with this specific issue. How to fix author in comments. Link is in the UPDATE section at the end of this article.
Thank you for your very helpful article. I visited here twice to restore the original style.
I was very annoyed about my name is shown on my post. Nowhere I could find to fix it. So I corrected it according to this post.
But few days later I found that it is because of the Google+. There was no choice to hide my real, full name if I use(never used but pressed yes on certain popup) Google+. So I deleted my Google+ account and using older style blogger id. Older syle is much flexible(at least on changing the author name at blogspot), how ridiculous!
tjPark recently posted..Structure of Korean Names
Thank you very much for taking time to make a comment.
When this blog was on Blogger Platform I too was annoyed when linking G+ account to the Blogger caused the change in Author information.
They should give user an option to turn off this behavior.