Announcement

Collapse
No announcement yet.

How do I remove the Home tab ?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • How do I remove the Home tab ?

    After updating from 5.4.4 to 5.5.1 I noticed that tab in the vertical theme we use. In my opinion is redundant, since the home can be reached by clicking the company logo anyways. How do I remove it from the tab list?
    Last edited by tothewine; 12-17-2018, 05:03 PM.

  • #2
    There is no such an ability. Having a home tab (even redundant) is ubiquitous and expected by users.

    Comment


    • #3
      There is no home button in the horizontal menus.

      Comment


      • tothewine
        tothewine commented
        Editing a comment
        Looks like a bug yuri  :P

    • #4
      Originally posted by yurikuzn View Post
      There is no such an ability. Having a home tab (even redundant) is ubiquitous and expected by users.
      My problem is that it wastes vertical space (we have a lot of tabs) and our users grew accustomed to not having it. I think the easy solution is to just make it work like normal tab (e.g. "Stream") and leave it in the tab list by default.

      BTW what is the relevant php or json file to remove it by force ?
      Last edited by tothewine; 12-17-2018, 05:06 PM.

      Comment


      • #5
        You can just add css

        ul.navbar-nav > li[data-name="Home"] {
        display: none;
        }

        If you lack of vertical space you can hide rarely used tabs in the dropdown.

        Comment


        • tothewine
          tothewine commented
          Editing a comment
          Thanks! I will add that.
      Working...
      X