-
Author
-
November 24, 2015 at 17:08 #88794bruce7075Participant
Hi,
May I know how to hide WooCommerce shipping when free is available? Thank you very much for your kind help!
November 24, 2015 at 18:06 #88826RaduModeratorHi,
Take a look here : https://docs.woothemes.com/document/hide-other-shipping-methods-when-free-shipping-is-available/
Cheers
RAdu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionNovember 25, 2015 at 16:27 #89010RaduModeratorHi,
Try with this
COPY CODE// Hide standard shipping option when free shipping is available add_filter( 'woocommerce_available_shipping_methods', 'hide_standard_shipping_when_free_is_available' , 10, 1 ); /** * Hide Standard Shipping option when free shipping is available * * @param array $available_methods */ function hide_standard_shipping_when_free_is_available( $available_methods ) { if( isset( $available_methods['free_shipping'] ) AND isset( $available_methods['flat_rate'] ) ) { // remove standard shipping option unset( $available_methods['flat_rate'] ); } return $available_methods; }
Let me know if it works
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionNovember 25, 2015 at 17:19 #89018bruce7075ParticipantHi Radu,
I have now used Woocommerce Jetpack and can do what I want. Thanks very much for your very kind efforts on this!
November 25, 2015 at 18:25 #89044RaduModeratorYou’re welcome
I’m glad that you have solved your problem.
Have a nice week
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts
Viewing 6 posts - 1 through 6 (of 6 total)
The forum ‘General questions’ is closed to new topics and replies.