| Server IP : 121.121.20.254 / Your IP : 216.73.216.202 Web Server : Microsoft-IIS/10.0 System : Windows NT WEB-SERVER 10.0 build 20348 (Windows Server 2022) AMD64 User : IUSR ( 0) PHP Version : 8.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/WPCAFE/wp-content/plugins/jetpack-boost/compatibility/ |
Upload File : |
<?php
/**
* Exclude known scripts that causes problem when concatenated.
*/
namespace Automattic\Jetpack_Boost\Compatibility\JS_Concatenate;
function maybe_do_not_concat( $do_concat, $handle ) {
$excluded_handles = array(
// Plugin: `event-tickets`
'tribe-tickets-block',
'tribe-tickets-provider',
// Plugin: `woocommerce-shipping`
'woocommerce-shipping-checkout-address-validation',
// Plugin: `depay-payments-for-woocommerce`
'DEPAY_WC_WIDGETS',
// Plugin: `woocommerce-bookings`
'wc-bookings-booking-form',
// WooCommerce Analytics
'woocommerce-analytics-client',
);
if ( in_array( $handle, $excluded_handles, true ) ) {
return false;
}
return $do_concat;
}
add_filter( 'js_do_concat', __NAMESPACE__ . '\maybe_do_not_concat', 10, 2 );