Skip to main content

Hi. I am currently customising our business requester / front end portal in Freshservice and I’m trying to work out how I can hide OR remove the bottom section (as shown in the attached image). Does anyone know if this can be done? TIA. :)

Hi @Tyne.garton,

 

You can use CSS/Custom Stylesheet code for this to hide the whole ticket section on the portal home page, see code below. This code will not hide the “Tickets” option in the hamburger menu (top left corner of each page):

 

#home-page-container #home-lists-container {
visibility: hidden;
}

 

regards,

 

Rutger Bockholts

Freshworks


Brilliant, thanks so much for this!