Home General Discussion

Service Catalog Customization - Remove favourites from Home Alternate page

CaterhamITSupportCaterhamITSupport Member Advanced IT Monkey ✭✭✭

Dear All,

I would like to remove the favorites from service catalog.

Could you help me with this?

Daniel

Best Answer

Answers

  • Konstantin_Slavin-BoKonstantin_Slavin-Bo Customer Ninja IT Monkey ✭✭✭✭

    You can add this to your custom.css:

    div[data-bind="visible: favRO"] {
     display: none;
    }
    
  • CaterhamITSupportCaterhamITSupport Member Advanced IT Monkey ✭✭✭

    Thank you for the help so quickly. That didnt work though.

    Daniel

  • Konstantin_Slavin-BoKonstantin_Slavin-Bo Customer Ninja IT Monkey ✭✭✭✭

    Did you make sure to clear your browser cache after adding the code?

  • CaterhamITSupportCaterhamITSupport Member Advanced IT Monkey ✭✭✭

    i did clear the cache and put in the custom.css.

  • Konstantin_Slavin-BoKonstantin_Slavin-Bo Customer Ninja IT Monkey ✭✭✭✭

    Hm, sounds strange. Are you sure, you're aren't referring to Top Requests and / or Top Knowledge Articles too? If you want all of that removed, you can target .topfav-row instead, so you'd add this to custom.css instead:

    .topfav-row {
     display: none;
    }
    
  • CaterhamITSupportCaterhamITSupport Member Advanced IT Monkey ✭✭✭

    Hi there

    When you hover over a service offering you can add it to your favorites.

    I want to remove this functionality.

  • CaterhamITSupportCaterhamITSupport Member Advanced IT Monkey ✭✭✭
    edited November 2019

    This doesn't seem to work? when i hover over a so it still allows to select and add.

Sign In or Register to comment.