Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #262585

    Hey guys,

    I researched this for a couple of hours without luck.

    I just want to make sure all errors are fixed that are reported from the webmaster tools area.

    For the Author page only, I’m getting Error: Missing required hCard “author”. But for the blog post page and homepage, everything is working just fine! How would I go about fixing this? Author page.

    My second question is about the difference of depth between the Hatom feeds belonging to the fullscreen masonry blog display and the magazine display. It seems like the Magazine display doesn’t have a structured Hatom Feed at all. When I replaced the Masonry blog display with the Magazine display, the google search result stopped display “By: Name Example” in the search listing.

    Fullscreen Masonry Blog hatom feed example:
    entry-title: Example Example Example Example
    entry-content: Example Example Example Example
    updated: May 7, 2014
    author:
    fn: by Example Example

    Should I switch back to the Masonry Blog because of this?

    Thanks for the help!

    #263175

    Hey cyrusis!

    Open up wp-content/themes/enfold/includes/loop-author.php and replace

    
                            if(!empty($cats))
                            {
                                echo "<span class='text-sep'>/</span>";
                                echo '<span class="blog-categories minor-meta">'.__('in','avia_framework')." ";
                                echo $cats;
                                echo '</span>';
                            }
    

    with

    
                            if(!empty($cats))
                            {
                                echo "<span class='text-sep'>/</span>";
                                echo '<span class="blog-categories minor-meta">'.__('in','avia_framework')." ";
                                echo $cats;
                                echo '</span><span class="text-sep text-sep-cat">/</span>';
                            }
    
                        echo '<span class="blog-author minor-meta">'.__('by','avia_framework')." ";
                        echo '<span class="entry-author-link" '.avia_markup_helper(array('context' => 'author_name','echo'=>false)).'>';
                        echo '<span class="vcard author"><span class="fn">';
                        the_author_posts_link();
                        echo '</span></span>';
                        echo '</span>';
                        echo '</span>';
    

    2) Yes, the magazine template doesn’t display the author yet. I’ll ask Kriesi to include the author name. Probably we’ll hide it by default though to preserve the layout/design.

    Regards,
    Peter

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.