如何仅为租赁类型的产品显示送货方式

时间:2016-03-10 13:36:43

标签: wordpress woocommerce

我想在woocommerce的结帐页面上显示仅适用于租赁类型产品的送货方式。

在我的产品租赁中是产品的类别.. 任何人都可以帮我解决这个问题...隐藏所有类型产品的运输复选框,而不是租赁类型的产品

1 个答案:

答案 0 :(得分:0)

dd_filter( 'woocommerce_package_rates', 'hide_all_shipping_when_cat' , 10, 2 );

function hide_all_shipping_when_cat(){

if(is_product_category( 'oranges' )){

unset( $rates['free_shipping'] );

// Unset all shipping methods you want with their names

}

}

try this