Plugin Author
Miled
(@miled)
there are a couple of hooks to append and prepend html content to wsl widget: wsl_render_login_form_start and wsl_render_login_form_end.
you may call them like this :
add_action('wsl_render_login_form_end', 'append_content_to_wsl_widget' );
function append_content_to_wsl_widget(){
echo "...";
}
and Do I need to put this code on the function.php?
Plugin Author
Miled
(@miled)
yes, but you will have to replace the “…” with the message you want to display.
Thank you very much, I’ve done it, but his solution includes the button below the social buttons, not beside them.
Is there any way to add the button, and display this button next to the others?
Thank you again.
Oscar.