Dear GuillermoMemo
/templates/sj_pistore/html/mod_sj_vm_filter/default_product_filter.php and
default_categories_manufacturers.php
prntscr.com/ohkg97
prntscr.com/ohkhwe
- go to \sj_pistore\html\mod_sj_vm_filter\default_product_filter.php and find:
<div class="ft-current-group">
<?php echo ucwords ($key); ?>
</div>
=> change to:
<div class="ft-current-group">
<?php //echo ucwords ($key); ?>
<?php if ($key=='categories') {echo jtext::_('VM_CATEGORIES');} ?>
<?php if ($key=='prices') {echo jtext::_('VM_PRICES');} ?>
</div>
- go to sj_pistore\html\mod_sj_vm_filter\default_categories_manufacturers.php and find:
<div class="ft-heading-inner">
<?php echo $key; ?>
<span class="ft-open-close"></span>
</div>
=> change to:
<div class="ft-heading-inner">
<?php //echo $key; ?>
<?php if ($key=='categories') {echo jtext::_('VM_CATEGORIES');} ?>
<?php if ($key=='manufacturers') {echo jtext::_('VM_MANUFACTURERS');} ?>
<span class="ft-open-close"></span>
</div>
then translate these text for your language: VM_CATEGORIES, VM_MANUFACTURERS, VM_PRICES, CURRENTSEARCH, PRODUCTFILTERING, PRICE, Clear All
prntscr.com/ohkimv
prntscr.com/ohkiqu
prntscr.com/ohkitb
thanks