Question
How do I hide the Submit a request link from my Help Center in Zendesk Guide?
Answer
Help Center comes with a set of helpers that perform certain actions. Delete the new_request link helper from the template of your Help Center to remove the Submit a request link.
To remove the helper from your template
- In Guide Admin, click the Customize design icon (
) in the sidebar.
- Click the blue Customize link on the theme you want to edit to open it.
- Click Edit Code.
- In the Templates section, click header.hbs and remove the following line from your template:
{{link 'new_request' class='submit-a-request'}}
- Then, click article_page.hbs and remove the following line from your template to remove the submit a request link on articles:
<div class="article-more-questions">
{{request_callout}}
</div> - Click Publish.
Once you refresh your browser, the button should be gone as well as the link added on articles.
If you want to create an email only Help desk, see the article: Setting up to provide email-only support.
17 Comments
When the "Submit a Request" button is removed, we expect that logged-in users won't be able to submit any ticket, but if they type in the browser the address for sending a request, as "/request/new", they will land in the ticket form page, and they'll be able to submit a ticket, won't they?
Any ideas for solving this issue? Only JavaScript?
You could change the contents of the submit a request page. Go to Edit Code, and open the new_request_page.hbs
You can change the title of the page, by replacing everything between the <h1></h1> tag
<h1>
{{t 'submit_a_request'}}
<span class="follow-up-hint">
{{follow_up}}
</span>
</h1>
And then you can hide the request form by commenting it out, like this:
{{!--<div id="main-content" class="form">
{{request_form wysiwyg=true}}
</div>--}}
And add whatever text you want there, such as instructions about what the user should do if they want help.
I would like to remove the link to the contact page from one particular article. Every other article should allow people to click through to the contact form, but there is one article that should not. Is there a way to do this?
@... Samford
You can exclude the contact page link from a specific article using the helper below
Navigate to article_page.hbs and search for an article-more-questions class and update class with isnt helper
-sushant
Perfect! Thank you, @...!
Hi, I'm using the Vertio theme on the Zendesk page of my company. Unfortunately the "Sumbit a request" button is not appearing and in the Theme settings it doesn't seem something I can enable. Could please anyone help me? DistroKid Amy Gracer Admin
Hi Matteo,
I'd start by adding the following to your Header..hbs within the div class="nav-wrapper", like below
I'd like to remove the "submit a request" link when the user is not logged on, and display the link when the user is logged on. Does anyone know of a way to accomplish this?
Hi Doug,
Did you try the tip in this article?
https://support.zendesk.com/hc/en-us/community/posts/4409222781850-Hiding-the-Submit-a-Request-button-until-signed-in
Thank you Amy. I did not see that article, but I just found this one and it works!
https://support.zendesk.com/hc/en-us/community/posts/4409506826394-Allow-only-signed-in-users-to-submit-a-ticket
Yay! Glad to hear it, Doug :)
Hey there, is there a way to filter out organizations that shouldn't be allowed to submit tickets? Use case: We don't want reseller customers to submit tickets to our support team.
You could create a ticket that looks for new tickets from one or more specified Organizations, replies with instructions for how they should get support, and closes the ticket.
There is no Edit Code button in my Aarhus (Pro) theme, which is the Live theme that is being used. There is an Edit Code button in my Copenhagen theme, which is in the Theme Library. But I want to remove the link from my Live Aarhus theme.
I'm using the Copenhagen theme. I don't have an "edit code" button. Do I need to upgrade to get that functionality?
Hey Ari, it does look like you don't have access as your Guide plan is Guide Lite. You can view what that plan includes here: https://support.zendesk.com/hc/en-us/articles/4408823905434-About-the-Zendesk-Guide-plan-types
Please sign in to leave a comment.