Skip to content

Instantly share code, notes, and snippets.

@webtoffee-git
Created June 27, 2025 05:54
Show Gist options
  • Select an option

  • Save webtoffee-git/d456a3384aefbfc96ffc99fadcab455b to your computer and use it in GitHub Desktop.

Select an option

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 )
<?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