Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PluginRepublicSupport/88c28aed3ceb50907c5f26abb66c2e8b to your computer and use it in GitHub Desktop.
Save PluginRepublicSupport/88c28aed3ceb50907c5f26abb66c2e8b to your computer and use it in GitHub Desktop.
Hide child products' category if it's empty
<?php
/*** Hide child product category if it's empty ***/
add_filter( 'pewc_filter_item_start_list', function( $item, $group, $group_id, $post_id ) {
if ( $item['field_type'] == "product-categories" && empty( $item['child_products'] ) ) {
return false;
}
return $item;
}, 10, 4 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment