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