| Server IP : 51.254.39.36 / Your IP : 216.73.217.109 Web Server : Microsoft-IIS/10.0 System : Windows NT WIN-12GDIEC772I 10.0 build 20348 (Windows Server 2022) AMD64 User : IWPD_21(allbatf787) ( 0) PHP Version : 8.3.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Inetpub/vhosts/allbat-sb.fr/httpdocs/wp-content/plugins/kadence-recaptcha/js/ |
Upload File : |
if ( typeof wc_checkout_params !== 'undefined' ) {
jQuery( document.body ).on( 'checkout_error', function(){
setTimeout(function(){
if(typeof turnstile != "undefined") {
jQuery('form').find( '.cf-turnstile' ).each( function(e) {
const id = e.getAttribute('id');
if( id ) {
turnstile.render('#' + id)
} else {
turnstile.render('.cf-turnstile')
}
});
}
}, 100);
});
jQuery( document.body ).on( 'updated_checkout', function(){
setTimeout(function(){
if(typeof turnstile != "undefined") {
jQuery('form').find( '.cf-turnstile' ).each( function(key, e) {
const id = e.getAttribute('id');
if( id ) {
turnstile.render('#' + id)
} else {
turnstile.render('.cf-turnstile')
}
});
}
}, 100);
});
jQuery( document.body ).on( 'cfw_login_modal_open', function(){
setTimeout(function(){
if(typeof turnstile != "undefined") {
jQuery('#cfw_login_modal_form').find( '.cf-turnstile' ).each( function(key, e) {
const id = e.getAttribute('id');
if( id ) {
turnstile.render('#' + id)
} else {
turnstile.render('.cf-turnstile')
}
});
}
}, 100);
} );
}
( function ( ) {
'use strict';
const wc_turnstile = {};
const CHECKOUT_STORE_KEY = 'wc/store/checkout';
/**
* Get the order attribution data.
*
* Returns object full of `null`s if tracking is disabled or if sourcebuster.js is blocked.
*
* @returns {Object} Schema compatible object.
*/
wc_turnstile.getTokenData = function( retryCount ) {
const attempts = typeof retryCount === 'number' ? retryCount : 0;
const turnstileItem = document.querySelector("form.wc-block-components-form .cf-checkout-turnstile");
if ( ! turnstileItem || typeof turnstile === 'undefined' ) {
if ( attempts < 10 ) {
window.setTimeout( function() {
wc_turnstile.getTokenData( attempts + 1 );
}, 200 );
}
return;
}
const existingWidgetId = turnstileItem.dataset.turnstileWidgetId;
if ( existingWidgetId ) {
turnstile.reset( existingWidgetId );
return;
}
const widgetId = turnstile.render( turnstileItem, {
sitekey: turnstileItem.dataset.sitekey,
callback: function( data ) {
wc_turnstile.updateCheckoutBlockData( data );
},
} );
if ( widgetId ) {
turnstileItem.dataset.turnstileWidgetId = widgetId;
}
}
/**
* Update Checkout extension data.
*
* @param {Object} values Object containing field values.
*/
wc_turnstile.updateCheckoutBlockData = function( values ) {
// Update Checkout block data if available.
if ( window.wp && window.wp.data && window.wp.data.dispatch && window.wc && window.wc.wcBlocksData ) {
window.wp.data.dispatch( CHECKOUT_STORE_KEY ).__internalSetExtensionData(
'kadence/recaptcha',
{ token: values }
);
}
}
function eventuallyInitializeForCheckoutBlock() {
if (
window.wp && window.wp.data && typeof window.wp.data.subscribe === 'function'
) {
// Update checkout block data once more if the checkout store was loaded after this script.
const unsubscribe = window.wp.data.subscribe( function () {
unsubscribe();
wc_turnstile.getTokenData();
}, CHECKOUT_STORE_KEY );
window.setTimeout( function() {
const turnstileItem = document.querySelector("form.wc-block-components-form .cf-checkout-turnstile");
if ( turnstileItem ) {
wc_turnstile.getTokenData();
}
}, 1000 );
}
};
// Wait for DOMContentLoaded to make sure wp.data is in place, if applicable for the page.
if (document.readyState === "loading") {
document.addEventListener("DOMContentLoaded", eventuallyInitializeForCheckoutBlock);
} else {
eventuallyInitializeForCheckoutBlock();
}
}() );