@jimnouvakis Hey sorry for the delay i can show the path i did to make work
in you dashboard go to “miniOrange Social Login, Sharing” > “Social Login” > “Display Options” and disable all the options from:
“Select the options where you want to display the social login icons”
After that go to your theme functions.php and copy and paste this code:
/**
* Call [miniorange_social_login] shortcode above login form
*/
add_action( 'woocommerce_login_form_start','add_login_btn' );
function add_login_btn() {
if ( shortcode_exists( 'miniorange_social_login' ) ) {
echo do_shortcode('[miniorange_social_login]');
//Code to execute if the shortcode is present
} else {
return false;
}
This will display the login buttons above the username Input on login form
If your theme have separate login and registration form you need to call the shortcode in your custom registration page here’s the code:
/**
* Call [miniorange_social_login] shortcode above registration form
*/
add_action( 'woocommerce_register_form_start','add_reg_btn' );
function add_reg_btn() {
if ( shortcode_exists( 'miniorange_social_login' ) ) {
echo do_shortcode('[miniorange_social_login]');
//Code to execute if the shortcode is present
} else {
return false;
}
I hope this will fix your problem