#6819

doanthuy
Moderator

hi,
– The title or label we config it in administrator, you can edit the title or label for each storeview in admin
– If you still want translate the title / label, you can edit it in the code.
To edit title ‘feature-product’:you need make these steps:
1, Go to sns_lamino\app\design\frontend\sns_lamino\default\template\list.phtml
2, Replace: <?php echo $this->title;?>
by
<?php echo $this->__($this->title);?>
To edit title ‘Choose by Categories’:you need make these steps:
1 Go to sns_lamino\app\design\frontend\sns_lamino\default\template\sns\blocks\categor.phtml
2. Replace: <?php echo $themeCfg->getField(‘slidercategory_title’); ?>
by
<?php echo $this->__($themeCfg->getField(‘slidercategory_title’)); ?>
Thank.