Hello,
Theme panel -> Template settings -> Breadcrumbs -> Show article title: Good for SEO, show or hide?
Similarly:
Theme panel -> Post settings -> Post and Custom Post Types -> Show categories tags: show or hide?
Thank you for your support!
Hi,
I am no expert in SEO unfortunately, maybe some other users can share their experience in this matter. You could also check some guides concerning SEO and breadcrumbs
– https://www.searchenginejournal.com/breadcrumbs-seo/255007/
– https://elite-strategies.com/breadcrumbs-seo/
The category tags are simple links to the categories the post has.
Thanks
Hi,
I’d like to hide the titles from the breadcrumbs and I see that there is an option for this in the theme panel settings Template settings > Breadcrumbs – last oprion.
However when I switch off this button the titles are being hidden only on wordpress post pages. I don’t have a separate theme for the woocommerce section so product pages should be using the same breadcrumbs, technically. But the title there is staying.
Is there a way to remove the name of the products from the breadcrumbs using some custom code?
Thanks
Hi,
@DaveS There is a way how you could actually remove the product name from the woocommerce breadcrumbs, try this code in the theme or child theme functions file
add_filter( 'woocommerce_get_breadcrumb', 'ed_change_breadcrumb' );
function ed_change_breadcrumb( $breadcrumb ) {
if(is_singular()){
array_pop($breadcrumb);
}
return $breadcrumb;
}
Before – http://prntscr.com/ogmbgr and after – http://prntscr.com/ogmbt4
Seems to work for me, I could give you a CSS code as well if needed.
Thanks
Hello, @lcsrn,
If you want only to hide the post title, then if you use a Single Post Template from Cloud Library, you can delete the title of the post edit with tagDiv Composer and with right-click you can delete it => https://www.screencast.com/t/pQaeyeBayQ
If you use Standard Post Template, then you need to use a custom code CSS =>
.td-post-title
{
display:none!important;
}
This code needs to be set in Theme Panel> Custom code> Custom CSS.
Hope this helps you!
Thank you!