MyaDB Posted June 11, 2021 Posted June 11, 2021 Hi, Please can you help me to hide anelement on my form registration the code is like this, how i can hide it <input type="text" placeholder="Prénom" required="" value="" name="firstname" class="form-control"> i have prestashop 1.7.7.3 thanks Share this post Link to post Share on other sites More sharing options...
nawres Posted February 28, 2022 Posted February 28, 2022 For fast solution : you can set default value for this <input type="text" placeholder="Prénom" required="" value="xxxx" name="firstname" class="form-control"> and after display none this input on css file (assets/custom.css) : .row .firstname { display: none !important; } it works on my case Share this post Link to post 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