Bring Your Business to Life › Support › Image Store › Adding items in cart to page › Reply To: Adding items in cart to page
March 11, 2015 at 10:04 pm #256957
Keymaster
you can access the entire cart data using the global $variable $ImStoreCart (object);
To check if there is items in the cart use:
if( !empty( $ImStoreCart->cart->items ){
// do something here
}
to display the number of items in the cart:
echo $ImStoreCart->cart->items