Hi @td8000
1. If you do not want to show the background image in the product category page, please remove the Category thumbnail: https://cl.ly/6dd924909c2a
Or add this code to Customize => Additional CSS:
body.tax-product_cat .page-header { background-image: none !important; }
2. Unfortunately, we support the Breadcrumb NavXT plugin only now. You can find the onepress_breadcrumb() function in the OnePress theme in onepress/inc/template-tags.php
then replace this code:
if ( function_exists( 'bcn_display' ) ) {
?>
<div class="breadcrumbs" typeof="BreadcrumbList" vocab="http://schema.org/">
<div class="container">
<?php bcn_display(); ?>
</div>
</div>
<?php
}
with new code:
woocommerce_breadcrumb();
3. We don’t support a cart symbol/button on the right. But that is a good idea, we will keed in mind.
Hope it helps!
-
This reply was modified 7 years, 3 months ago by
FameThemes.
-
This reply was modified 7 years, 3 months ago by
FameThemes.
Thread Starter
td8000
(@td8000)
Great, Thanks a lot.
1. is solved.
2. I’go with the NavXT Breadcrumbs, they look better. How ca i disable the on certain pages?
3. What kind of cart symbol/plugin would you suggest then?
Greets, Tobi
Thread Starter
td8000
(@td8000)
Figured it out myself.
Thanks, thread can be closed.