1. Открыть файл
/themes/шаблон/contact-form.tpl
a) изменить кодировку файла на UTF-8 без BOM
б) после:
Код:
<p class="form-group">
<label for="email">{l s='Email address'}</label>
{if isset($customerThread.email)}
<input class="form-control grey" type="text" id="email" name="from" value="{$customerThread.email|escape:'html':'UTF-8'}" readonly="readonly" />
{else}
<input class="form-control grey validate" type="text" id="email" name="from" data-validate="isEmail" value="{$email|escape:'html':'UTF-8'}" />
{/if}
</p>
добавить:
Код:
<p class="form-group">
<label for="name">Имя</label>
<input class="form-control grey validate" type="text" id="name" name="name" data-validate="isName" value="{if isset($smarty.post.name)}{$smarty.post.name|escape:'html':'UTF-8'}{/if}" />
</p>
<p class="form-group">
<label for="com">Компания</label>
<input class="form-control grey validate" type="text" id="com" name="com" data-validate="isGenericName" value="{if isset($smarty.post.com)}{$smarty.post.com|escape:'html':'UTF-8'}{/if}" />
</p>
<p class="form-group">
<label for="phone">Телефон</label>
<input class="form-control grey validate" type="text" id="phone" name="phone" data-validate="isPhoneNumber" value="{if isset($smarty.post.phone)}{$smarty.post.phone|escape:'html':'UTF-8'}{/if}" />
</p>
<p class="form-group">
<label for="city">Город</label>
<input class="form-control grey validate" type="text" id="city" name="city" data-validate="isCityName" value="{if isset($smarty.post.city)}{$smarty.post.city|escape:'html':'UTF-8'}{/if}" />
</p>
<p class="form-group checkbox">
<label for="exp">
<input type="checkbox" name="exp" id="exp" value="0" {if isset($smarty.post.exp) && $smarty.post.exp == '1'}checked="checked"{/if} />
Срочный звонок</label>
</p>
2 Открыть файл
/controllers/front/ContactController.php
a) изменить кодировку файла на UTF-8 без BOM
б) после:
Код:
'{product_name}' => '',
добавить:
Код:
'{name}' => Tools::getValue('name'),
'{com}' => Tools::getValue('com'),
'{phone}' => Tools::getValue('phone'),
'{city}' => Tools::getValue('city'),
'{exp}' => (Tools::getValue('exp') ? 'Да' : 'Нет'),
3. Открыть файл
/mails/*/contact_form.*
и добавить:
Код:
<span style="color:#333"><strong>Имя:</strong></span> {name}<br />
<span style="color:#333"><strong>Компания:</strong></span> {com}<br />
<span style="color:#333"><strong>Телефон:</strong></span> {phone}<br />
<span style="color:#333"><strong>Город:</strong></span> {city}<br />
<span style="color:#333"><strong>Срочный звонок:</strong></span> {exp}<br />
Данные будут отправлены на почту.