Created
December 22, 2010 22:22
-
-
Save skipjac/752193 to your computer and use it in GitHub Desktop.
change the message on the anonymous ticket submission page on zendesk
This file contains 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.tuneupmedia.com%2Frequests%2Fnew\">login</a>'; | |
message += ' first to submit a request.'; | |
//check to see if you are on the end users anonymous 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