woocommerce_product_needs_shipping
Checks if a product needs shipping.
Использование
add_filter( 'woocommerce_product_needs_shipping', 'wp_kama_woocommerce_product_needs_shipping_filter', 10, 2 );
/**
* Function for `woocommerce_product_needs_shipping` filter-hook.
*
* @param $condition
* @param $that
*
* @return
*/
function wp_kama_woocommerce_product_needs_shipping_filter( $condition, $that ){
// filter...
return $condition;
}
- $condition
- -
- $that
- -
Где вызывается хук
woocommerce_product_needs_shipping
woocommerce/includes/abstracts/abstract-wc-product.php 1767
return apply_filters( 'woocommerce_product_needs_shipping', ! $this->is_virtual(), $this );