Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save plugin-republic/68fd86360d9e66e2c141780137c31332 to your computer and use it in GitHub Desktop.
Save plugin-republic/68fd86360d9e66e2c141780137c31332 to your computer and use it in GitHub Desktop.
<?php
/**
* Include grouped products in Products Categories child products
*/
function demo_get_products_for_cats_args( $args ) {
$args['type'] = array( 'simple', 'variable', 'grouped' );
return $args;
}
add_filter( 'pewc_get_products_for_cats_args', 'demo_get_products_for_cats_args' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment