Jump to content

Remove some filed from adrress


mmhtaseb

Recommended Posts

  • 2 years later...

For exemple for removing country

Replace this in theme/address.tpl
            {if $field_name eq 'Country:name' || $field_name eq 'country' || $field_name eq 'Country:iso_code'}
                <div class="required form-group">
                    <label for="id_country">{l s='Country'} <sup>*</sup></label>
                    <select id="id_country" class="form-control" name="id_country">{$countries_list}</select>
                </div>
            {/if}
By this
            {if $field_name eq 'Country:name' || $field_name eq 'country' || $field_name eq 'Country:iso_code'}
                <div class="form-group">
                    <label class="hidden" for="id_country">{l s='Country'} <sup>*</sup></label>
                    <select id="id_country" class="form-control hidden" name="id_country">{$countries_list}</select>
                </div>
            {/if}

Link to comment
Share on other sites

Go to: Improve -> International -> Location , then edit  Country.

Find Address format, and add/remove line as you like.

Need to change email with mobile  number.

 You have mobile number in those fields.

Link to comment
Share on other sites

  • 1 month later...

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...