Hi,
Now, it works. The account page settings was the profile page that I was created. And after I changed the settings to my change password page it worked.
But I have a code to redirect the user to another page when I change the password successfully. When I use this code the change password doesn’t work.
My code:
add_action( 'um_change_password_process_hook', 'my_change_password_process', 10, 1 );
function my_change_password_process( $post ) {
header("Location: https://mydomain.com.br/mypage/");
die();
}
How can I redirect my user to another page after change password?
Regards.