How can I hide the 'Or Login Via' option in MiniOrange?

Hi,

I’m using a MiniOrange integration plan to allow my organization’s Volunteers to log in to our shop by using their WordPress credentials. This works great, but I’d like to remove the “Or Login Via” option so that they can only log in via MniOrange.

I already used a bit of code to hide the “Create a User” option as it’s not needed, but I need some help disabling the email login.

To be clear, here is the code I’m using to hide the account creation prompt:

});
[href=“/account”],[href=“/account/login”],[href=“/account/register”]{display:none;}

@Tadams1 - can you share this page link where you have this window?

https://minutemanresponse.shop

@Tadams1 - we need to use css, because miniorange buton has been integrated intoform, so removing form not possible

try this css

#customer_login .field, #customer_login a,#customer_login button{display:none;}

#customer_login #MOmyHeader p:last-child{display:none;}

@suyash1 that did the trick, Thanks!

1 Like