Skip to content
jQuery(function($) {
var restrictedIDs = [52810];
var country = "US";
function markRestricted() {
if (country === 'AE') {
restrictedIDs.forEach(function(id) {
// Archive/shop page
$('a.add_to_cart_button[data-product_id="' + id + '"]').addClass('uae-restricted');
// Single product page
if ($('input[name="add-to-cart"]').val() == id) {
$('.single_add_to_cart_button').addClass('uae-restricted');
}
});
}
}
markRestricted();
$(document.body).on('wc_fragments_refreshed added_to_cart', markRestricted);
// Intercept clicks
$(document).on('click', '.uae-restricted', function(e) {
e.preventDefault();
$('#uae-restrict-popup').fadeIn();
return false;
});
// Close popup
$(document).on('click', '.uae-close-popup', function() {
$('#uae-restrict-popup').fadeOut();
});
});