My WordPress password for admin account is changing automatically

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

Bypass a WordPress Password Protected Page via url

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

‘random_password’ filters not taking effect

I think, your PHP syntax is wrong. Try these, function wpgenerapass_generate_password( $password, $length, $special_chars, $extra_special_chars ) { $chars=”abcdefghijklmnopqrstuvwxyz”; $chars .= ‘ABCDEFGHIJKLMNOPQRSTUVWXYZ’; $chars .= ‘0123456789’; $chars .= ‘!@#$%^&*()’; if ( $extra_special_chars ) { $chars .= ‘-_ []{}<>~`+=,.;:/?|’; } $wpgenerapass_password = ”; // Initialize the password string $password_length = 8; for ( $i = 0; $i < … Read more

WordPress reset password button not working

The markup of your button is <input disabled=”” class=”woocommerce-Button button” value=”Reset Password” type=”submit”> it shouldn’t be disabled, removing the disabled attr doesn’t seem to fix the problem, but I think that this button is “Decoration”, and it is not associated with any ajax request, the theme default functionality for reset password seems to open the … Read more

Reset Password – change from name and email address. It stucks at admin. Want to change it to info

As you can see here, WordPress will use WordPress as sender name and wordpress@<SITENAME> as sender email, if these params were note passed to wp_mail. You can use wp_mail_from and wp_mail_from_name filters to modify these values though. So if you want to change the sender e-mail address, just use this code: add_filter( ‘wp_mail_from’, function( $email … Read more