Davidat1 Posted March 7, 2022 Share Posted March 7, 2022 Hola a todos. Estoy teniendo problemas para limitar el campo teléfono a 15 caracteres el campo teléfono del formulario de registro. He visto que en el foro hay varias respuestas comentando que modifique el themes/mi-theme/authentication.tpl Tengo la versión 1.7.8.3 y no encuentro el archivo. ¿Puede ser que haya cambiado de ubicación en la versión 1.7.8? Gracias de antemano. Link to comment Share on other sites More sharing options...
LyL Desarrollo Posted March 9, 2022 Share Posted March 9, 2022 Para cambiar lo que quieres debes ir al archivo classes/Address.php public static $definition = [ 'table' => 'address', 'primary' => 'id_address', 'fields' => [ .... 'city' => ['type' => self::TYPE_STRING, 'validate' => 'isCityName', 'required' => true, 'size' => 64], 'other' => ['type' => self::TYPE_STRING, 'validate' => 'isMessage', 'size' => 300], ------------cambiar esta linea o lo que es igual cambiar el 32 por un 16-------------- 'phone' => ['type' => self::TYPE_STRING, 'validate' => 'isPhoneNumber', 'size' => 32], ------------por esta linea-------------- 'phone' => ['type' => self::TYPE_STRING, 'validate' => 'isPhoneNumber', 'size' => 16], 'phone_mobile' => ['type' => self::TYPE_STRING, 'validate' => 'isPhoneNumber', 'size' => 32], ..... ], ]; 1 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