Skip to content

Instantly share code, notes, and snippets.

@plugin-republic
Created November 20, 2025 11:19
Show Gist options
  • Select an option

  • Save plugin-republic/bbb3fdae7c8a4ab1b74347a51f5fa826 to your computer and use it in GitHub Desktop.

Select an option

Save plugin-republic/bbb3fdae7c8a4ab1b74347a51f5fa826 to your computer and use it in GitHub Desktop.
<?php
/**
* Reduce option and field prices by 10%
*/
function demo_discount_field_price( $price, $item, $product ) {
$price = $price * 0.9;
return $price;
}
add_filter( 'pewc_filter_field_price', 'demo_discount_field_price', 10, 3 );
add_filter( 'pewc_filter_option_price', 'demo_discount_field_price', 10, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment