skip to Main Content

WordPress Code Snippets


Set Up Free Shipping Over a Certain Amount in WooCommerce

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;
}

I’m a WordPress developer with 10+ years of experience in WooCommerce and custom plugins. I combine technical expertise with design flair to help you create standout, user-friendly websites. Let’s transform your digital presence!

Best WordPress Hosting
Back To Top
Search