XF 2.2 Two-step verification setup problem

pupu

Member
Licensed customer
two.webp
How to hide Verification code via app option.
Only show the Email confirmation option?
 
I don't believe there's a way of properly disabling it. Just curious but why would you want to limit which security providers are available to your users?

This is some rather weird CSS to target it and hide it, but if the template changed, or another provider was ever added it could cause it to stop working:
Code:
[data-template="account_two_step"] .p-body-pageContent .block-body .block-row:first-of-type {
    display: none;
}
 
Back
Top Bottom