Подскажите, сделал все как написано, по поводу шаблона prestashop_fast_reg. Мне нужно оставить три поля - Имя, дополнительная информация, телефон (обязательное поле). 
Но когда на форме прохожу - мне пишет, что Поле ФАМИЛИЯ - обязательное. Где я его мог не убрать?
Убирал стандартно поля в двух файлах:
/classes/Address.php
оставил только e-mail обязательным полем 
Код:
protected    $fieldsRequired = array('phone_mobile',);
/themes/prestashop/authentication.tpl
Код:
<form action="{$request_uri|escape:'htmlall':'UTF-8'|replace:'&':'&'}" method="post" id="account-creation_form" class="std">
        <fieldset class="account_creation">
            <h3>{l s='Your personal information'}</h3>
            <input  type="hidden" class="text" id="customer_firstname" name="customer_firstname" value="{if isset($smarty.post.firstname)}{$smarty.post.firstname}{else}{$customer_firstname}{/if}" />
            <input  type="hidden" class="text" id="customer_lastname" name="customer_lastname" value="{if isset($smarty.post.lastname)}{$smarty.post.lastname}{else}{$customer_lastname}{/if}" />
            <input type="hidden" class="text" id="email" name="email" value="{if isset($smarty.post.email)}{$smarty.post.email}{else}{$email}{/if}" />
            <input type="hidden" class="text" name="passwd" id="passwd" value="{$pass_noname}" />
            <p class="text">
                <label for="firstname">{l s='First name'}</label>
                <input type="text" class="text" id="firstname" name="firstname" value="{if isset($smarty.post.firstname)}{$smarty.post.firstname}{/if}" />                
            </p>            
            <p class="textarea">
                <label for="other">{l s='Additional information'}</label>
                <textarea name="other" id="other" cols="26" rows="3">{if isset($smarty.post.other)}{$smarty.post.other}{/if}</textarea>
            </p>
            <p class="required text">
                <label for="phone_mobile">{l s='Mobile phone'}</label>
                <input type="text" class="text" name="phone_mobile" id="phone_mobile" value="{if isset($smarty.post.phone_mobile)}{$smarty.post.phone_mobile}{/if}" />
            <sup>*</sup>
            </p>
            <input type="hidden" class="text" name="alias" id="alias" value="{if isset($smarty.post.address_noname)}{$smarty.post.address_noname}{else}{$address_noname}{/if}" />
            <input type="hidden" class="text" name="create_noname" id="create_noname" value="1" />
        </fieldset>
        {$HOOK_CREATE_ACCOUNT_FORM}
        <p class="cart_navigation required submit">
            <input type="hidden" name="email_create" value="1" />
            <input type="submit" name="submitAccount" id="submitAccount" value="{l s='Register'}" class="exclusive" />
            <span><sup>*</sup>{l s='Required field'}</span>
        </p>
    </form>
Подскажите, пожалуйста, что я сделал не так и где нужно подправить. Очень нужно. Спасибо.