Skip to main content
Solved

Removing service request from new menu


Forum|alt.badge.img

Hello,

Is there any way to hide the “Request a Service” option in the New menu on the Portal site?

Thanks.

Best answer by eeha0120

Hi.

I’d actually recommend contacting support for this.

 

Regards,

View original
Did this topic help you find an answer to your question?

6 replies

eeha0120
Skilled Expert
Forum|alt.badge.img+12
  • Skilled Expert
  • 732 replies
  • Answer
  • June 13, 2023

Hi.

I’d actually recommend contacting support for this.

 

Regards,


Rutger Bockholts
Community Debut
Forum|alt.badge.img+4

@kse27, There are two ways to do this and that is related if you have publish the portal via the new no-node designer already.

 

  1. You have published the no-code designer already: If you open “Service Desk Rebranding” in the Admin menu, click on “Customize Support Portal“. Click on the background color behind the cards. On the right hand side you'll see the available cards/options. With a click on the eye icon behind the card title, you can hide/unhide these things. Don't forget to save and Publish the portal.
  2. You haven't published the no-code designer yet. Then click on “Customize Support Portal”, go via Layout & Pages to the Footer section in the middle of the screen. Below the existing code, add the following:

<script>
  var removeCardsUrl = [’/support/catalog/items’];
  CARDS = CARDS.filter(function(card) {
   return removeCardsUrl.indexOf(card.url) < 0;
  });
</script>

 

Click Save and Publish at the bottom of the page.

 

Let me know if this resolved your question.

 

Kind regards,

Rutger Bockholts

Freshworks

 


eeha0120
Skilled Expert
Forum|alt.badge.img+12
  • Skilled Expert
  • 732 replies
  • June 13, 2023
Rutger Bockholts wrote:

@kse27, There are two ways to do this and that is related if you have publish the portal via the new no-node designer already.

 

  1. You have published the no-code designer already: If you open “Service Desk Rebranding” in the Admin menu, click on “Customize Support Portal“. Click on the background color behind the cards. On the right hand side you'll see the available cards/options. With a click on the eye icon behind the card title, you can hide/unhide these things. Don't forget to save and Publish the portal.
  2. You haven't published the no-code designer yet. Then click on “Customize Support Portal”, go via Layout & Pages to the Footer section in the middle of the screen. Below the existing code, add the following:

<script>
  var removeCardsUrl = [’/support/catalog/items’];
  CARDS = CARDS.filter(function(card) {
   return removeCardsUrl.indexOf(card.url) < 0;
  });
</script>

 

Click Save and Publish at the bottom of the page.

 

Let me know if this resolved your question.

 

Kind regards,

Rutger Bockholts

Freshworks

 

Hi @Rutger Bockholts 

Just to double check:

That suggestion would hide the cards on the Service Portal Home, but I understand the inquiry is to hid this:

 

Will this suggestion of hiding the cards on the Support Portal Home will also hide such menu ?

 

 

Regards,

 


Forum|alt.badge.img
  • Author
  • Apprentice
  • 2 replies
  • June 13, 2023

@eeha0120 Yes, my inquiry was about the New menu (+) not the cards on the Support Portal homepage.  


Patrik_Seeger
Community Debut

Hello @kse27

I finally “cracked” this one today so I thought I’d share it since I came across your posts when searching for it. 😊

#request-dropdown > a.service-request{
  display:none !important;
}

Have a nice day!

Regards,

Patrik
 


Forum|alt.badge.img+6
  • Skilled Expert
  • 23 replies
  • October 23, 2023

Fab, just what i needed, other question though, can i hide things from requesters, but still keep them visible for agents?