Created
February 11, 2011 05:12
-
-
Save skipjac/821958 to your computer and use it in GitHub Desktop.
Change the Text under email on the anonymous ticket submit in Zendesk
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| message = 'If you previously signed up with Support'; | |
| message += '(to post to the Forum and/or create a Support ticket) please '; | |
| message += '<a href=\"login?return_to=http%3A%2F%2Fsupport.zendesk.com%2Frequests%2Fnew\">login</a>'; | |
| message += ' first to submit a request.'; | |
| //check to see if you are on the end users request page | |
| if (window.location.href.indexOf('anonymous_requests') >= 0) { | |
| jQuery('p:contains(If you are a registered user)').html(message); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment