Disclaimer: This article is provided for instructional purposes only. Zendesk does not support or guarantee the code. Post any issues you have in the comments section or try searching for a solution online.
Question
How can I remove the Requests I'm CC'd On tab from the Help Center Requests page?
Answer
To remove the Requests I'm CC'd on tab from the Requests page, choose one of the following options:
Option 1
Go to Guide Admin > Customize Design > View theme > Edit code > style.css and paste the following code:
.my-activities-sub-nav ul li:nth-of-type(2){
display:none;
}
Option 2
Create a separate class in the requests_page.hbs file. For example, requests_page_filters.
Paste the following code into the style.css page:
.my-activities-sub-nav .requests_page_filters li:nth-child(2){
display:none
}
For more information on customizing your Help Center, see Customizing your Help Center theme (Guide Professional and Enterprise).

For the original conversation, see Removing the "Requests I'm CC'd On" link from the requests page.
0 Comments
Please sign in to leave a comment.