Author |
|
Jeff U Groupie
Joined: 16 December 2007 Location: United States
Online Status: Offline Posts: 58
|
Posted: 31 December 2011 at 7:27am | IP Logged
|
|
|
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 |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 01 January 2012 at 11:41pm | IP Logged
|
|
|
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 |
|
|
Jeff U Groupie
Joined: 16 December 2007 Location: United States
Online Status: Offline Posts: 58
|
Posted: 02 January 2012 at 5:23pm | IP Logged
|
|
|
That does help. Thank you very much.
|
Back to Top |
|
|