• Hi There,

    This plugin seems to be causing an error in Google Structured Data.
    Specifically, we get “One of name or item.name must be provided.” for ListItem 1 in BreadcrumbList.

    Disabling the plugin resolves the issue and @type becomes ‘Unspecified Type’ instead of ‘Thing’.

    What could be causing this issue? When can you fix this?

    Thanks.

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author YITHEMES

    (@yithemes)

    Hi there,
    it is very strange, this plugin do not manage this things
    do you still have this issue with another theme and Catalog Mode plugin?

    Have a nice day

    Thread Starter neko_in_space

    (@olgri)

    Hi,
    I found that removing the following code in the theme, fixes the issue as well:

    
    add_filter( 'woocommerce_breadcrumb_defaults', 'custom_change_breadcrumb_home_text' );
    function custom_change_breadcrumb_home_text( $defaults ) {
        // Change the breadcrumb home text from 'Home' to an empty space (add an icon using ::before in css instead)
    	$defaults['home'] = ' ';
    	return $defaults;
    }
    

    Not sure why disabling Catalog Mode plugin also fixed the issue though.

    Plugin Author YITHEMES

    (@yithemes)

    Hi @olgri really strange.
    I checked that filter but is in a part that is not interested by the plugin

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘BreadcrumbList error in Google Structured Data’ is closed to new replies.