gpt4 book ai didi

php - 在 Woocommerce 3 中隐藏购物车中特定产品的数量字段

转载 作者:行者123 更新时间:2023-12-05 04:05:27 26 4
gpt4 key购买 nike

我想在购物车页面中隐藏一个特定产品类别的数量字段。

“单独销售”对我没有帮助,因为我有一个必须禁用才能工作的插件。

这可能吗?任何轨道都会受到赞赏。

最佳答案

以下代码将隐藏购物车页面上的产品数量字段:

1) 对于特定产品类别(您将在此代码中定义):

add_filter( 'woocommerce_quantity_input_args', 'hide_quantity_input_field', 20, 2 );
function hide_quantity_input_field( $args, $product ) {
// Here set your product categories in the array (can be either an ID, a slug, a name or an array)
$categories = array('t-shirts','shoes');

// Handling product variation
$the_id = $product->is_type('variation') ? $product->get_parent_id() : $product->get_id();

// Only on cart page for a specific product category
if( is_cart() && has_term( $categories, 'product_cat', $the_id ) ){
$input_value = $args['input_value'];
$args['min_value'] = $args['max_value'] = $input_value;
}
return $args;
}

代码进入事件子主题(或事件主题)的 function.php 文件。测试和工作。
它还将处理添加到购物车的产品变体。

2) 对于特定产品 ID(您将在此代码中定义):

add_filter( 'woocommerce_quantity_input_args', 'hide_quantity_input_field', 20, 2 );
function hide_quantity_input_field( $args, $product ) {
// Here set your product IDs in the array
$product_ids = array(37,40,70);

// Handling product variation
$the_id = $product->is_type('variation') ? $product->get_parent_id() : $product->get_id();

// Only on cart page for a specific product category
if( is_cart() && in_array( $the_id, $product_ids ) ){
$input_value = $args['input_value'];
$args['min_value'] = $args['max_value'] = $input_value;
}
return $args;
}

代码进入事件子主题(或事件主题)的 function.php 文件。测试和工作。
它还将处理添加到购物车的产品变体。

关于php - 在 Woocommerce 3 中隐藏购物车中特定产品的数量字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51102798/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com