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