Skip to content

Instantly share code, notes, and snippets.

@goliver79
Last active August 29, 2015 13:56
Show Gist options
  • Save goliver79/8802282 to your computer and use it in GitHub Desktop.
Save goliver79/8802282 to your computer and use it in GitHub Desktop.
[WOOCOMMERCE] Show empty categories
<?php
// WooCommerce Code
// Show empty categories
// https://gist.github.com/renegadesk/3926139
// https://gist.github.com/dalemoore
add_filter('woocommerce_product_subcategories_args', 'woocommerce_show_empty_categories');
function woocommerce_show_empty_categories( $cat_args ){
$cat_args[ 'hide_empty' ] = 0;
return $cat_args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment