Email Woocommerce customer a link to login and set a password for their automatically created account
Email Woocommerce customer a link to login and set a password for their automatically created account
Email Woocommerce customer a link to login and set a password for their automatically created account
If an Application Password is accidentally revoked, is there any way to restore it?
Create Application Password when User Registers
Application password still works even after user is disabled / expired
Check the error.log files in site root and wp-admin folder for any clues. It’s also possible a plugin is interfering with the mail() command – maybe one that changes the login? You could temp disable all plugins and then try the password reset process. If it works then, enable plugins one at a time to … Read more
TYPO3 to WordPress Migration (Users)
Do you use elementor? It could be this: “The critical-severity flaw is tracked as CVE-2023-32243 and impacts Essential Addons for Elementor versions 5.4.0 to 5.7.1, allowing unauthenticated attackers to arbitrarily reset the passwords of administrator accounts and assume control of the websites.” https://www.bleepingcomputer.com/news/security/hackers-target-vulnerable-wordpress-elementor-plugin-after-poc-released/amp
In case somebody needs help about my topic, I’ve fixed the notice error by modifying the original code as following: // BYPASS PASSWORD PRETECTED PAGE URL add_filter( ‘post_password_required’, function( $returned, $post ) { if ( !is_admin() ) { if (strpos($_SERVER[‘REQUEST_URI’], ‘pwd’) !== false){ if( $returned && ( $_GET[‘pwd’] == $post->post_password ) ) $returned = false; … Read more
Figured it out. I just needed to be using $_SERVER[‘HTTP_REFERER’] instead: //Modify password reset message and include redirect to referring page add_filter( ‘retrieve_password_message’, ‘collab_retrieve_password_message’, 10, 4 ); function collab_retrieve_password_message( $message, $key, $user_login, $user_data ) { $site_name = wp_specialchars_decode( get_option( ‘blogname’ ), ENT_QUOTES ); $message = __( ‘Someone has requested a password reset for the following … Read more
Log in a user upon password reset?