• Hello. I know there’s a code to hide all shipping methods when Free shipping is activated… But I only want to hide 1 shipping method when Free shipping is activated.

    I have: Free shipping, standard shipping and express shipping.
    When Free shipping is available, I want to hide the standard shipping, but want to keep express shipping option.

    Is it something possible ?

    Thanks

    • This topic was modified 8 years, 5 months ago by spouellet.
Viewing 2 replies - 1 through 2 (of 2 total)
  • Possible, yes. Out of the box, not that I know of.

    I did something similar to this (except it was restricting UPS shipping method by country). Here’s an abbreviated version of what I used, you’d need to tailor it to what you need.

    my_function( $available_methods) {
    	global $woocommerce;
    	$returned_methods = array();
    
    	// code here to loop through available methods and only put in the ones you want
    	foreach ($available_methods as $meth) {
    		if( /* your condition to check */ ) {
    			array_push($returned_methods,$meth);
    		}
    	}
    
    	return $returned_methods;
    }
    add_filter( 'woocommerce_package_rates', 'my_function', 10 );
    Thread Starter spouellet

    (@spouellet)

    Thank you for your help…
    I’m really beginner with wordpress… and don’t really know what to do…
    My method title are: Free shipping / Standard shipping .. I want Standard shipping to hide when Free shipping… do I just write this in the code? Or need to find a codename for these methods?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Free shipping – Hide only 1 shipping method’ is closed to new replies.