Hi,
by chance, you found right person on this forum.
I’m dealing with SEO more than 2 years (WPress even longer) and I’ll give you some basic hints on this:
-no, it is not “a smaller issue”
-problem is known as “google authorship issue” and conflicts with WordPress core (not with Hueman theme) – all WordPress themes has this conflict
-myself looking for solution from last winter and found no complete solutions (honestly, occupied with lot of other things)
-try “googling” things like
-“wordpress” google webmaster tools author and updated errors
-rich snippets
-Structured Data (Author/Updated) Errors In Google Webmaster Tools
-https://ww.wp.xz.cn/support/topic/google-structured-data-missing-required-field-authorship-thumbnails-gone – same problem in WPress
-http://www.lahtela.com/hueman-theme-google-authorship/ – Hueman theme, but not full solution
That’s it – this forum is not place for such issue (we will stopped by admins).
I’d like to contact you if you find solution, and opposite – but have no idea where.
Cheers, Mike
Hi,
It’s same here, Not able to find right answer
Hi,
For some time I try to fix “google structured data missing elements” problems on Human Theme and I find some solution (only hCard “author” in related posts and homepage still not fix, but I working on this).
The example is my blog – Gracz.org:
http://www.google.pl/webmasters/tools/richsnippets?q=http%3A%2F%2Fgracz.org%2Fprzygoda-w-red-creek-valley-recenzja-the-vanishing-of-ethan-carter%2F
——————————————————————
You need to change:
——————————————————————
content.php
content-featured.php
<h2 class=”post-title”>
change to:
<h2 class=”post-title entry-title”>
<p class=”post-date”><?php the_time(‘j M, Y’); ?></p>
change to:
<p class=”post-date date updated”><?php the_time(‘j M, Y’); ?></p>
——————————————————————
single.php
<h1 class=”post-title”><?php the_title(); ?></h1>
change to:
<h1 class=”post-title entry-title”><?php the_title(); ?></h1>
<p class=”post-byline”><?php _e(‘przez’,’hueman’); ?> <?php the_author_posts_link(); ?> · <?php the_time(get_option(‘date_format’)); ?></p>
change to:
<p class=”post-byline”><?php _e(‘przez’,’hueman’); ?> <span class=”vcard author”> <span class=”fn”><?php the_author_posts_link(); ?> </span></span> · <span class=”post-date date updated”><?php the_time(get_option(‘date_format’)); ?></span></p>
——————————————————————
related-posts.php
<p class=”post-date”><?php the_time(‘j M, Y’); ?></p>
change to:
<p class=”post-date date updated”><?php the_time(‘j M, Y’); ?></p>
<h4 class=”post-title”>
change to:
<h4 class=”post-title entry-title”>
——————————————————————
I hope this should help 🙂