In the file
\wp-content\plugins\sidebar-login\includes\class-sidebar-login-widget.php
line 294 (or thereabouts)
‘remember’ => true,
controls visibility of Remember Me check-box
line 295(or near)
‘value_remember’ => true
controls default value of box if it is visible
So
‘remember’ => true,
‘value_remember’ => false
will show the check box with un-ticked default
and
‘remember’ => false,
will not show the check-box and will not remember whatever ‘value_remember’ is set at, but it is neater to set
‘value_remember’ => false
in this case!