Skip to content

Instantly share code, notes, and snippets.

@spivurno
Last active February 28, 2019 01:42
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 spivurno/35a6fe24accd961ded0cdc1e4b8ca987 to your computer and use it in GitHub Desktop.
Save spivurno/35a6fe24accd961ded0cdc1e4b8ca987 to your computer and use it in GitHub Desktop.
Gravity Wiz // Gravity Forms // Exclude Products By Field ID
<?php
/**
* Gravity Wiz // Gravity Forms // Filter Out Products By Field ID
* http://gravitywiz.com/
*/
add_filter( 'gform_product_info', 'gw_remove_products_by_id', 10, 3 );
function gw_remove_empty_products( $product_info, $form, $lead ) {
$remove_products = array( 1 );
$products = array();
foreach( $product_info['products'] as $field_id => $product ) {
if( ! in_array( $field_id, $remove_products ) ) {
$products[ $field_id ] = $product;
}
}
$product_info['products'] = $products;
return $product_info;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment