• Resolved Rneo83

    (@rneo83)


    To show all categories even those that have no products, it is very urgent.

Viewing 1 replies (of 1 total)
  • Plugin Author ndre

    (@ndre)

    Hi @rneo83,

    By default empty categories are hidden. In the newest version of the plugin you can use the following code to show empty categories:

    add_filter( 'show_categories_args', 'my_show_empty_categories' );
    
    function my_show_empty_categories( $args ) {
    $args[ 'hide_empty' ] = 0;
    return $args;
    }
    • This reply was modified 7 years ago by ndre.
    • This reply was modified 7 years ago by ndre.
Viewing 1 replies (of 1 total)
  • The topic ‘Catagories Not Showing’ is closed to new replies.