Skip to content

Instantly share code, notes, and snippets.

@joshfeck
Created July 19, 2019 19:53
Show Gist options
  • Select an option

  • Save joshfeck/20f4f9959799bab88b32bb18faf27d7b to your computer and use it in GitHub Desktop.

Select an option

Save joshfeck/20f4f9959799bab88b32bb18faf27d7b to your computer and use it in GitHub Desktop.
Infusionsoft + Event Espresso 4. Do not send a product sku when adding/updating events & tickets
<?php
//* Please do NOT include the opening php tag, except of course if you're starting with a blank file
add_filter(
'FHEE__EEE_Infusionsoft_Ticket__sync_to_infusionsoft__product_data',
'my_do_not_send_a_sku',
10,
2
);
function my_do_not_send_a_sku($product_data, $ticket) {
$product_data['Sku'] = '';
return $product_data;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment