prestashop mail customisation, and module translation -
i have 2 question
1 - installed referral program module , , customise referralprogram-invitation.html mail template putted new template under : prestashop_root/themes/my_theme/modules/referralprogram/mails/referralprogram-invitation.html
doesn't work !
2 - add text program page of referral program module copied file included module under prestashop_root/themes/my_theme/modules/referralprogram/translations/fr.php
, added new text translation in form
$_module['<{referralprogram}prestashop>program_md5'] = 'new text';
and not work?!!
you forgot language folder. mail templates must not in :
prestashop_root/themes/my_theme/modules/referralprogram/mails/referralprogram-invitation.html
in
prestashop_root/themes/my_theme/modules/referralprogram/mails/fr/referralprogram-invitation.html
if want add text program page, must:
- first, make copy of file :
prestashop_root/modules/referralprogram/views/templates/front/program.tpl
prestashop_root/themes/my_theme/modules/referralprogram/views/templates/front/program.tpl
- then, need modify file , add text want, want. translatable, text must added
{l s='new text' mod='referralprogram'}
. - finally, need translate text via localization > traductions page of bo , not directly in
fr.php
file.
- first, make copy of file :
do not hesitate if need more information,
paul.
Comments
Post a Comment