Created
February 9, 2022 16:57
-
-
Save growdev/f4410a3cf318fd0cfc13c26ec0ac7192 to your computer and use it in GitHub Desktop.
Change Hour of Next Payment
This file contains hidden or 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 | |
add_filter('sp_next_payment_time_of_day','sp_next_payment_time_of_day_change',10); | |
function sp_next_payment_time_of_day_change( $time ) { | |
return '09:00:00'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment