Woocommerce Webhooks
-
I used to have an issue where webhooks were slow to trigger instead of occuring instantly. I was using the following code snippet to trigger the webhooks instantly but the code snippet does not seem to be working any longer. Any other suggestions to get webhooks to trigger instantely?
*Below is what I was using:
function custom_woocommerce_disable_async_webhook() {
return false;
}
add_filter(‘woocommerce_webhook_deliver_async’, ‘custom_woocommerce_disable_async_webhook’);
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Woocommerce Webhooks’ is closed to new replies.