-
AuthorPosts
-
October 1, 2018 at 4:54 pm #1016681
Need help regarding breadcrumb. Please kindly check the private content.
October 2, 2018 at 7:27 am #1016915Hey 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,
IsmaelOctober 2, 2018 at 11:53 am #1016998This reply has been marked as private.October 2, 2018 at 8:10 pm #1017199Hi 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,
VictoriaOctober 2, 2018 at 9:02 pm #1017233This reply has been marked as private.October 4, 2018 at 1:08 pm #1017875Hi sovik_rc,
Best regards,
VictoriaOctober 4, 2018 at 1:22 pm #1017879Hello
October 6, 2018 at 6:55 pm #1018547Any update please ?
October 8, 2018 at 1:55 am #1018743Hi,
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,
IsmaelOctober 8, 2018 at 12:08 pm #1018949Hello,
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
SovikOctober 10, 2018 at 4:27 am #1019730Hi,
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,
IsmaelOctober 10, 2018 at 2:53 pm #1019966Hello, Thank you so much.
October 11, 2018 at 4:38 am #1020141Hi,
Yes, it will affect it a bit because crawlers also use breadcrumbs as additional info to read the structure of the page.
Best regards,
IsmaelOctober 11, 2018 at 12:04 pm #1020299Hi, 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 ?October 12, 2018 at 4:57 am #1020569Hi,
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 -
AuthorPosts
- You must be logged in to reply to this topic.