Skip to content

Instantly share code, notes, and snippets.

@moderatorwes
Last active June 8, 2021 00:47
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save moderatorwes/1ada9b4edcfb72912d2d to your computer and use it in GitHub Desktop.
Save moderatorwes/1ada9b4edcfb72912d2d to your computer and use it in GitHub Desktop.
Zendesk: Send Category to Community (Humble Squid Theme)
//send category links to community - Change category and google.com to your helpcenter
$('a').each(function() {
var value = $(this).attr('href');
if(value=='/hc/en-us/categories/200108526-Technical')
{
$(this).attr('href', 'http://google.com');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment