在 Woocommerce 3.3 中设置某些产品类别或产品 ID 的最小数量

Set min quantity for some product categories or product IDs in Woocommerce 3.3

在 woocommerce 中,我想为购物车中的特定产品设置最低数量。如果值较小,则会出现错误。

例如:客户只有在购物车中的产品a、b、c数量为2个或更多时才能结账。

否则会出现错误 - "Minimums order quantity for every item is 2".

本论坛有类似的主题,我认为这段代码可能会有用。

    add_filter( 'woocommerce_quantity_input_min', 'woocommerce_quantity_input_min',10, 2 );
    function woocommerce_quantity_input_min( $min, $product ){
    if ( $product-> ) {
          $min = 2;
    } else {
          $min = 3;
    }
    return $min;
    }

有人可以做这个吗?

我的真实需求:我店里卖很多手表。共有 6 个产品类别:

我需要一个条件,如果购物车页面中的每个产品数量至少为 2,则客户只能结帐,无论它是哪个类别。

请注意,我们提供从存档页面和单个产品页面添加产品的功能。如果从存档页面添加,则默认值为 1。

更新 2 (它现在也适用于存档页面和购物车的产品变体)

以下代码将为特定产品类别设置最小数量:

// On single product pages
add_filter( 'woocommerce_quantity_input_args', 'min_qty_input_args', 20, 2 );
function min_qty_input_args( $args, $product ) {

    ## ---- Your settings ---- ##

    $product_categories = array('Burberry', 'Daniel Wellington',
        'Diesel', 'Emporio Armani', 'Marc Jacobs', 'Michael Kors');

    $quantity = 2;

    ## ---- The code: set minimun quantity for specific product categories ---- ##

    $product_id = $product->is_type('variation') ? $product->get_parent_id() : $product->get_id();

    if( has_term( $product_categories, 'product_cat', $product_id ) ){
        $args['min_value'] = $quantity;
    }

    return $args;
}

// On archives pages
add_filter( 'woocommerce_loop_add_to_cart_link', 'min_qty_loop_add_to_cart_button', 50, 2 );
function min_qty_loop_add_to_cart_button( $button, $product  ) {
    // Only for non variable products
    if( $product->is_type( 'variable' ) ) return $button; // Exit

    ## ---- Your settings ---- ##

    $product_categories = array('Burberry', 'Daniel Wellington',
        'Diesel', 'Emporio Armani', 'Marc Jacobs', 'Michael Kors');

    $quantity = 2;

    ## ---- The code: set minimun quantity for specific product categories ---- ##

    if( has_term( $product_categories, 'product_cat', $product->get_id() ) ){
        $class = implode( ' ', array_filter( array(
            'button',
            'product_type_' . $product->get_type(),
            $product->is_purchasable() && $product->is_in_stock() ? 'add_to_cart_button' : '',
            $product->supports( 'ajax_add_to_cart' ) ? 'ajax_add_to_cart' : '',
        ) ) );

        $button = sprintf( '<a rel="nofollow" href="%s" data-quantity="%s" data-product_id="%s" data-product_sku="%s" class="%s">%s</a>',
            esc_url( $product->add_to_cart_url() ),
            esc_attr( isset( $quantity ) ? $quantity : 1 ),
            esc_attr( $product->get_id() ),
            esc_attr( $product->get_sku() ),
            esc_attr( isset( $class ) ? $class : 'button' ),
            esc_html( $product->add_to_cart_text() )
        );
    }
    return $button;
}

代码进入您的活动子主题(或活动主题)的 function.php 文件。已测试并有效。

For product tags, you will have just to change 'product_cat' by 'product_tag' in the code.


ADDITION: For product IDS (array of IDs)

要使其适用于产品 ID,请改用:

// On single product pages
add_filter( 'woocommerce_quantity_input_args', 'min_qty_input_args', 20, 2 );
function min_qty_input_args( $args, $product ) {

    ## ---- Your settings ---- ##

    $product_ids = array('23', '52', '75', '87', '90', '102');

    $quantity = 2;

    ## ---- The code: set minimun quantity for specific product Ids ---- ##

    if( in_array( $product->get_id(), $product_ids ) || ( $product->is_type('variation') && in_array( $product->get_parent_id(), $product_ids ) ) ){
        $args['min_value'] = $quantity;
    }

    return $args;
}

// On archives pages
add_filter( 'woocommerce_loop_add_to_cart_link', 'min_qty_loop_add_to_cart_button', 50, 2 );
function min_qty_loop_add_to_cart_button( $button, $product  ) {
    // Only for non variable products
    if( $product->is_type( 'variable' ) ) return $button; // Exit

    ## ---- Your settings ---- ##

    $product_ids = array('23', '52', '75', '87', '90', '102');

    $quantity = 2;

    ## ---- The code: set minimun quantity for specific product IDs ---- ##

    if( in_array( $product->get_id(), $product_ids ) ){
        $class = implode( ' ', array_filter( array(
            'button',
            'product_type_' . $product->get_type(),
            $product->is_purchasable() && $product->is_in_stock() ? 'add_to_cart_button' : '',
            $product->supports( 'ajax_add_to_cart' ) ? 'ajax_add_to_cart' : '',
        ) ) );

        $button = sprintf( '<a rel="nofollow" href="%s" data-quantity="%s" data-product_id="%s" data-product_sku="%s" class="%s">%s</a>',
            esc_url( $product->add_to_cart_url() ),
            esc_attr( isset( $quantity ) ? $quantity : 1 ),
            esc_attr( $product->get_id() ),
            esc_attr( $product->get_sku() ),
            esc_attr( isset( $class ) ? $class : 'button' ),
            esc_html( $product->add_to_cart_text() )
        );
    }
    return $button;
}

代码进入您的活动子主题(或活动主题)的 function.php 文件。已测试并有效。