Author |
|
maxxiv1 Newbie
Joined: 28 April 2017 Location: Poland
Online Status: Offline Posts: 26
|
Posted: 26 March 2019 at 12:44pm | IP Logged
|
|
|
Hi.
How to add new item on tabs in Webmail 8 Pro?
For example, a link to a website.
Best Regards!
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 27 March 2019 at 1:48am | IP Logged
|
|
|
In modules/CoreWebclient/templates/HeaderView.html file, right before the following code:
Code:
<span class="item settings" data-bind="visible: bShowMobileSwitcher, click: switchToMobileVersion">
<span class="link" data-bind="i18n: {'key': '%MODULENAME%/ACTION_SHOW_MOBILE_VERSION'}"></span>
</span> |
|
|
add something like:
Code:
<a href="https://google.ru/" class="item logo">
Google
</a> |
|
|
Be sure to purge data/cache/ directory content to apply changes.
--
Regards,
Igor, Afterlogic Support
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 27 March 2019 at 1:50am | IP Logged
|
|
|
Also, if you might be looking for adding an actual screen with its own tab in top menu, check this one:
Integrating your web application
--
Regards,
Igor, Afterlogic Support
|
Back to Top |
|
|
maxxiv1 Newbie
Joined: 28 April 2017 Location: Poland
Online Status: Offline Posts: 26
|
Posted: 28 March 2019 at 11:58pm | IP Logged
|
|
|
Thank You!
|
Back to Top |
|
|