This topic has 10 replies, 3 voices, and was last updated 9 years, 11 months ago by Anonymous.
Viewing 11 posts - 1 through 11 (of 11 total)
We’ll consider taking a closer look in to this and will let you know soon.
I used w3c validator to validate your website and it shows “Sorry! This document cannot be checked.” It seems that your site is compressed. It might be problem with one of your compressor plugin. Try disabling the plugins one by one and see.
We have found the solution for this. Add the below code in functions.php at the last.
function ja_remove_hentry( $class ) {
$class = array_diff( $class, array( 'hentry' ) );
return $class;
}
add_filter( 'post_class', 'ja_remove_hentry' );
After that, open atp_generator.php file which is located in hostmev2/framework/common. Find for this function “postmetaStyle” and replace that function with the below function.
// P O S T M E T A D A T A
//--------------------------------------------------------
function postmetaStyle() {
global $format;
ob_start();
$out = '<div class="post-metadata">';
echo '<span class="date updated">';
the_time("M j, Y");
echo '</span class="vcard author author_name"><span class="fn">';
the_author_posts_link();
echo '</span></span><span>';
the_category(', ') ;
echo '</span>';
if ( get_option( 'atp_commentstemplate' ) == "posts" || get_option( 'atp_commentstemplate' ) == "both" ):
echo '<span>';
comments_popup_link( __( '0 Comment', 'THEME_FRONT_SITE' ), __( '1 Comment', 'THEME_FRONT_SITE' ), __( '% Comments', 'THEME_FRONT_SITE' ) );
echo '</span>';
endif;
$out .= ob_get_clean();
$out .= '</div>';
return $out;;
}
This is what we see at our end in google webmasters with zero results.
Viewing 11 posts - 1 through 11 (of 11 total)
You must be logged in to reply to this topic.