• Resolved digital.zen

    (@digitalzen-1)


    Hello, I am using your free plugin and needed to find out how I can set the plugin to display Free Shipping when a certain price is met? I have tiered the products by weight, but need to show Free Shipping when the total in the cart is $79.00+. I have it currently set to show 0.00, but would like it to show Free Shipping instead. Any help would be appreciated. Thank you for a great plugin.

    https://wordpress.org/plugins/table-rate-shipping-for-woocommerce/

Viewing 1 replies (of 1 total)
  • Plugin Author mangohour

    (@mangohour)

    Hi digital.zen,

    Probably the easiest way is to add a filter to your theme’s functions.php file. Here is an example which will replace “Standard Shipping (Free)” with “Free Shipping”. You will need to change the shipping label as appropriate:

    add_filter( 'woocommerce_cart_shipping_method_full_label', 'mh_custom_shipping_label', 10, 1 );
    
    function mh_custom_shipping_label( $label ) {
        return str_replace( 'Standard Shipping (Free)', 'Free Shipping', $label );
    }

    Thanks for your comments, if you like the plugin have you considered leaving a review? 😉

    – John

Viewing 1 replies (of 1 total)

The topic ‘table rate free shipping’ is closed to new replies.