我想在商品缺货时从商店,类别和产品页面中删除数量选择器框。有没有一种简单的方法可以不使用代码显示数量选择器框?
我使用下面的代码显示数量选择框。
/**
* Add quantity field on the archive page.
*/
function custom_quantity_field_archive() {
$product = wc_get_product( get_the_ID() );
if ( ! $product->is_sold_individually() && 'variable' != $product-
>product_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',
'custom_quantity_field_archive', 0, 9 );
/**
* Add requires JavaScript.
*/
function custom_add_to_cart_quantity_handler() {
wc_enqueue_js( '
jQuery( ".post-type-archive-product" ).on( "click", ".quantity input",
function() {
return false;
});
jQuery( ".post-type-archive-product" ).on( "change input", ".quantity
.qty", function() {
var add_to_cart_button = jQuery( this ).parents( ".product" ).find(
".add_to_cart_button" );
// For AJAX add-to-cart actions
add_to_cart_button.data( "quantity", jQuery( this ).val() );
// For non-AJAX add-to-cart actions
add_to_cart_button.attr( "href", "?add-to-cart=" +
add_to_cart_button.attr( "data-product_id" ) + "&quantity=" + jQuery( this
).val() );
});
' );
}
add_action( 'init', 'custom_add_to_cart_quantity_handler' );
答案 0 :(得分:0)
您可以覆盖WooCommerce模板。 在主题文件夹中打开一个woocommerce文件夹然后 单品/添加到购物车/ simple.php
从woocommerce插件/ templates / single-template / add-to-cart / simple.php中复制粘贴代码
第46行,你会看到
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', $product->get_max_purchase_quantity(), $product ),
'input_value' => isset( $_POST['quantity'] ) ? wc_stock_amount( $_POST['quantity'] ) : $product->get_min_purchase_quantity(),
) );
您可以在调用 woocommerce_quantity_input 函数之前添加自定义if语句。
if($product->get_stock_quantity() > 0) {
// woocommerce_quantity_input calling here...
}
我希望这会对你有所帮助。
答案 1 :(得分:0)
由于WooCommerce会自动执行此操作,因此无需额外的代码。在您编辑产品时,在库存标签上,勾选"管理库存"然后选择"允许延期交货?"并将其设置为"不允许"。
答案 2 :(得分:0)
对于您的档案页数量字段,您需要对代码进行一些更改:
add_action( 'woocommerce_after_shop_loop_item', 'custom_quantity_field_archive', 0, 9 )
function custom_quantity_field_archive() {
global $product;
if ( ! $product->is_sold_individually() && ! $product->is_type('variable')
&& $product->is_purchasable() && $product->is_in_stock() ) {
woocommerce_quantity_input( array(
'min_value' => 1,
'max_value' => $product->backorders_allowed() ? '' : $product->get_stock_quantity()
) );
}
}
代码放在活动子主题(或活动主题)的function.php文件中。它应该工作。