This snippet automatically applies free shipping for orders exceeding a certain total, enhancing customer incentives.
add_filter('woocommerce_shipping_free_shipping_is_available', 'custom_free_shipping_threshold', 10, 2);
function custom_free_shipping_threshold($is_available, $package) {
if (WC()->cart->total < 75) { // Change 75 to your desired threshold
return false;
}
return $is_available;
}