Jump to content

Mr, Mrs drop down on client sign up


POOLEworks

Recommended Posts

For prestashop 1.7 you need to edit template "\themes\your_theme\templates\customer\_partials\customer-form.tpl" and change:

{foreach from=$formFields item="field"}
{block "form_field"}
{form_field field=$field}
{/block}
{/foreach}

into this:

{foreach from=$formFields item="field"}
{if $field.name=='id_gender'}{continue}{/if}
{block "form_field"}
{form_field field=$field}
{/block}
{/foreach}

 

  • Like 1
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...