Trouble with wordpress plugin

I am having some troubles correctly configuring the wordpress plugin. The problem is that I am missing the signup and other connection options from the universal login when it’s generated by the wordpress plugin. Options such as signups are enabled. We only want to accept users that signup via auth0. It works great if I use “Try it” in the customizer.

We have the following social connections:

  • Discord
  • Twitch
  • Google

We are seeing these in the universal login. But are missing:

  • Signup
  • Login with email

We are running a multi-site and the auth0 plugin is network activated. Signup is also network activated but it makes no difference to the universal login,.

These are the options we set:

// AUTH0 config options
define(‘AUTH0_ENV_DOMAIN’, getenv(‘AUTH0_DOMAIN’));
define(‘AUTH0_ENV_CUSTOM_DOMAIN’, getenv(‘AUTH0_CUSTOM_DOMAIN’));
define(‘AUTH0_ENV_CLIENT_ID’, getenv(‘AUTH0_CLIENT_ID’));
define(‘AUTH0_ENV_CLIENT_SECRET’, getenv(‘AUTH0_CLIENT_SECRET’));

define(‘AUTH0_ENV_REQUIRES_VERIFIED_EMAIL’, true);
define(‘AUTH0_ENV_PASSWORDLESS_ENABLED’, true);
define(‘AUTH0_ENV_AUTO_PROVISIONING’, true);

define(‘AUTH0_ENV_AUTO_LOGIN’, true);
define(‘AUTH0_ENV_AUTO_LOGIN_METHOD’, ‘’);

Do we have to manually change anything using the auth0_get_auto_login_connection filter?

Any help would be greatly appreciated.

This issue is solved now. Username/password authentication was disabled.

How did you resolve this? Where is the Username/password authentication feature you need to enable? Thanks.