// source --> https://www.spanishtaste.es/wp-content/plugins/theme-customisations-master/custom/custom.js?ver=6.9.4 
jQuery(document).ready(function($){
	// Custom jQuery goes here
});
jQuery(document).ready(function($) {
    // Check if the current page is the WooCommerce checkout page
    if ($('body').is('.woocommerce-checkout')) {
        // Copy billing phone value to billing mobile phone field on change
        $('#billing_phone').on('input', function() {
            var billingPhoneValue = $(this).val();
            $('#billing_mobile_phone').val(billingPhoneValue);
        });
    }
});