How do I enable 2FA by default for all users?
To enable two factor authentication for all users, add the following to your wp-config.php
file:
define('SS88_2FAVE_ENABLE_ALL', true);
To enable for all Administrators, add the following:
define('SS88_2FAVE_ENABLE_ADMINS', true);
To enable for all Editors, add the following:
define('SS88_2FAVE_ENABLE_EDITORS', true);
Please note: Once any of these features are enabled, the individual user account will not be able to disable 2FA.