Skip to content

Instantly share code, notes, and snippets.

@unlocomqx
Created October 27, 2020 13:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save unlocomqx/d6f337c0834f74d764a51b2b2e1b475b to your computer and use it in GitHub Desktop.
Save unlocomqx/d6f337c0834f74d764a51b2b2e1b475b to your computer and use it in GitHub Desktop.
$(function() {
if (+id_product_attribute === 3) {
$('#dsn-button, #dsn-container').hide();
} else {
$('#dsn-button, #dsn-container').show();
}
});
prestashop.on('updatedProduct', function(data) {
if (+data.id_product_attribute === 3) {
$('#dsn-button, #dsn-container').hide();
} else {
$('#dsn-button, #dsn-container').show();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment