Skip to content

Instantly share code, notes, and snippets.

@biswajitpaul01
Last active August 9, 2021 14:28
Show Gist options
  • Save biswajitpaul01/5e9194729c5f65b1da26938801c7bf4e to your computer and use it in GitHub Desktop.
Save biswajitpaul01/5e9194729c5f65b1da26938801c7bf4e to your computer and use it in GitHub Desktop.
WooCommerce BlockUI Examples
// Add woocommerce class in body
<body <?php body_class('woocommerce'); ?>
// Set BlockUI on any element
jQuery(element).block({
message: null,
overlayCSS: {
cursor: 'none',
background: '#fff',
opacity: 0.6
}
});
// Set BlockUI on any element
jQuery(element).unblock();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment