Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1001775

    test Google webmaster tool
    “The property ImageObject is not recognized by Google for an object of type WebPage.”

    #1001777

    Hey bborsi,

    Please try to add following code to your child theme functions.php and check your website again:

    
    add_filter('avf_markup_helper_attributes', 'avf_markup_helper_attributes_modified', 10, 2);
    function avf_markup_helper_attributes_modified($attributes, $args) {
    	if($args['context'] == 'image') {
    	    $attributes['itemprop'] = 'image';
    	}
    	return $attributes;
    }
    

    Best regards,
    Dude

    #1002177

    Thank you will you enter the change in the next update?

    #1002378

    Hi,

    I’ll check if there’re any side effects. But we’ll probably include it with one of the upcoming updates.

    Best regards,
    Dude

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