Version 5 Login Widget no longer has an option to disable re

Posted by Community Admin on 04-Aug-2018 19:19

Version 5 Login Widget no longer has an option to disable remember me

All Replies

Posted by Community Admin on 06-Mar-2012 00:00

In previous versions of Sitefinity the Login Widget had a property called DisplayRememberMe that could be set false. Sitefinity 5 Login Widget does not have this property. Is there another way we can prevent the option from showing up?

Posted by Community Admin on 09-Mar-2012 00:00

Hello,

 To remove the checkbox place javascript widget on the page and enter this jQuery.

$(".sfCheckBoxWrapper").attr('style','display: none;');
On the javascript widget select the radiop button option "Before the closing body tag".

Regards,
Stanislav Velikov
the Telerik team
Do you want to have your say in the Sitefinity development roadmap? Do you want to know when a feature you requested is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items

Posted by Community Admin on 03-Aug-2012 00:00

Hi David,

I came across this while I was trying to solve the same dilemma. The solution Stanislav provided worked well, but in our case we also wanted to make sure the "Remember Me On this Computer" box was unchecked. I am providing this as another possible option.

$(".sfCheckBoxWrapper").hide();
$(".sfCheckBoxWrapper input").removeAttr("checked");

Regards,
Eric Fleming
Telerik Services Team

This thread is closed