This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_action( 'wp_footer', 'scripts_for_adding_country_prefix_on_billing_phone' ); | |
function scripts_for_adding_country_prefix_on_billing_phone(){ | |
?> | |
<script type="text/javascript"> | |
( function( $ ) { | |
$( document.body ).on( 'updated_checkout', function(data) { | |
var ajax_url = "<?php echo admin_url('admin-ajax.php'); ?>", | |
country_code = $('#billing_country').val(); | |
var ajax_data = { |