Search The ForumSearch   RegisterRegister  LoginLogin

AfterLogic WebMail Lite 7

 AfterLogic Forum : AfterLogic WebMail Lite 7
Subject Topic: Hide certain buttons Post ReplyPost New Topic
Author
Message << Prev Topic | Next Topic >>
Jeff U
Groupie
Groupie


Joined: 16 December 2007
Location: United States
Online Status: Offline
Posts: 58
Posted: 31 December 2011 at 7:27am | IP Logged Quote Jeff U

Using the no database option, is it possible to hide the "Move To Folder" button and "Manage Folders" at the bottom of the inbox column since these are not really an option anymore? How and were are they created?
Back to Top View Jeff U's Profile Search for other posts by Jeff U
 
Igor
AfterLogic Support
AfterLogic Support


Joined: 24 June 2008
Location: United States
Online Status: Offline
Posts: 6104
Posted: 01 January 2012 at 11:41pm | IP Logged Quote Igor

In WebMail Pro user interface, the standard way of hiding elements is to replace their CSS style with wm_hide. For Manage Folders link in folder pane, that's done in js/mail/folders-pane.js file, line ~207:

Code:
this._manageLinkContainer = CreateChild(contentDiv, 'div', [['align', 'center'], ['class', 'wm_manage_folders']]);


Replace 'wm_manage_folders' with 'wm_hide' in there.

As for "Move to Folder", there are two toolbars this item is found in, since there are two layout modes. In js/mail/message-list-top-screen.js and js\mail\message-list-central-pane.js files, locate the code:

Code:
var div = CreateChild(document.body, 'div');
this._moveMenu = div;
div.className = 'wm_hide';
this._toolBar.addMoveItem(TOOLBAR_MOVE_TO_FOLDER, PopupMenus, div, false);


The code should be commented out or removed.

Hope this helps!

--
Regards,
Igor, AfterLogic Support



Back to Top View Igor's Profile Search for other posts by Igor
 
Jeff U
Groupie
Groupie


Joined: 16 December 2007
Location: United States
Online Status: Offline
Posts: 58
Posted: 02 January 2012 at 5:23pm | IP Logged Quote Jeff U

That does help. Thank you very much.
Back to Top View Jeff U's Profile Search for other posts by Jeff U
 

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