hello,
i use the following template
demo.gavick.com/joomla15/nov2010/index.php
there is a module position with name "cart" on this template but it can only be used with K2 and VM.
i use the latest version o essential version, when i use the module position for the hikashop mini cart it doesnt work properly.
here is the code in the template that i have to change
<?php if($this->countModules('cart')) : ?>
<div id="gk-cart-btn">
<h2><?php echo JText::_('GK_SHOP_CART'); ?></h2>
<div id="gk-items">[ <strong>...</strong> ] <?php echo JText::_('GK_ITEMS'); ?></div>
<a href="index.php?page=checkout.index&option=com_virtuemart&Itemid=178&redirected=1&Itemid=9999" class="button"><?php echo JText::_('GK_GO_TO_CHECKOUT'); ?></a>
</div>
<div id="gk-cart">
<jdoc:include type="modules" name="cart" style="none" />
</div>
<?php endif; ?>
what i have to do have in that position with the same style the Hikashop mini cart module?
i am trying to do something like the code below this but i cant get the virable for the hikashop items
<?php if($this->countModules('cart')) : ?>
<div id="gk-cart-btn">
<h2><?php echo JText::_('GK_SHOP_CART'); ?></h2>
<div id="gk-items">[ <strong>...</strong> ] <?php echo JText::sprintf('TOTAL_IN_CART_X'); ?></div>
<a href="index.php?option=com_hikashop&ctrl=checkout&Itemid=180" class="button"><?php echo JText::_('GK_GO_TO_CHECKOUT'); ?></a>
</div>
<div id="gk-cart">
<jdoc:include type="modules" name="cart" style="none" />
</div>
<?php endif; ?>
thank you