/themes/ваша тема/authentication.tpl
ищем
Код:
<p class="text">
<label for="phone">{l s='Home phone'}</label>
<input type="text" class="text" name="phone" id="phone" value="{if isset($smarty.post.phone)}{$smarty.post.phone}{/if}" />
</p>
меняем на
Код:
<p class="required text">
<label for="phone">{l s='Home phone'}</label>
<input type="text" class="text" name="phone" id="phone" value="{if isset($smarty.post.phone)}{$smarty.post.phone}{/if}" />
<sup>*</sup>
</p>
и в файле
classes/Address.php
в строке
Код:
protected $fieldsRequired = array('id_country', 'alias', 'lastname', 'firstname', 'address1', 'postcode', 'city');
добавляем phone
Код:
protected $fieldsRequired = array('id_country', 'alias', 'lastname', 'firstname', 'address1', 'postcode', 'city', 'phone');
аналогично с мобильным добавляем phone_mobile
Сообщение отредактировано artyr_n 05-09-2010 15:30 ...