Hi,
Any idea how I can remove the breadcrump at the top of the page?
Many thanks,
James
Hi,
Any idea how I can remove the breadcrump at the top of the page?
Many thanks,
James
Hi,
I suppose, the cheapest way would be to hide #top #wrap_all .bc-container-wrap with display:none in custom.css
But I'd like to addon here with some oppsite question:
Where would I have to do it, when I want to add the attribute itemprop="breadcrumb" to the breadcrumb?
Thanks
Tom
Hi James,
You can follow Tom's advice, you can add it either in Quick CSS (located in Replete > Theme Options > Styling) or custom.css (located in wp-content/themes/replete/css):
#top #wrap_all .bc-container-wrap {
display: none;
}
@Tom: kindly open wp-content/themes/replete/framework/php/class-breadcrumb.php and find this code block (line 447):
/* Open the breadcrumb trail containers. */
$breadcrumb = '<div class="breadcrumb breadcrumbs avia-breadcrumbs"><div class="breadcrumb-trail">';
replace it with:
/* Open the breadcrumb trail containers. */
$breadcrumb = '<div class="breadcrumb breadcrumbs avia-breadcrumbs" itemprop="breadcrumb"><div class="breadcrumb-trail">';
Regards,
Ismael
Perfect, thanks guys!
This topic has been closed to new replies.