Clarity

 View Only
  • 1.  Is there a way to hide Participants link (Project Properties - Team)?

    Posted Sep 11, 2019 08:01 AM
    Is there a way to hide the Participants and Participant Groups link under the Team tab of a project?


    ------------------------------
    Thanks,
    Albert
    ------------------------------


  • 2.  RE: Is there a way to hide Participants link (Project Properties - Team)?

    Broadcom Employee
    Posted Sep 12, 2019 11:41 AM
    No.


  • 3.  RE: Is there a way to hide Participants link (Project Properties - Team)?
    Best Answer

    Posted Sep 13, 2019 08:23 AM
    Edited by Albert Vincentpaul Sep 13, 2019 09:20 AM
    Add this to the UI theme:

    a[title^="Participants"]
    {
    display: none;
    }

    a[title^="Participant Groups"]
    {
    display: none;
    }


    Regards
    NJ
    ------------------------------



  • 4.  RE: Is there a way to hide Participants link (Project Properties - Team)?

    Posted Sep 13, 2019 09:20 AM
    Thanks @Navdeep Joshi,

    It works. This is how it looks.






  • 5.  RE: Is there a way to hide Participants link (Project Properties - Team)?

    Posted Sep 13, 2019 09:23 AM
    @Navdeep Joshi

    From the code it looks like, it will hide any hyperlink with the title mentioned in the theme.
    So, one has to be careful about using it on links with same title across different pages. Is that right?


  • 6.  RE: Is there a way to hide Participants link (Project Properties - Team)?

    Posted Sep 13, 2019 09:36 AM
    Yes - correct :)

    ------------------------------
    Regards
    NJ
    ------------------------------



  • 7.  RE: Is there a way to hide Participants link (Project Properties - Team)?

    Posted Sep 13, 2019 09:41 AM
    Thanks