将产品数量字段添加到Woocommerce商店循环中的可用数量限制

时间:2018-11-17 05:29:41

标签: php wordpress woocommerce product product-quantity

在Woocommerce中,我正在使用以下代码在woocommerce商店循环中添加数量字段:

/**
 * Override loop template and show quantities next to add to cart buttons
 */
add_filter( 'woocommerce_loop_add_to_cart_link', 'quantity_inputs_for_woocommerce_loop_add_to_cart_link', 10, 2 );
function quantity_inputs_for_woocommerce_loop_add_to_cart_link( $html, $product ) {
    if ( $product && $product->is_type( 'simple' ) && $product->is_purchasable() && $product->is_in_stock() && ! $product->is_sold_individually() ) {
        $html = '<form action="' . esc_url( $product->add_to_cart_url() ) . '" class="cart" method="post" enctype="multipart/form-data">';
        $html .= woocommerce_quantity_input( array(), $product, false );
        $html .= '<button type="submit" class="button alt">' . esc_html( $product->add_to_cart_text() ) . '</button>';
        $html .= '</form>';
    }
    return $html;
}

此代码可以正常工作,但不能控制可用的产品数量。

例如,如果产品A的库存为3件,则在一个产品页面中,我们最多只能添加3件商品,但是在带有上述代码的购物循环中,我们可以为此产品输入无限数量的商品。

如何解决?

1 个答案:

答案 0 :(得分:1)

尝试以下将限制产品数量的操作。如果可用数量为1,则隐藏“质量”字段。如果产品缺货,则禁用该按钮,显示“缺货”:

add_filter( 'woocommerce_loop_add_to_cart_link', 'quantity_inputs_for_woocommerce_loop_add_to_cart_link', 10, 2 );
function quantity_inputs_for_woocommerce_loop_add_to_cart_link( $html, $product ) {
    if ( $product && $product->is_type( 'simple' ) && $product->is_purchasable() && $product->is_in_stock() && ! $product->is_sold_individually() ) {
        $quantity_in_cart = 0;
        if( ! $product->backorders_allowed() && ! WC()->cart->is_empty() ){
            foreach( WC()->cart->get_cart() as $item ){
                if( $item['product_id'] == $product->get_id() ){
                    $quantity_in_cart += $item['quantity'];
                }
            }
        }
        $max_purchase_quantity = $product->get_max_purchase_quantity() - $quantity_in_cart;
        $html = '<form action="' . esc_url( $product->add_to_cart_url() ) . '" class="cart" method="post" enctype="multipart/form-data">';

        if( $product->backorders_allowed() || $max_purchase_quantity > 1 ){
            $html .= woocommerce_quantity_input( array(
                'min_value'   => apply_filters( 'woocommerce_quantity_input_min', $product->get_min_purchase_quantity(), $product ),
                'max_value'   => apply_filters( 'woocommerce_quantity_input_max', $max_purchase_quantity, $product ),
                'input_value' => $product->get_min_purchase_quantity(),
            ), $product, false );
            $html .= '<button type="submit" class="button alt">' . esc_html( $product->add_to_cart_text() ) . '</button>';
        } else {
            $html .= '<a class="button disabled">' . __("Out of stock", "woocommerce") . '</a>';
        }
        $html .= '</form>';
    }
    return $html;
}

代码进入您的活动子主题(或活动主题)的function.php文件中。经过测试,可以正常工作。

reference; emphasis added