When this plugin is active, Yoast SEO XML Sitemap does not work.
Also it causes problem with another plugin called Tab Groups. I’ve contacted the developer of Tag Groups and he identified the problem as this:
“The main file auto-login-after-registration.php ends with ?> but then still a new line follows afterwards. Removing the ?> should do the trick, if you want to keep using it.”
]]>I’d like position login and register panels in the middle of page,
not at the top of page.
Like:
[some text and buttons]
[login]
some text and buttons]
[register]
some text and buttons]
But in this plugin, login and register forms always fixed at the top of page.
Can I turn off this feature?
I want that if any new user will register on my website,one mail should have sent on admin mail id that says new user has registered on your website. Can you please help me to add this functionality on this plugin?
Thanks in advance
]]>Hi there,
Would it be possible to send a notification email to the new user with the username and password login details?
Many thanks,
Jeff
https://www.ads-software.com/plugins/auto-login-after-registration/
]]>Hi there,
Is it possible to customise the forms? For example I would like to remove First name and Last name and I would like to add a Confirm email field.
Many thanks
Jeff
https://www.ads-software.com/plugins/auto-login-after-registration/
]]>I noticed that, as soon as the registration form appears on the screen, the WordPress debug log registers two messages, about errors in the php code:
[03-Jun-2016 18:39:44 UTC] PHP Notice: Undefined index: com_submit in D:\Var\www\html\wp-content\plugins\auto-login-after-registration\auto-login-after-registration.php on line 62
[03-Jun-2016 18:39:44 UTC] PHP Notice: Undefined variable: error_msg in D:\Var\www\html\wp-content\plugins\auto-login-after-registration\auto-login-after-registration.php on line 109
It happens because a variable value is tested, before checking if the variable, at that time, is already set. The problem can be corrected as follows:
ORIGINAL LINE 62:
if(sanitize_text_field( $_POST['com_submit']) != ''){
FIXED LINE 62:
if(array_key_exists('com_submit', $_POST) && sanitize_text_field( $_POST['com_submit']) != ''){
ORIGINAL LINE 109:
<?php if($error_msg!='') { ?><div class="error"><?php echo $error_msg; ?></div><?php } ?>
FIXED LINE 109:
<?php if(isset ($error_msg) && $error_msg!='') { ?><div class="error"><?php echo $error_msg; ?></div><?php } ?>
https://www.ads-software.com/plugins/auto-login-after-registration/
]]>How can I use it with Buddypress?
https://www.ads-software.com/plugins/auto-login-after-registration/
]]>Notice: Undefined index: com_submit in auto-login-after-registration.php on line 123. I tried for the isset condition but got error to be using null
https://www.ads-software.com/plugins/auto-login-after-registration/
]]>