Hello,
Ok, follow me step by step :
1. First, you can go to your HikaShop plugin Folder
=> YourWebsite\plugins\hikashop\cart_design
2. Open the cart_design_view.php file
3. Go around line 368
4. By default you will see this :
...
}
if($this->view->params->get('show_price'))
$text = JText::sprintf('TOTAL_IN_CART_X', $price_class);
else
$text = JText::_('MINI_CART_PROCEED_TO_CHECKOUT');
?>
<span class="hikashop_small_cart_total_title"><?php echo $text; ?></span>
</a>
<?php
...
Remove the "
JText::sprintf('TOTAL_IN_CART_X', "
To have this :
$text = $price_class;...
}
if($this->view->params->get('show_price'))
$text = $price_class;
else
$text = JText::_('MINI_CART_PROCEED_TO_CHECKOUT');
?>
<span class="hikashop_small_cart_total_title"><?php echo $text; ?></span>
</a>
<?php
...
5. For remove the bold effect, in this same php file above line
185, you will find the view Css code, add at the end of the css part this :
...
.hikashop_cart_module_enhanced span.hikashop_cart_price {
font-weight:normal;
}
...
Hope this will match your needs
Regards