Hi,
In the file media/com_hikashop/mail/contact_request.preload.php you should have this content:
$texts = array(
'MAIL_HEADER' => JText::_('HIKASHOP_MAIL_HEADER'),
'CONTACT_TITLE' => JText::_('CONTACT_EMAIL_TITLE'),
And in the file media/com_hikashop/mail/contact_request.html.php this content
<h1 style="color:#1c8faf !important;font-size:16px;font-weight:bold; border-bottom:1px solid #ddd; padding-bottom:10px">
{TXT:CONTACT_TITLE}
</h1>
At this moment, the translation for the key "CONTACT_EMAIL_TITLE" will be used. And you should have in your language file:
CONTACT_EMAIL_TITLE="Contact request"
For the link which point to the administration, please replace in the contact_request.html.php file:
<tr>
<td style="color:#1c8faf !important;font-size:12px;font-weight:bold;">{TXT:PRODUCT}</td>
<td>{VAR:PRODUCT_DETAILS}</td>
</tr>
By:
<tr>
<td style="color:#1c8faf !important;font-size:12px;font-weight:bold;">{TXT:PRODUCT}</td>
<td>{VAR:FRONT_PRODUCT_DETAILS}</td>
</tr>
Regards,