Jump to content

Customer phone number input


Recommended Posts

I don't believe you can configure to remove registration fields, someone correct me if I am wrong.

 

The way I would do this is to edit the themes authentication.tpl file and just comment out or remove the mobile phone field.  Then you can also remove or reword the warning message

        <p style="margin-left:50px;">{l s='You must register at least one phone number'} <sup style="color:red;">*</sup></p>
        <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="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}" />
        </p>

You probably need to make a similar change to address.tpl
 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...