Wiry merchant - "Submit a Request" on homepage of helpcenter
How do I set the "Submit a request" page to be the home page? I then just went to make it so users can easily/simply submit tickets:
This is a great example of what I'd want with a few aesthetic changes:
-
Hi @Assad,
Can you give me a little more details on exactly what you are looking to do.
-
I was trying to do this as well and I think I came to the conclusion it wasn't doable, or at least easily-doable. I used a hack that just redirects the landing page to the requests page. Stick this in your template Javascript:
For new requests as landing page:
if(document.URL == "https://yourdomain.zendesk.com/hc/en-us"){
window.location.replace("https://yourdomain.zendesk.com/hc/en-us/requests/new");
}Show users requests as landing page (my preference):
if(document.URL == "https://yourdomain.zendesk.com/hc/en-us"){
window.location.replace("https://yourdomain.zendesk.com/hc/en-us/requests");
}
Bitte melden Sie sich an, um einen Kommentar zu hinterlassen.
2 Kommentare