What is this all about?
I get an error under the “Webpage” markup. But only when I check the blog categories. All other pages are fine.
Hey
Please go to enfold/includes/helper-markup.php file and find
//* Blog microdata
if (is_singular('post') || is_archive() || is_home())
{
$attributes['itemscope'] = 'itemscope';
$attributes['itemtype'] = 'https://schema.org/Blog';
}
and change it to
//* Blog microdata
if (is_singular('post') || is_archive() || is_home())
{
$attributes['itemscope'] = 'itemscope';
$attributes['itemtype'] = 'https://schema.org/Blog';
unset($attributes['itemprop']);
}
Best regards,
Yigit