Last active
December 1, 2023 08:09
-
-
Save AnanthFlycart/f13a225b561f380c7286d9f85decfd1d to your computer and use it in GitHub Desktop.
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
| add_action('advanced_woo_discount_rules_loaded', function() { | |
| if (class_exists('\WDRPro\App\Rules\FreeShipping')) { | |
| remove_action('woocommerce_shipping_init', array('\WDRPro\App\Rules\FreeShipping', 'mayHaveFreeShipping')); | |
| remove_filter('woocommerce_shipping_methods', array('\WDRPro\App\Rules\FreeShipping', 'registerFreeShippingMethod')); | |
| add_filter('woocommerce_shipping_wdr_free_shipping_is_available', '__return_false', PHP_INT_MAX); | |
| } | |
| }, 100); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment