Skip to content

Instantly share code, notes, and snippets.

@plugin-republic
Created July 30, 2020 09:51
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/badd6c39628fe7674d17c0bc26bd29e8 to your computer and use it in GitHub Desktop.
Save plugin-republic/badd6c39628fe7674d17c0bc26bd29e8 to your computer and use it in GitHub Desktop.
<?php
/**
* Filter the step value for the tier amount
*/
function prefix_tier_amount_step( $step ) {
return '0.001';
}
add_filter( 'wcfad_tier_amount_step', 'prefix_tier_amount_step' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment