Hi there,
Please change this code,
function add_hentry_class($classes){
if ( x_is_product() ) {
$classes[] = 'hentry';
}
return $classes;
}
add_filter('post_class', 'add_hentry_class');
to this,
function add_hentry_class($classes){
if ( is_search() ) {
$classes[] = 'hentry';
}
return $classes;
}
add_filter('post_class', 'add_hentry_class');
The hentry is not applied on search page items. And your FTP isn’t working, can’t connect to it.
Thanks!