Skip to content

Instantly share code, notes, and snippets.

@skipjac
Created March 1, 2011 16:41
Show Gist options
  • Select an option

  • Save skipjac/849418 to your computer and use it in GitHub Desktop.

Select an option

Save skipjac/849418 to your computer and use it in GitHub Desktop.
This widget will hide the registration links in Zendesk on the login page
$j('#top-right a:contains(sign up)').hide();
if (window.location.href.indexOf('access') >= 0) {
$j('h2:contains(New to Sutoka)').parent().hide();
$j('h2:contains(No password)').parent().hide();
}
@skipjac

skipjac commented Aug 30, 2011

Copy link
Copy Markdown
Author

you need to replace the "New to Sutoka" with the text for your helpdesk

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment