Hello jublong,
Thanks for your question. 🙂
I suggest you use a child theme http://codex.wordpress.org/Child_Themes or use css custom plugin like this: https://wordpress.org/plugins/simple-custom-css/ if you will customize your theme.
Add the code in your child theme’s style.css or using the plugin mentioned above.
.woocommerce-breadcrumb {
display: none;
}
Let me know if it helps! 🙂
Take care,
Calvin
You can also remove the markup by adding something like this to your child themes functions.php file:
add_action( 'init', 'jk_remove_storefront_breadcrumb' );
function jk_remove_storefront_breadcrumb() {
remove_action( 'storefront_content_top', 'woocommerce_breadcrumb', 10 );
}
Thanks guys, that worked.
Good for me too. Thank you
Great! That last one (in fucntions.php) worked for me too! (the css solution did not)
Any ideas how to create a little extra white space above the page title now that the breadcrumbs are gone?
I use Storefront 1.4.5.
Thanks!
You could try something like:
.site-header {
margin-bottom: 2.618em;
}
Add to your child themes style.css file, or custom css plugin.
You could try something like:
.site-header {
margin-bottom: 2.618em;
}
Add to your child themes style.css file, or custom css plugin.
That worked mighty fine…thanks!!