Last active
August 9, 2021 14:28
-
-
Save biswajitpaul01/5e9194729c5f65b1da26938801c7bf4e to your computer and use it in GitHub Desktop.
WooCommerce BlockUI Examples
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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