Bring Your Business to Life › Support › Image Store › Limit Cart & Multiple Checkout › Reply To: Limit Cart & Multiple Checkout
June 3, 2012 at 10:41 am #47594
Participant
function cart_limit( $cart_items ){ $limit_items= 50; if($cart_items>= $limit_items){ ////DO SOMETHING } } add_action( 'ims_berofe_add_to_cart', 'cart_limit', 10, $this->cart['items'] );