Skip to content

Instantly share code, notes, and snippets.

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/7e067632f17554ca541e to your computer and use it in GitHub Desktop.
Save spivurno/7e067632f17554ca541e to your computer and use it in GitHub Desktop.
Gravity Wiz // Gravity Forms // Filter Out $0.00 Products
<?php
/**
* Gravity Wiz // Gravity Forms // Filter Out $0.00 Products
* http://gravitywiz.com/
*/
add_filter( 'gform_product_info', 'gw_remove_empty_products', 10, 3 );
function gw_remove_empty_products( $product_info, $form, $lead ) {
$products = array();
foreach( $product_info['products'] as $field_id => $product ) {
if( GFCommon::to_number( $product['price'] ) != 0 ) {
$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