Skip to content

Instantly share code, notes, and snippets.

@artikus11
Created April 8, 2022 20:43
Show Gist options
  • Save artikus11/db9c42ed976a2b8ca2b1b97a46744ce5 to your computer and use it in GitHub Desktop.
Save artikus11/db9c42ed976a2b8ca2b1b97a46744ce5 to your computer and use it in GitHub Desktop.
Скрытие методов доставки на корзине
/**
* Скрытие методов доставки на корзине
*
* @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