Max K
Forum Replies Created
-
Forum: Plugins
In reply to: [AJAX Login and Registration modal popup + inline form] Template OverrideHey,
Unfortunately I can’t find that filter ‘lrm/login_form_template’ inside the plugin, I’ll try to add it and will let you know.
Max
Hey, it’s restored 5 days ago
Forum: Plugins
In reply to: [AJAX Login and Registration modal popup + inline form] DesignHi,
The file to modify the popup styling is
/wp-content/plugins/ajax-login-and-registration-modal-popup/skins/default/skin.css
Some style could be also edited in the
/wp-content/plugins/ajax-login-and-registration-modal-popup/assets/lrm-core-compiled.css
But please note, after the plugin update all your changes will be lost, the better way to overrride styles in your child theme or using Custom CSS styles in the WP Customizer: https://www.wpbeginner.com/plugins/how-to-easily-add-custom-css-to-your-wordpress-site/
Also in the Pro version you could customize most of these things: https://docs.maxim-kaminsky.com/lrm/kb/customizing-skins-colors-pro-only/
Max
Hi,
You have added the new fields via the hooks?
I think you have copied the icon class from the email field.Hey,
As you can see:
- This code has been commented for many years
- There is nothing related to the?Backdoor, it’s only checking that the Admin notice hash is correct while?dismissing the admin notice:
// // Verify that data was not changed
// if ( $_GET['hash'] !== md5($_GET['key'] . NONCE_SALT . $_GET['save_to']) ) {
// wp_send_json_error();
// }
You can always upload it to the Virus Total, if you have any doubts.
- This reply was modified 1 year, 2 months ago by Max K.
Hi,
I did a test registration and got this message: “Registration was successful. We have sent you an email with your login information. Please use them to log into your account.”
Have you fixed the issue?
- This reply was modified 1 year, 3 months ago by Max K.
Hi,
About the question 2, the plugin uses default WP function “register_new_user” to process the registration.
You could use a following filter
https://developer.www.ads-software.com/reference/hooks/registration_errors/#comment-4467
to override the Error message
function myplugin_check_fields( $errors, $sanitized_user_login, $user_email ) { $errors = new WP_Error(); // Clear Error codee $errors->add( 'demo_error', __( '<strong>ERROR</strong>: Invalid credentials.', 'my_textdomain' ) ); return $errors; } add_filter( 'registration_errors', 'myplugin_check_fields', 10, 3 );
Hi,
I am not sure if your questions is still actual.
Actually, each user has his own unique user ID in the database and the login, so for example you could use this and it will not require any extra actions.
If this doesn’t fit to you, you could use this code from the link that you’ve provided:
https://wordpress.stackexchange.com/a/162702
About the displaying in the User Profile – this is depends on which Profile Plugin you are using.
Max
Hi,
You could use class “lrm-hide-if-logged-in”
And link like https://example.com/wp-login.php?action=logout
Forum: Plugins
In reply to: [AJAX Login and Registration modal popup + inline form] wp-admin redirectHey,
I just tested and I have close icon to hide it forever.
Duplicate solution also here:
The reCaptha uses your browser language, not the site language.
Hi,
It’s a system WP error so you have to translate this text for WordPress domain probably.
Max
Forum: Plugins
In reply to: [AJAX Login and Registration modal popup + inline form] Emogrifier missingHey to all, I’ll upload an update today.
Forum: Plugins
In reply to: [AJAX Login and Registration modal popup + inline form] Crocoblock conflictHi,
Hard to say, do you have access to the site Error Logs (maybe in the hosting panel)?
Max