Skip to content

Instantly share code, notes, and snippets.

@leewillis77
Created October 26, 2017 10:12
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leewillis77/bf7078c28e8d0c6069f100b4e61be539 to your computer and use it in GitHub Desktop.
Save leewillis77/bf7078c28e8d0c6069f100b4e61be539 to your computer and use it in GitHub Desktop.
Shows how to modify the product link in the WooCommerce Google Product Feed extension
<?php
function lw_woocommerce_gpf_feed_item_google( $feed_item, $product ) {
// Modify $feed_item->purchase_link here.
return $feed_item;
}
add_filter( 'woocommerce_gpf_feed_item_google', 'lw_woocommerce_gpf_feed_item_google', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment