Hi,
I'm making a new template with the views of HikaShop for my ecommerce site and I want to display the minicar only with the quantity of products and a string with the name ('Carro'). The file I'm modifying is com_hikashop > product > cart.php (in the html file of my template), and found these lines:
<span class="hikashop_small_cart_total_title"><?php echo $text; ?></span>
$text = JText::sprintf('X_ITEMS_FOR_X',$qty,$this->loadTemplate());
How that code works? How I only show the quantity and the custom string.
PS: I don't want to use CSS because I would like to learn PHP.
Regards and TIA!