Skip to content

Instantly share code, notes, and snippets.

@plugin-republic
Last active July 30, 2020 12:37
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 plugin-republic/adbe9738e09ff2e4d55a983091676b70 to your computer and use it in GitHub Desktop.
Save plugin-republic/adbe9738e09ff2e4d55a983091676b70 to your computer and use it in GitHub Desktop.
<?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