Hi,
First, you want to load HikaShop, in case it's not already loaded on the page by the time Joomla runs your module:
if(!@include_once(rtrim(JPATH_ADMINISTRATOR,DS).DS.'components'.DS.'com_hikashop'.DS.'helpers'.DS.'helper.php')){ return false; }
Then, you want to load the cart:
$cartClass = hikashop_get('class.cart');
$cart = $cartClass->getFullCart();
You could loop through the products in $cart->products to sum the products price. But a simpler solution would be to directly get the subtotal :
echo $cart->total->prices[0]->price_value_with_tax; // with taxes
echo $cart->total->prices[0]->price_value; // without taxes
And if you want to format it as a price (with the currency, decimals rounding, etc), you'll want to display it like that for example:
$currencyClass = hikashop_get('class.currency');
echo $currencyClass->format($cart->total->prices[0]->price_value_with_tax, $cart->total->prices[0]->price_currency_id);
www.hikashop.com/support/documentation/6...umentation.html#code