且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

从购物车页面中删除Woocommerce购物车数量选择器

更新时间:2023-10-25 14:45:58

您只是错过了 $ return $ product ...下面的函数可以与内置的钩子一起使用。

You were just missing the $return and $product from your function...The below function will work otherwise with the built in hook.

function wc_remove_quantity_field_from_cart( $return, $product ) {

if ( is_cart() ) return true;

}

add_filter( 'woocommerce_is_sold_individually', 'wc_remove_quantity_field_from_cart', 10, 2 );