Skip to content

Instantly share code, notes, and snippets.

@moderatorwes
Last active August 29, 2015 14:02
Show Gist options
  • Save moderatorwes/47df82d3c2e982ed4acb to your computer and use it in GitHub Desktop.
Save moderatorwes/47df82d3c2e982ed4acb to your computer and use it in GitHub Desktop.
Zendesk: Community Lockdown
//Locking down the Community if an Official Answer has been selected
if ($(".answer-official-heading").length > 0) {
$('#new_answer').hide();
$(".answer-list-heading").hide();
$(".answers").hide();
}
else{
$('#new_answer').show();
$(".answer-list-heading").show();
$(".answers").show();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment