php WooCommerce - 在Ajax之后更新购物车中的商品数量和总数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php WooCommerce - 在Ajax之后更新购物车中的商品数量和总数相关的知识,希望对你有一定的参考价值。

<?php

// Ensure cart contents update when products are added to the cart via AJAX (place the following in functions.php)
add_filter( 'woocommerce_add_to_cart_fragments', 'woocommerce_header_add_to_cart_fragment' );

function woocommerce_header_add_to_cart_fragment( $fragments ) {
	ob_start();
	?>
	<a class="cart-contents" href="<?php echo wc_get_cart_url(); ?>" title="<?php _e( 'View your shopping cart' ); ?>"><?php echo sprintf (_n( '%d item', '%d items', WC()->cart->get_cart_contents_count() ), WC()->cart->get_cart_contents_count() ); ?> - <?php echo WC()->cart->get_cart_total(); ?></a> 
	<?php
	
	$fragments['a.cart-contents'] = ob_get_clean();
	
	return $fragments;
}

以上是关于php WooCommerce - 在Ajax之后更新购物车中的商品数量和总数的主要内容,如果未能解决你的问题,请参考以下文章

php 禁用WooCommerce的Ajax调用

php WooCommerce - AJAX购物车

php WooCommerce - AJAX购物车

php WooCommerce - AJAX购物车

php WooCommerce - 在Ajax之后更新购物车中的商品数量和总数

WooCommerce - 更改数量触发购物车中的 AJAX 调用