Hide uncategorized products from the shop page

I solved this problem based on code kindly provided by rynoldos (https://gist.github.com/rynaldos/a9d357b1e3791afd9bea48833ff95994) as follows: Include the following code in your functions.php file: /** Remove categories from shop and other pages * in Woocommerce */ function wc_hide_selected_terms( $terms, $taxonomies, $args ) { $new_terms = array(); if ( in_array( ‘product_cat’, $taxonomies ) && !is_admin() && is_shop() ) … Read more