• Hello, thank you for your awesome extention. I just wanted to suggest an important option for your plugin. I’m using “Hide Shipping” addon for just having that feature. Could you please add “Hide all other shipping method and when “Free Shipping” available on the cart page” feature in your addon? Great days!

Viewing 1 replies (of 1 total)
  • Plugin Author PI Web Solution

    (@rajeshsingh520)

    Hi,

    Here is a code snippet you can add it in your theme functions.php file or best if you use Code snippet plugin that you can use this code through that as well. it will hide other shipping method when free shipping is available for that customer

    add_filter( 'woocommerce_package_rates', function ( $rates ) {
    $free = [];

    foreach ( $rates as $rate_id => $rate ) {
    if ( strpos( $rate->method_id, 'free_shipping' ) !== false ) {
    $free[ $rate_id ] = $rate;
    }
    }

    return ! empty( $free ) ? $free : $rates;
    }, 100 );


Viewing 1 replies (of 1 total)

The topic ‘Free Shipping’ is closed to new replies.