Skip to content

Instantly share code, notes, and snippets.

@skipjac
Created December 22, 2010 22:22
Show Gist options
  • Save skipjac/752193 to your computer and use it in GitHub Desktop.
Save skipjac/752193 to your computer and use it in GitHub Desktop.
change the message on the anonymous ticket submission page on zendesk
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