Author |
|
PatrikIden Newbie
Joined: 28 May 2012 Location: Sweden
Online Status: Offline Posts: 9
|
Posted: 28 May 2012 at 8:35am | IP Logged
|
|
|
Hello, any boudy now if/how to remove the Remeber me Check box from login?
Thank you.
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 31 May 2012 at 1:18am | IP Logged
|
|
|
In most cases, removing WebMail interface elements (hiding them, actually) is done by assigning CSS class wm_hide to them. Sometimes, that class is assigned when some condition is true, removing the condition should work.
Look for the following code in index.php file:
Code:
<div class="<?php echo (USE_DB) ? 'login_table_block': 'wm_hide'; ?>">
<input tabindex="12" class="wm_checkbox" type="checkbox" value="1" id="sign_me" name="sign_me" />
<label for="sign_me" id="lang_SignMe" style="font-size: 12px;"><?php echo LANG_SignMe?></label>
</div> |
|
|
Replacing the first line with:
should do exactly what you're looking for.
--
Regards,
Igor, AfterLogic Support
|
Back to Top |
|
|