Jump to content

Limitar a 15 caracteres el campo teléfono en el formulario de registro


Davidat1

Recommended Posts

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.

 

 

Captura-de-pantalla-2022-03-07-a-las-13.05.46.jpg

Link to comment
Share on other sites

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],
	.....
        ],
    ];

 

  • Like 1
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...