If you are using a WordPress custom login form or a login form from a plugin we currently do not integrate with, below is a code snippet to make our user redirection after log in previous/referrer page feature work with it.
add_action('wp_head', function() {
if(is_page(1817) && class_exists('LoginWPLibsodiumRedirectionsInit')) {
LoginWPLibsodiumRedirectionsInit::get_instance()->save_previous_page();
}
});
Don’t forget to replace 1817 with the ID of your login page.
How to get your login page ID:
- Navigate to your WP Dashboard > Pages tab, hover your mouse over the desired page, or ‘Edit.’ Check the lower bottom, and you will find the ‘post=ID’ for your login page.