我是Woocommerce的新手.我试图在商店页面中显示数量框.我使用了以下代码,它按预期工作:
add_action( 'woocommerce_before_shop_loop', 'handsome_bearded_guy_select_variations' );
function handsome_bearded_guy_select_variations() {
remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 );
add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_single_add_to_cart', 30 );
}
但问题是ajax添加到购物车按钮被替换为默认按钮.
如何启用添加到购物车按钮的ajax功能以及Woocommerce存档页面的数量字段?
解决方法:
Updated (2019) – Removed the quantity bug
这可以使用以下代码完成,这与原始代码非常相似,在专用的woocommerce_loop_add_to_cart_link过滤器钩子和一些jQuery中使用自定义钩子函数.
现在它像以前一样是ajax,一旦添加到购物车,你将在右侧获得额外的“查看购物车”按钮(你可以隐藏:最后看看如何).
你必须在这个上做一些CSS样式……
编码:
add_filter( 'woocommerce_loop_add_to_cart_link', 'quantity_inputs_for_loop_ajax_add_to_cart', 10, 2 );
function quantity_inputs_for_loop_ajax_add_to_cart( $html, $product ) {
if ( $product && $product->is_type( 'simple' ) && $product->is_purchasable() && $product->is_in_stock() && ! $product->is_sold_individually() ) {
// Get the necessary classes
$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' : '',
) ) );
// Adding embeding <form> tag and the quantity field
$html = sprintf( '%s%s<a rel="nofollow" href="%s" data-quantity="%s" data-product_id="%s" data-product_sku="%s" class="%s">%s</a>%s',
'<form class="cart">',
woocommerce_quantity_input( array(), $product, false ),
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() ),
'</form>'
);
}
return $html;
}
add_action( 'wp_footer' , 'archives_quantity_fields_script' );
function archives_quantity_fields_script(){
<script type='text/javascript'>
?>
jQuery(function($){
// Update quantity
$(".add_to_cart_button.product_type_simple").on('click input', function() {
$(this).data('quantity', $(this).parent().find('input.qty').val() );
});
// On "adding_to_cart" delegated event, removes others "view cart" buttons
$(document.body).on("adding_to_cart", function() {
$(".added_to_cart").remove();
});
});
</script>
<?php //endif;
}
代码位于活动子主题(活动主题)的function.php文件中.经过测试和工作.
隐藏额外的“查看购物车”按钮按钮(当使用ajax添加到购物车时):
然后你可以先从jQuery代码中删除它:
// On "adding_to_cart" delegated event, removes others "view cart" buttons
$(document.body).on("adding_to_cart", function() {
$(".added_to_cart").remove();
});
1)您可以将此CSS规则添加到活动主题中的styles.css文件中:
a.added_to_cart.wc-forward {
display:none;
}
2)您可以使用以下hoocked功能(第一个选项是最好的方法):
add_action( 'wp_head' , 'hide_ajax_view_cart_button' );
function hide_ajax_view_cart_button(){
if( is_shop() || is_product_category() || is_product_tag() ): ?>
<style>
a.added_to_cart.wc-forward {
display:none;
}
</style>
<?php endif;
}
代码位于活动子主题(活动主题)的function.php文件中.
测试和工作.