Skip to content

Instantly share code, notes, and snippets.

@leewillis77
Last active September 10, 2020 12:44
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 leewillis77/12c45eec3564cc91f97ec90cc02602a1 to your computer and use it in GitHub Desktop.
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.
<?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