Limit the reference range on the "Payment Multicaixa (ProxyPay gateway) for WooCommerce" WordPress plugin by webdados.pt
<?php | |
add_filter( 'multicaixa_create_ref_min', function( $value ) { | |
return 0; | |
} ); | |
add_filter( 'multicaixa_create_ref_max', function( $value ) { | |
return 333333333; | |
} ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment