How To Fix Error Missing Updated/Missing Author in Blogger
1. How to fix missing author
First thing you need to do, is to back up your template
Step 1: Login to blogger dashboard => Template => Edit Template => click anywhere inside the code area and press Ctrl + F to open the search box and search for 'post-author vcard'
when you hit Enter, it will show something like this
<div class='post-header-line-1'/>
<span class='post-author vcard'>
Step 2: Just replace the following code at the second line above
<span class='post-author vcard'>
<b:if cond='data:top.showAuthor'>
<data:top.authorLabel/>
<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 cond='data:top.showAuthor'>
<data:top.authorLabel/>
<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>
2. How to fix redquired file "updated"
Step 1 : Now search for <data:post.timestamp/>
Step 2: You will find it more than one, just replace the line above with the following code:
<span class='updated'><data:post.timestamp/></span>Note: If you find the tags in step 1 three times, you have to replace those with the code which I mentioned in step 2
Step 3 : Save template
Final word
If you still have any questions, don't hasitate to contact me I will kindly repply at the suitable time.
Enjoy!
How To Fix Error Missing Updated/Missing Author in Blogger
Reviewed by Unknown
on
3/23/2015 06:39:00 PM
Rating:
One thing to reinforce: data:post.timestamp occurs TWICE in the blogger template--once for mobile and once for desktop. You have to apply the "updated" fix for the desktop copy (although it won't hurt to do both). Otherwise you'll make the change and wonder why it had zero effect.
ReplyDelete