Viewing 4 replies - 1 through 4 (of 4 total)
  • 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 "...";
    }
    Thread Starter moscar1

    (@moscar1)

    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.

    Thread Starter moscar1

    (@moscar1)

    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.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘button/icon for standard login’ is closed to new replies.