php 根据购物车总数添加

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 根据购物车总数添加相关的知识,希望对你有一定的参考价值。

/*
 * goes in theme functions.php or a custom plugin
 **/
// add item to cart on visit depending on cart total value
add_action( 'init', 'add_product_to_cart' );
function add_product_to_cart() {
  if ( ! is_admin() ) {
		global $woocommerce;
		$product_id = 2831;
		$found = false;
		$cart_total = 30;

		if( $woocommerce->cart->total >= $cart_total ) {
			//check if product already in cart
			if ( sizeof( $woocommerce->cart->get_cart() ) > 0 ) {
				foreach ( $woocommerce->cart->get_cart() as $cart_item_key => $values ) {
					$_product = $values['data'];
					if ( $_product->id == $product_id )
						$found = true;
				}
				// if product not found, add it
				if ( ! $found )
					$woocommerce->cart->add_to_cart( $product_id );
			} else {
				// if no products in cart, add it
				$woocommerce->cart->add_to_cart( $product_id );
			}
		}
	}
}

以上是关于php 根据购物车总数添加的主要内容,如果未能解决你的问题,请参考以下文章

php 根据购物车总数添加

php WooCommerce:购物车数量和总数

php WooCommerce:购物车数量和总数

php WooCommerce - 显示购物车总数/更新

php 移动交叉销售低于购物车总数表

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