Viewing 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • #1016681

    Need help regarding breadcrumb. Please kindly check the private content.

    #1016915

    Hey Sovik,

    Thank you for using Enfold.

    Did you set “Buy CSGO Account” page as parent of the “CSGO Prime Accounts” page? Parent pages will automatically display in the breadcrumb.

    Best regards,
    Ismael

    #1016998
    This reply has been marked as private.
    #1017199

    Hi Sovik,

    Can you give us temporary admin access to your website in the private content box below, so that we can have a closer look?

    Best regards,
    Victoria

    #1017233
    This reply has been marked as private.
    #1017875

    Hi sovik_rc,

    Best regards,
    Victoria

    #1017879

    Hello

    #1018547

    Any update please ?

    #1018743

    Hi,

    Thanks for the update.

    Use this filter in the functions.php file to unset the parent trail.

    add_filter( 'avia_breadcrumbs_trail', 'avia_breadcrumbs_trail_mod', 50, 2 );
    function avia_breadcrumbs_trail_mod( $trail, $args ) 
    {
    	if(is_tax('product_cat')) {
               unset($trail[1]);
            }
    	return $trail;
    }
    
    

    Best regards,
    Ismael

    #1018949

    Hello,

    Thank you so much for your reply. Is it a theme issue ? have you checked my permalinks settings as Victoria said that I have wrong permalink settings ?

    Regards
    Sovik

    #1019730

    Hi,

    It’s not a theme issue. The base shop page is included on the product and product category pages’ breadcrumbs by default. The filter above will remove it.

    add_filter( 'avia_breadcrumbs_trail', 'avia_breadcrumbs_trail_mod', 50, 2 );
    function avia_breadcrumbs_trail_mod( $trail, $args ) 
    {
    	if(is_tax('product_cat') || is_singular('product')) {
               unset($trail[1]);
            }
    	return $trail;
    }

    Use this one if you want to remove the base shop page on the single product pages.

    Best regards,
    Ismael

    #1019966

    Hello, Thank you so much.

    #1020141

    Hi,

    Yes, it will affect it a bit because crawlers also use breadcrumbs as additional info to read the structure of the page.

    Best regards,
    Ismael

    #1020299

    Hi, Thank you so much for your help.

    So, should I use default with SHOP ?
    or
    If I use that filter will my rank improve again once google re-crawl my site ? Actually I really don’t have idea which one is good for better SEO. Can you please suggest ?

    #1020569

    Hi,

    You don’t need to worry about it. Search engines will still be able to crawl your site with or without the breadcrumbs. Unfortunately, we can’t help you with the breadcrumb structure because that schema is not available in the theme by default and SEO is beyond the scope of support.

    // https://developers.google.com/search/docs/data-types/breadcrumb

    Best regards,
    Ismael

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