This topic has 1 reply, 2 voices, and was last updated 8 years by sharmstr.

  • Author
  • #97559
     montheryounis
    Participant

    dears, i need to change the position of the facebook login, i want it to before the login form not after it, i searched if there is a theme options for that but i didnt find one, could you please help me with this.

    #97590
     sharmstr
    Moderator

    Since you’re using a plugin, ask the developers of Theme My Login if there is an action or filter to insert the button at the top of the form. If so, you can add something like this in your child theme’s function.php file.

    This removes the button from the bottom of the form…

    COPY CODE
    
    add_action('init','remove_fb_button');
    function remove_fb_button() {
    	remove_action( 'login_form', 'kleo_fb_button', 10 );	
    }
    

    This would add the button to the top if the plugin has a filter called ‘login_form_top’…

    COPY CODE
    
    apply_filters( 'login_form_top', 'kleo_fb_button', 10 );
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.

Log in with your credentials

Forgot your details?