Skip to content

Instantly share code, notes, and snippets.

@shadimanna
Created October 27, 2022 08:50
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 shadimanna/f75b55906011bbff9801d0d5be0da6d5 to your computer and use it in GitHub Desktop.
Save shadimanna/f75b55906011bbff9801d0d5be0da6d5 to your computer and use it in GitHub Desktop.
add_filter('faire_add_to_order_product', 'faire_product_price_zero');
function faire_product_price_zero( $product ) {
$product['item']->price_cents = 0;
return $product;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment