Last active
September 10, 2020 12:44
-
-
Save leewillis77/12c45eec3564cc91f97ec90cc02602a1 to your computer and use it in GitHub Desktop.
Add yith_bundle to list of product types queried for in the Google Product Feed extension.
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 | |
add_filter( 'woocommerce_gpf_wc_get_products_args', function ( $args ) { | |
$args['type'][] = 'yith_bundle'; | |
return $args; | |
} ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment