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

    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.

    #722502

    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

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