Created
October 8, 2025 08:52
-
-
Save plugin-republic/68fd86360d9e66e2c141780137c31332 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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