How do I remove the Home tab ?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • tothewine
    Active Community Member
    • Jan 2018
    • 373

    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.
  • yuri
    Member
    • Mar 2014
    • 8440

    #2
    There is no such an ability. Having a home tab (even redundant) is ubiquitous and expected by users.
    If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.

    Comment

    • peterberlin
      Active Community Member
      • Mar 2015
      • 1004

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

      Comment


      • tothewine
        tothewine commented
        Editing a comment
        Looks like a bug yuri  :P
    • tothewine
      Active Community Member
      • Jan 2018
      • 373

      #4
      Originally posted by yurikuzn
      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

      • yuri
        Member
        • Mar 2014
        • 8440

        #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.
        If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.

        Comment


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