Search The ForumSearch   RegisterRegister  LoginLogin

AfterLogic WebMail Lite 7

 AfterLogic Forum : AfterLogic WebMail Lite 7
Subject Topic: Remove Remeber me check box Post ReplyPost New Topic
Author
Message << Prev Topic | Next Topic >>
PatrikIden
Newbie
Newbie
Avatar

Joined: 28 May 2012
Location: Sweden
Online Status: Offline
Posts: 9
Posted: 28 May 2012 at 8:35am | IP Logged Quote PatrikIden

Hello, any boudy now if/how to remove the Remeber me Check box from login?

Thank you.
Back to Top View PatrikIden's Profile Search for other posts by PatrikIden
 
Igor
AfterLogic Support
AfterLogic Support


Joined: 24 June 2008
Location: United States
Online Status: Offline
Posts: 6104
Posted: 31 May 2012 at 1:18am | IP Logged Quote Igor

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:

Code:
<div class="wm_hide">


should do exactly what you're looking for.

--
Regards,
Igor, AfterLogic Support
Back to Top View Igor's Profile Search for other posts by Igor
 

If you wish to post a reply to this topic you must first login
If you are not already registered you must first register

  Post ReplyPost New Topic
Printable version Printable version

Forum Jump

Powered by Web Wiz Forums version 7.9
Copyright ©2001-2004 Web Wiz Guide