I have install a auth0 plugin all site have sperate wordpress installtion and use seprate application and share single database (connection). I would like to implement using Universal Login page in website. I have configure with embeded login using shortcode as per plugin description. I want to do login and register using Universal login.
What I have configure :
Application configure and database setup
Get the HTML from a Hosted pages menu (i.e. auth0 dashboard )and convert into a custom page template
@@config@@ throw an error. I have pass static parameter.
<?php /* Template Name: CustomPageT1 */ ?>
Sign In with Auth0
body, html {
height: 100%;
background-color: #f9f9f9;
}
@vasims - To use Universal Login with the plugin, no extra code is needed. Just turn on “Universal Login Page” on the Features tab of the settings page. Once that’s saved, your wp-login.php page will automatically redirect. If you use shortcodes or widgets, you are using the embedded login form, not universal. If you want users to log in from another page, just use wp_login_url() in your template to link to that page.
Just to clarify … the universal login page is hosted at Auth0, not on your site. If you have an Auth0 login form showing on your site then you’re using embedded.
I just drop out idea of Universal login. I have configure social login G+ and facebook. G+ working good. When I try signup with facebook get following error :
Error:
There was a problem with your log in: This account does not have an email associated, as required by your site administrator. [error code: unknown]
That means you have Require Verified Email turned on in the WP settings but you’re not getting the email from Facebook. Check your Facebook connection settings in Auth0 > Connections > Social > Facebook and make sure you’re asking for that info on login.
If your theme uses the same process and hooks as the core process, then it should work fine. Otherwise, you’ll need to call the Management API directly.
Translate email into German like verification,welcome,change password
Translate all label into German as well as change button label text
customize verification email sent page
I have change in render_die() function is there any other way to do this? How can I make this secure so plugin update can’t override my changes?
Need to translate Success and Authentication Error text as well
I want to redirect all die page to custom page. This will be display in theme UI instead of stand alone page. I just need same thing my wordpress press.
Will you please let me know. How customise messages and text using dictionary in WordPress plugin . @josh.cunningham You are really helpful.
I have same question like this :
Thank you for the kind words, I’m happy to help!
Translating text depends on the text you want to translate. The thread link you posted is how to change the text on the Auth0 login form that appears on wp-login.php (or in shortcodes/widgets). That’s related to the “Lock Internationalization” link I posted above. Changing the text anywhere else (error messages during login, settings page in the admin, etc) requires using the gettext function as we don’t have a German translation for the plugin text.