Server IP : 162.213.251.212 / Your IP : 18.222.127.152 [ Web Server : LiteSpeed System : Linux business55.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : allssztx ( 535) PHP Version : 8.1.31 Disable Function : NONE Domains : 1 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/root/home/allssztx/./www/PIQTV/wp-content/themes/woodmart/js/scripts/global/ |
Upload File : |
/* global woodmart_settings */ (function($) { woodmartThemeModule.ageVerify = function() { if ( typeof Cookies === 'undefined' ) { return; } if (woodmart_settings.age_verify !== 'yes' || Cookies.get('woodmart_age_verify') === 'confirmed') { return; } $.magnificPopup.open({ items : { src: '.wd-age-verify' }, type : 'inline', closeOnBgClick : false, closeBtnInside : false, showCloseBtn : false, enableEscapeKey: false, removalDelay : 600, tClose : woodmart_settings.close, tLoading : woodmart_settings.loading, fixedContentPos: true, callbacks : { beforeOpen: function() { this.wrap.addClass('wd-popup-slide-from-left'); } } }); $('.wd-age-verify-allowed').on('click', function(e) { e.preventDefault(); Cookies.set('woodmart_age_verify', 'confirmed', { expires: parseInt(woodmart_settings.age_verify_expires), path : '/', secure : woodmart_settings.cookie_secure_param }); $.magnificPopup.close(); }); $('.wd-age-verify-forbidden').on('click', function(e) { e.preventDefault(); $('.wd-age-verify').addClass('wd-forbidden'); }); }; $(document).ready(function() { woodmartThemeModule.ageVerify(); }); })(jQuery);