Created
November 20, 2025 11:19
-
-
Save plugin-republic/bbb3fdae7c8a4ab1b74347a51f5fa826 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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