Skip to content

Instantly share code, notes, and snippets.

@leewillis77
Created February 21, 2019 14:55
Show Gist options
  • Save leewillis77/3e812dd9132c5c2ecae862ec44ebc7fa to your computer and use it in GitHub Desktop.
Save leewillis77/3e812dd9132c5c2ecae862ec44ebc7fa to your computer and use it in GitHub Desktop.
Example of modifying item_group_id
<?php
add_filter( 'woocommerce_gpf_feed_item_google', function( $feed_item, $product ) {
// Modify $feed_item->item_group_id here
return $feed_item;
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment