medeth Posted April 17, 2019 Share Posted April 17, 2019 Buen dia! he estado trabajando con la version 1.7.5.1 y me he topado con algo... LA ESTRUCTURA CAMBIO TOTALMENTE necesito agregar este campo de confirmacion de password en 1.7.5.1 como lo hice en la version 1.6 con este tema: https://www.prestashop.com/forums/topic/265876-solved-how-to-add-the-password-confirm-field/ ya he encontrado la manera de agregar el campo siguiendo la guia de nadie https://victor-rodenas.com/2018/01/18/captcha-para-prestashop-1-7/ pero a la hora de la validacion estoy perdido... sabe alguien como hacer esta validacion en ps 1.7.5.1? Link to comment Share on other sites More sharing options...
burrots Posted April 17, 2019 Share Posted April 17, 2019 poerdon mi ignorancia, para q quieres añadir un campo de confirmación de password en el registro? Link to comment Share on other sites More sharing options...
Rodrigo B Laurindo Posted April 17, 2019 Share Posted April 17, 2019 public function hookvalidateCustomerFormFields($params) { foreach ($params['fields'] as $field) { if ($field->getName() == 'passwd') { $passwd = $field->getValue(); } if ($field->getName() == 'confirm_passwd') { if (isset($passwd) && $field->getValue() !== $passwd) { // está diferente $field->setErrors([$this->l('Mensaje de error de contraseña.')]); } } } return $params['fields']; } Intenta eso a ver si te ayuda, no he testado, puede que haya me equivocado en algo. No olvida registrar ValidateCustomerFormFields 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