After 2.50 theme update
This functionality is in the theme automatically after 2.50 theme update
And can be tested here https://main.wprentals.org/
Before 2.50 theme update
Please add the following code in ajaxcalls.js at line 1410
the code is
setTimeout(function(){ jQuery('#reveal_login').trigger('click'); }, 3000);
After the “you can login” message is displayed the script will wait for 3 seconds and then display the login form. If you want to change the waiting duration replace the 3000 with your number (1sec = 1000 )
For mobile login you have to do almost the same thing
add this code in ajaxcalls.js around line 1040 (in function wpestate_register_wd_mobile)
setTimeout(function(){ jQuery('#widget_login_sw_mobile').trigger('click'); }, 3000);