Created
June 27, 2025 05:54
-
-
Save webtoffee-git/d456a3384aefbfc96ffc99fadcab455b to your computer and use it in GitHub Desktop.
Disable Webhook Sleep Delay in Stripe Plugin - By WebToffee ( Stripe Basic plugin )
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 //do not copy this line of code | |
| add_filter('wtst_webhook_sleep_time', 'set_webhook_sleep_time'); | |
| function set_webhook_sleep_time($time) { | |
| return 0; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment