Created
April 8, 2022 20:43
-
-
Save artikus11/db9c42ed976a2b8ca2b1b97a46744ce5 to your computer and use it in GitHub Desktop.
Скрытие методов доставки на корзине
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Скрытие методов доставки на корзине | |
* | |
* @param $needs_shipping | |
* | |
* @return false|mixed | |
* | |
* @testedwith WooCommerce 6.1 | |
* @author Artem Abramovich | |
*/ | |
function hide_shipping_is_cart( $needs_shipping ) { | |
if ( is_cart() ) { | |
$needs_shipping = false; | |
} | |
return $needs_shipping; | |
} | |
add_filter( 'woocommerce_cart_needs_shipping', 'hide_shipping_is_cart', 100 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment