POOLEworks Posted October 30, 2020 Share Posted October 30, 2020 Is there a way to remove this Mr/Mrs part of a sign up? Or at least add a Mz to it? Seems rather arbitrary. Client has several female clients that have found it objectionable. Link to comment Share on other sites More sharing options...
rrataj Posted October 30, 2020 Share Posted October 30, 2020 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} 1 Link to comment Share on other sites More sharing options...
POOLEworks Posted October 30, 2020 Author Share Posted October 30, 2020 That worked! Thank you. Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now