To prevent certain organizations from submitting tickets in Zendesk, you can set up a trigger.
Create a trigger that identifies new tickets from specified organizations and automatically replies with instructions on how they should get support, then closes the ticket. This method allows you to manage which organizations can submit tickets, ensuring that your support resources are allocated appropriately.
To remove the 'Submit a request' link from your Zendesk help center, you need to edit the template code. Start by navigating to Guide and clicking the Customize design icon in the sidebar. Choose the theme you want to work with and select…
Yes, you can hide the 'Submit a request' link for specific articles in Zendesk by using a helper in your code. To do this, navigate to the article_page.hbs file and search for the 'article-more-questions' class. Update this class with the 'isnt'…
You can customize the 'Submit a request' page in Zendesk by editing the newrequestpage.hbs file. To change the title of the page, replace the text between the
tags. If you want to hide the request form, you can comment it out in the…Yes, you can configure Zendesk to display the 'Submit a request' link only to logged-in users. This can be achieved by modifying the code to check the user's login status before displaying the link. By doing so, you ensure that only authenticated…