Last active
July 4, 2024 22:22
-
-
Save lukecav/920cb2a2edc8a4280eccf78bbfc85143 to your computer and use it in GitHub Desktop.
Disable woocommerce_webhook_deliver_async in WooCommerce
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
| apply_filters( 'woocommerce_webhook_deliver_async', '__return_false' ); |
@luiseduardobraschi you're right "add_filter" worked for me
the correct once should be.
- edit functions.php .
And add this:
add_filter( 'woocommerce_webhook_deliver_async', '__return_false' );
this worked for me.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It should be "add_filter".