Skip to content

Instantly share code, notes, and snippets.

@growdev
Created February 9, 2022 16:57
Show Gist options
  • Save growdev/f4410a3cf318fd0cfc13c26ec0ac7192 to your computer and use it in GitHub Desktop.
Save growdev/f4410a3cf318fd0cfc13c26ec0ac7192 to your computer and use it in GitHub Desktop.
Change Hour of Next Payment
<?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