admin管理员组

文章数量:1122832

I am trying to make a product listing site using WooCommerce.

Now the system is when someone clicks on any category, they go to the subcategory page.

I want to add a sidebar with all product categories on the subcategory page. How can I do that?

Here is the link : /

I am trying to make a product listing site using WooCommerce.

Now the system is when someone clicks on any category, they go to the subcategory page.

I want to add a sidebar with all product categories on the subcategory page. How can I do that?

Here is the link : https://cctv.abmsrilanka.com/products/

Share Improve this question edited Mar 6, 2020 at 6:31 sleepingpanda 566 bronze badges asked Mar 6, 2020 at 6:02 RazuRazu 35 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 0

You would need to override the template in WooCommerce which displays the category page and add in your own sidebar / html.

woocommerce/templates/archive-product.php

You can read up on how to do this here: https://docs.woocommerce.com/document/template-structure/

Don't forget to add theme support in your functions.php file too.

function mytheme_add_woocommerce_support() {
    add_theme_support( 'woocommerce' );
}
add_action( 'after_setup_theme', 'mytheme_add_woocommerce_support' );

本文标签: categoriesHow to edit woocommerce subcategory page