Skip to main content
Answer

Freshservice requester portal branding

  • September 7, 2023
  • 2 replies
  • 53 views

Forum|alt.badge.img+5

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. :)

Best answer by Rutger Bockholts

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

2 replies

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

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


Forum|alt.badge.img+5
  • Author
  • September 19, 2023

Brilliant, thanks so much for this!