Support Team
posted this
26 September 2017
Hi,
I'll ask our developers about this issue. In the meantime please try the following solution:
- open
joomla\templates\untitled\includes\cartlink\default_cartlink_.php
file (as I understand you're using Cart Link control).
- find the line:
<?php echo sprintf(jText::_('Cart (%s)'), $data->totalProduct) ?>
- change it to the following line:
<?php echo sprintf(jText::_('COM_VIRTUEMART_CART_TITLE') . '(%s)', $data->totalProduct) ?>
This should help if you have proper VM translation files.
Thank you,
Olivia
Hi,
I'll ask our developers about this issue. In the meantime please try the following solution:
1. open `joomla\templates\untitled\includes\cartlink\default_cartlink_.php` file (as I understand you're using Cart Link control).
2. find the line:
`<?php echo sprintf(jText::_('Cart (%s)'), $data->totalProduct) ?>`
3. change it to the following line:
`<?php echo sprintf(jText::_('COM_VIRTUEMART_CART_TITLE') . '(%s)', $data->totalProduct) ?>`
This should help if you have proper VM translation files.
Thank you,
Olivia