php 在WooCommerce中处理可变产品自定义输入数量参数

2sbarzqh  于 2023-10-15  发布在  PHP
关注(0)|答案(1)|浏览(106)

我在WooCommerce中建立了一个商店,要求产品数量以6的步骤增加。我们设置它的方式与一个代码是依赖于每个产品蛞蝓个别蛞蝓。它可以很好地处理单一产品,但它会在可变产品上中断(添加第7项,然后继续以第6步增加产品数量)。
下面是我的代码:

add_filter( 'woocommerce_quantity_input_args', 'quantity_selected_number', 10, 2 );
function quantity_selected_number( $args, $product ) {
//global $product;
   if ( ! is_cart() ) {
 if ($product->get_slug()=="product-01-slug"){
      $args['input_value'] = 6; // Start from this value (default = 1) 
      $args['max_value'] = 600; // Maximum quantity (default = -1)
      $args['min_value'] = 6; // Minimum quantity (default = 0)
      $args['step'] = 6; // Increment or decrement by this value (default = 1)
 }
   } 
 if ($product->get_slug()=="product-02-slug"){
      // Cart's 'min_value' is 0
      $args['input_value'] = 3;
      $args['max_value'] = 260; 
      $args['step'] = 3; 
      $args['min_value'] = 3;
 }
if ($product->get_slug()=="product-03-slug"){
      // Cart's 'min_value' is 0
      $args['input_value'] = 3;
      $args['max_value'] = 260; 
      $args['step'] = 3; 
      $args['min_value'] = 3;
 }
   return $args; 
}

你知道为什么会这样吗?是什么让它适用于各种产品?

mlmc2os5

mlmc2os51#

要处理可变产品的产品变化,您需要一个附加的挂钩函数。
我还添加了另一个函数来处理Ajax添加到购物车。
下面我也重新检查了你的代码,因为有一些小错误。
请尝试以下操作:

add_filter( 'woocommerce_quantity_input_args', 'custom_quantity_input_args', 10, 2 );
function custom_quantity_input_args( $args, $product ) {
    if  ( $product->get_slug() === 'product-01-slug' ) {
        if ( ! is_cart() ) {
            $args['input_value'] = 6; // default: 1 
        }
        $args['min_value'] = 6; // default: 0
        $args['max_value'] = 600; // default: -1
        $args['step'] = 6; // default: 1
    }

    if ( in_array( $product->get_slug(), array('product-02-slug', 'product-03-slug') ) ) {
        if ( ! is_cart() ) {
            $args['input_value'] = 3;
        }
        $args['min_value'] = 3;
        $args['max_value'] = 260; 
        $args['step'] = 3; 
    }

    return $args; 
}

// For Ajax add to cart button (define the Input quantity value)
add_filter( 'woocommerce_loop_add_to_cart_args', 'loop_ajax_add_to_cart_quantity_fix', 10, 2 );
function loop_ajax_add_to_cart_quantity_fix( $args, $product ) {
    if ( $product->get_slug() === 'product-01-slug' ) {
        $args['quantity'] = 6; // default: 1 
    }

    if ( in_array( $product->get_slug(), array('product-02-slug', 'product-03-slug') ) ) {
        $args['quantity'] = 3; 
    }

    return $args;
}

// For product variations (define the min and max values)
add_filter( 'woocommerce_available_variation', 'filter_available_variation_qty', 10, 3 );
function filter_available_variation_qty( $data, $product, $variation ) { 
    if ( $product->get_slug() === 'product-01-slug' ){
        $data['min_qty'] = 6; // default: 0
        $data['max_qty'] = 600; // default: -1
    }

    if ( in_array( $product->get_slug(), array('product-02-slug', 'product-03-slug') ) ) {
        $data['min_qty'] = 3;
        $data['max_qty'] = 260; 
    }

    return $data;
}

代码放在子主题的functions.php文件中(或插件中)。测试和作品。
相关:在Woocommerce中设置产品级别的最小,最大和步骤

相关问题