Quantcast
Channel: WordPress.org Forums » [WooCommerce] Support
Viewing all articles
Browse latest Browse all 104029

Elite Design Studios on "custom styling for woocommerce categories"

$
0
0

I was able to get categories to show outside of the loop by adding the code below to my functions.php file however it only works when the “Show subcategories on the shop page” box is checked in the catalog settings page. I feel like im in the right direction.

add_action( ‘woocommerce_before_shop_loop’, ‘woocommerce_product_subcategories’, 10 );
function woocommerce_show_categories($cat_args){
$cat_args['hide_empty']=0;
return $cat_args;
}

Viewing all articles
Browse latest Browse all 104029

Trending Articles