Jump to content

Hide firstname & lastname fields in address registration


Welele

Recommended Posts

Hi

Its possible to hide (not delete) thses fields. When customer is registered insert name & lastmane. Whe register his address, system autofill the fields. That is good, but have any option to hide them?

We want theses fields, and keep like required, but its possible to hide and register with autofilled data when address is registered? 

image.thumb.png.74f994f9b6ad4dc5a18e3a7a5d02c6a4.png

Best regards

 

 

 

Link to comment
Share on other sites

Kindly add the below code in the "\themes\{Your-theme}\assets\js\theme.js" file

if(prestashop.page.page_name == "address"){
          document.querySelector('#field-lastname').parentElement.parentElement.style.display = "none";
          document.querySelector('#field-firstname').parentElement.parentElement.style.display = "none";
}

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