Este hilo está resuelto. Aquí tiene una descripción del problema y la solución.
Problem:
Customize login page
Solution:
The output of shortcode [wpv-login-form] is just a "copy" of the WordPress Login Form. It does not add any custom HTML structure, only outputs what the native WordPress function does.
To customize the Labels, errors, redirect etc..etc.. you will need a Custom Code that produces a Customized Login Form, on your own.
This support ticket is created hace 6 años, 4 meses. There's a good chance that you are reading advice that it now obsolete.
This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.
Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.
Hoy no hay técnicos de soporte disponibles en el foro Juego de herramientas. Siéntase libre de enviar sus tiques y les daremos trámite tan pronto como estemos disponibles en línea. Gracias por su comprensión.
Hi Minesh,
i am using the login shortcode.
i would like to customize the login page so it looks professional.
i need to add
1. notification upon successfull login , logout , registration,
2. email notifications.
3. error messages if password field empty
4. username field not filled with condition:
a. already have such username ,
b. other conditions.
sorry if its long request hope you can guide me , ill share some of my code that found on other site as well to confirm if its usable.
Hello. Thank you for contacting the Toolset support.
Well - The output of shortcode [wpv-login-form] is just a "copy" of the WordPress Login Form. It does not add any custom HTML structure, only outputs what the native WordPress function does.
To customize the Labels, errors, redirect etc..etc.. you will need a Custom Code that produces a Customized Login Form, on your own.
i was trying to add some security to login page and found this enlace oculto
However i think the fn is no longer valid since wp is now accepting both username OR email , could you help me find the issue there ? ive asked the blogger too.
i think its here : $user = get_user_by("user_email", $email) ;
function user_captcha_authenticate($user,$username,$email,$password) {
$time = date('njhi');
$submission = $_POST['user_catpcha'];
$user = get_user_by('login', $username);
//need to add this ??
$user = get_user_by("user_email", $email) ;
if (!$user||empty($submission)||$submission != $time) {
remove_action('authenticate','wp_authenticate_username_password',20);
return new WP_Error('die','<strong>ERROR</strong>: Wrong Captcha!'); }
return; }
add_filter('authenticate','user_captcha_authenticate',10,3);
Well - I would like to help you but I've to work within predefined boundary of our support. This is pure custom programming which is beyond the scope of our support policy. If you need help for such custom code, please feel free to contact our certified partners.
=> https://toolset.com/contractors/
Please kindly open a new ticket with your each new question. This will help other users searching on the forum. Thank you for understanding.
Hi Minesh , i think you got me wrong , the codes are working in wp-admin pages [core wp] but not in the toolset short-coded pages.
searching further i found out that indeed toolset has its own filters for to the login form .
what i am asking is how to adjust this code so that it works on the toolset login shortcodes, i guess ill have to open separate ticket for each .
However, still I'm taking your request to add Toolset hooks and filters for login form shortcode and report it to concern department and add your voice to it. Please note that there is no ETA on it.