Remember me not working

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
6 years ago
Hey,

Functionality of remember me on login page is not working on latest source 4.0

Any idea how to fix it
6 years ago
I would also like to get this resolved. My app (version 4.0) is deployed on Azure. I assume that remember me just fills in the user name (email), like most sites. That doesn't seem to be happening.
6 years ago
quickpos wrote:
Hey,

Functionality of remember me on login page is not working on latest source 4.0

Any idea how to fix it
.

This is working well with v4.

I just checked twice.

What I checked?

1. Access the store's login page
2. Enter credential and make sure "Remember me" is checked
3. Hit log in button
4. Close all browser windows
5. Open a new browser window and access the store: you're logged in.

Hope you'll understand.
4 years ago
hi there

I'm fairly new to NopCommerce - can anyone tell where the 'remember me' function is in settings? We want a customer to be able to select 'remember me' on first login. I'm hoping that this is a function and doesn't involve any code.

thanks
Roland
4 years ago
Shergold2 wrote:
hi there

I'm fairly new to NopCommerce - can anyone tell where the 'remember me' function is in settings? We want a customer to be able to select 'remember me' on first login. I'm hoping that this is a function and doesn't involve any code.

thanks
Roland


No, it is not a configurable setting. It should be visible on your login form. Check your template source code and see if that was not removed.

This code is from nopCommerce 4.1:


                        <div class="inputs reversed">
                            <input asp-for="RememberMe" />
                            <label asp-for="RememberMe"></label>
                            <span class="forgot-password">
                                <a asp-route="PasswordRecovery">@T("Account.Login.ForgotPassword")</a>
                            </span>
                        </div>
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.