如何在每种产品的类别或商店页面上添加数量框?

时间:2019-04-17 04:37:10

标签: php wordpress woocommerce hook

此代码无法正常工作。没有在购物车中添加正确数量的产品。我的最小订购数量是6,而当我增加最小订购数量时,这总是在我的购物车中增加-1数量。

function ace_shop_page_add_quantity_field() {
    $product = wc_get_product( get_the_ID() );
    if ( ! $product->is_sold_individually() && 'variable' != $product->get_type() && $product->is_purchasable() ) {
        woocommerce_quantity_input( array( 'min_value' => 1, 'max_value' => $product->backorders_allowed() ? '' : $product->get_stock_quantity() ) );
    }
}

add_action( 'woocommerce_after_shop_loop_item', 'ace_shop_page_add_quantity_field', 12 );

0 个答案:

没有答案