Skip to content

Instantly share code, notes, and snippets.

@PluginRepublicSupport
Created April 24, 2023 13:53
Show Gist options
  • Save PluginRepublicSupport/064c6d07abb9affb7bd3f61bd47ef780 to your computer and use it in GitHub Desktop.
Save PluginRepublicSupport/064c6d07abb9affb7bd3f61bd47ef780 to your computer and use it in GitHub Desktop.
Name your price custom number step
<?php
/**
* Filter the step parameter in Name Your Price field
*/
function prefix_number_field_step( $step, $item ) {
return 5;
}
add_filter( 'pewc_name_your_price_step', 'prefix_number_field_step', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment