> For the complete documentation index, see [llms.txt](https://gist.flycart.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://gist.flycart.net/disable-free-shipping-rules.md).

# Disable Free Shipping rules

```php
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);
```
