jQuery( document ).ready(function() {
/*var clonee = jQuery('.woocommerce-terms-and-conditions-wrapper').clone();
$(".woocommerce-checkout-review-order-table").after(clonee);*/
jQuery( ".ms_gift" ).wrapAll( "
" );
jQuery( ".ms_main_gift_block" ).prepend( "
" );
$ = jQuery;
$('#enable_gift').click(function(){
if($(this).prop("checked") == true){
jQuery('.ms_main_gift_block').show();
}
else if($(this).prop("checked") == false){
jQuery('.ms_main_gift_block').hide();
}
});
if(jQuery('body').hasClass('woocommerce-checkout')){
var gift = getParameterByName('gift');
if( gift == 'yes' ){
jQuery('#enable_gift').prop('checked', true);
jQuery('.ms_main_gift_block').show();
}
}
//checkForRedirection()
});
function checkForRedirection() {
if (!location.pathname.includes("/global-partners")) {
jQuery.getJSON("https://api.db-ip.com/v2/free/self").then(function(data) {
if (data.countryCode !== "US") {
location.pathname = "/global-partners"
}
})
}
}