• td8000

    (@td8000)


    Hi there,

    i’ve got some difficulties with my woocommerce category page included in onepress theme.

    in the onepress titlebar i would like to see:

    – not the category image as background (but blank like all other pages)
    – instead of title the breadcrumbs on the left (WC Breadcrumbs Plugin installed but not visible).
    – a cart symbol/button on the right.

    Thanks a lot for help….

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author FameThemes

    (@famethemes)

    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="https://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 6 years ago by FameThemes.
    • This reply was modified 6 years 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.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Woocommerce issues’ is closed to new replies.