Pages

Showing posts with label Google Blogger. Show all posts
Showing posts with label Google Blogger. Show all posts

Friday, October 10, 2014

Webmaster tool error regarding BlogID and PostID with Google Blogger

If In the rich snippets tool of google webmaster tools user get an error related to blogid and post id. Given below are some examples:

Error: Page contains property "blogid" which is not part of the schema.
Error: Page contains property "postid" which is not part of the schema.

For fixing this errors you can delete these codes from your blog template.

For deleting this codes follow the above steps:
Make backup of your template.
Go into your template code.
search for below codes and delete them from the entire template and save the template..

<meta expr:content='data:blog.blogId' itemprop='blogId'/>
<meta expr:content='data:post.id' itemprop='postId'/>

After deleting these codes from your blog template you can check your structured data in rich snippets tool. If you still get the same error then try deleting all the codes given above from your blogger template. You can re check this here Rich Snippet testing tool.

Wednesday, October 8, 2014

Webmaster Tools errot "Warning: Missing required field "updated"" with Google Blogger

When you check your blog hosted with Blogger for Google Authorship with Rich snippet testing tool mostly you get two common warning and error messages 'Warning: Missing required field "updated".' and 'Warning: Missing required hCard "author".

Warning: Missing required field "updated"

Note: Before making any changes to the template please take the backup. Link given below will help you.

Go to Blogger Dashboard › Select Blog › Click on Template › Proceed › Edit HTML

Now press Ctrl+F to find the code timestamp-link   or  published   like below

<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>

Now care fully change it to the code below

<a class='timestamp-link' expr:href='data:post.url' rel='bookmark' title='permanent link'><abbr class='updated published' expr:title='data:post.timestampISO8601'><data:post.timestamp/></abbr></a>

Now have a smile!


You can re check this here Rich Snippet testing tool.