Skip to content

Instantly share code, notes, and snippets.

@unlocomqx
Created October 27, 2020 15:45
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/bcd3b6f57be410523eec3a4408322c69 to your computer and use it in GitHub Desktop.
Save unlocomqx/bcd3b6f57be410523eec3a4408322c69 to your computer and use it in GitHub Desktop.
$(function() {
if (+id_product_attribute === 3) {
$('#dsn-button, #dsn-product-footer').hide();
} else {
$('#dsn-button, #dsn-product-footer').show();
}
});
prestashop.on('updatedProduct', function(data) {
if (+data.id_product_attribute === 3) {
$('#dsn-button, #dsn-product-footer').hide();
} else {
$('#dsn-button, #dsn-product-footer').show();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment