This file contains 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 | |
/** | |
* Filter the step value for number fields in conditions | |
*/ | |
function tester_condition_value_step( $step, $field_id ) { | |
return 0.01; | |
} | |
add_filter( 'pewc_condition_value_step', 'tester_condition_value_step', 10, 2 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment