Yes, I do know about this thread – http://wordpress.org/support/topic/google-structured-data-missing-required-field-authorship-thumbnails-gone?replies=13#post-5044548
The tutorial they mention on that page is not perfect and doesn’t completely work as this theme’s coding is different.
Having the same problems here.
Error: Missing required field “entry-title”.
Error: Missing required field “updated”.
Error: Missing required hCard “author”.
Acknowledgement or a possible fix for the problem would be nice.
For “entry-title” change in Single.php
This line:
<h1 class="post-title"><?php the_title(); ?></h1>
To this
<h1 class="post-title entry-title"><?php the_title(); ?></h1>
I have made all the necessary amendments to the single.php file, the errors previously mentioned appear under the ‘bookmarks’ section in the hatom-feed.
I can’t for the life of me find out which bit this relates to and what else requires editing.
Same here. Would appreciate any help.
N/A
(@vishkugeta)
Anyone figure out a solution to this? I have the same problem.
Same here …. Tried de solution from Roberto, but that didn’t work (for me.)
N/A
(@vishkugeta)
I figured out how to fix these two, but not the hCard author one:
Error: Missing required field “entry-title”.
Error: Missing required field “updated”.
In content.php, search for “post-title” and then add “entry-title” after it so that the line becomes this:
<h2 class="post-title entry-title">
Then search for “post-date” and change the line to this:
<p class="post-date date updated"><?php the_time('j M, Y'); ?></p>
Do the same thing for content-featured.php and those two errors should go away.
Vishkugeta
works for me as well….thanx a lot for your solution.
N/A
(@vishkugeta)
No problem. Does anyone know how to fix the hCard “author” error?
Here is an article about this problem and microformats in general:
http://www.lahtela.com/hueman-theme-google-authorship/
Hope it helps.
@taikahessu
Thanx a lot for your contribution…. i tried to give it all, but unfortunately still got the : Missing required hCard “author” in google webmastertools.
Greetings…
Strange thing for me is that I added this code
<p class=”post-date date updated”><?php the_time(‘j M, Y’); ?></p>
But it didn’t make a difference on the Error: Missing required field “updated”.
I added the code to both content.php and content-featured.php
Am I missing something?
Hey everyone,
I got the Error: Missing required hCard “author”. FIXED!!
Go to single.php and search for this line <?php the_content(); ?>
After that line add the code
<span class=”vcard author”><span class=”fn”>
by <a href=”https://plus.google.com/b/110952166677946651102/110952166677946651102″
rel=”author”><?php the_author() ?>
</span></span>
The numbers will be your google+ profile ID
Now if I could only get the Error: Missing required field “updated” fixed.
@thespinsterz
Try adding a tag with only that specific parameter class=”updated”, like:
<span class=”updated”><?php the_modified_date(‘F j, Y’); ?></span>
I noticed some weird differences when using multiple class parameters. I recall that it worked only in some cases…