Recent

crp_wc_free_shipping_threshold filter Pro only

crp_wc_free_shipping_threshold

Filter the free shipping threshold.

Type: filter
Since: 4.3.0
Source: includes/woocommerce/class-woocommerce-module.php line 711

Parameters

TypeNameDescription
float$thresholdFree shipping minimum (0.0 if none found).

Usage

add_filter( 'crp_wc_free_shipping_threshold', function($threshold) {
    // ...
    return $threshold;
} );