Show User Their Password

Theoretically, this could be achieved by saving a user’s password elsewhere, when he or she updates it. Note that this sort of thing is hardly ever recommendable. In almost all cases, there is a better architectural approach that renders having to be able to show plain-text passwords unnecessary. That being said, if you absolutely must … Read more

Automatically change page password

The post/page passwords are stored in the wp_posts table in the post_password field. You can try the following demo plugin to update the post password automatically with help of wp-cron. You might alternatively consider transients or custom post meta. <?php /** * Plugin Name: Auto Post-Password Changer * Description: Schedule a wp-cron password update event … Read more

Add new password rule to Ultimate Member register form

You have to do various things. But you can change the hook the Ultimate Member uses. They Use the Validation class. But keeping your need in mind, you can bypass the use of this class. This is the solution I think will work remove_action( ‘um_submit_form_register’, ‘um_submit_form_register’, 10 ); Now we will register new method. add_action( … Read more

Migrating users from .com to .org?

I don’t know if you can see the email addresss of your users in wordpress.com blog as i never used it. If you can, as you have not too many users you may try to add them manually from wordpress dashboard and send them an email with the password if you have access to the … Read more

Comments number message in password protected post

The only hook to change that is gettext: add_action( ‘loop_start’, ‘wpse_77028_switch_filter’ ); add_action( ‘loop_end’, ‘wpse_77028_switch_filter’ ); /** * Turn comment text filter on or off depending on global $post object. * * @wp-hook loop_start * @wp-hook loop_end * @return void */ function wpse_77028_switch_filter() { $func=”loop_start” === current_filter() ? ‘add_filter’ : ‘remove_filter’; $func( ‘gettext’, ‘wpse_77028_comment_num_text’, 10, … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)