This repository has been archived by the owner on Mar 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
class-woocommerce-multiple-addresses.php
executable file
·723 lines (601 loc) · 21.6 KB
/
class-woocommerce-multiple-addresses.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
<?php
/**
* Woocommerce Multiple Addresses plugin.
*
* @package WC_Multiple_addresses
* @author Alexander Tinyaev <alexander.tinyaev@n3wnormal.com>
* @license GPL-2.0+
* @link http://n3wnormal.com
* @copyright 2015 N3wNormal
*/
/**
* Plugin class.
*
* @package WC_Multiple_addresses
* @author Alexander Tinyaev <alexander.tinyaev@n3wnormal.com>
*/
class WC_Multiple_addresses {
/**
* Plugin version, used for cache-busting of style and script file references.
*
* @since 1.0.7.1
*
* @var string
*/
const VERSION = '1.0.7.1';
/**
* Unique identifier for the plugin.
*
* Use this value (not the variable name) as the text domain when internationalizing strings of text. It should
* match the Text Domain file header in the main plugin file.
*
* @since 1.0.0
*
* @var string
*/
protected static $plugin_slug = 'woocommerce-multiple-addresses';
/**
* Instance of this class.
*
* @since 1.0.0
*
* @var object
*/
protected static $instance = null;
/**
* Initialize the plugin by setting filters and administration functions.
*
* @since 1.0.4
*/
private function __construct() {
// Load plugin text domain
add_action( 'init', array( $this, 'load_plugin_textdomain' ) );
// Activate plugin for newly added blog on multisite
add_action( 'wpmu_new_blog', array( $this, 'activate_new_site' ) );
// Load public-facing style sheet.
add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_styles' ) );
add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ) );
// Change 'edit' link on My Account page to lead on our 'edit address' page
add_action( 'woocommerce_before_my_account', array( $this, 'rewrite_edit_url_on_my_account' ), 25 );
// Create a shortcode to show content on 'Manage addresses' page
add_shortcode( 'woocommerce_multiple_shipping_addresses', array( $this, 'multiple_shipping_addresses' ) );
// Process saving on 'Manage addresses' page
add_action( 'template_redirect', array( $this, 'save_multiple_shipping_addresses' ) );
// Show a 'configure addresses' button on checkout
add_action( 'woocommerce_before_checkout_form', array( $this, 'before_checkout_form' ) );
// Save billing and shipping addresses as default when creating a new customer aco
add_action( 'woocommerce_created_customer', array( $this, 'created_customer_save_shipping_as_default' ) );
// Add a dropdown to choose an address
add_filter( 'woocommerce_checkout_fields', array( $this, 'add_dd_to_checkout_fields' ) );
// Add ajax handler for choosing shipping address on checkout
add_action( 'wp_ajax_alt_change', array( $this, 'ajax_checkout_change_shipping_address' ) );
add_action( 'wp_ajax_nopriv_alt_change', array( $this, 'ajax_checkout_change_shipping_address' ) );
// Filter shipping country value
add_filter( 'woocommerce_checkout_get_value', array( $this, 'wma_checkout_get_value' ), 10, 2 );
}
/**
* Fired when the plugin is activated.
*
* @since 1.0.4
*
* @param boolean $network_wide True if WPMU superadmin uses
* "Network Activate" action, false if
* WPMU is disabled or plugin is
* activated on an individual blog.
*/
public static function activate( $network_wide ) {
if ( function_exists( 'is_multisite' ) && is_multisite() ) {
if ( $network_wide ) {
// Get all blog ids
$blog_ids = self::get_blog_ids();
foreach ( $blog_ids as $blog_id ) {
switch_to_blog( $blog_id );
self::single_activate();
}
restore_current_blog();
} else {
self::single_activate();
}
} else {
self::single_activate();
}
}
/**
* Fired when the plugin is deactivated.
*
* @since 1.0.4
*
* @param boolean $network_wide True if WPMU superadmin uses
* "Network Deactivate" action, false if
* WPMU is disabled or plugin is
* deactivated on an individual blog.
*/
public static function deactivate( $network_wide ) {
if ( function_exists( 'is_multisite' ) && is_multisite() ) {
if ( $network_wide ) {
// Get all blog ids
$blog_ids = self::get_blog_ids();
foreach ( $blog_ids as $blog_id ) {
switch_to_blog( $blog_id );
self::single_deactivate();
}
restore_current_blog();
} else {
self::single_deactivate();
}
} else {
self::single_deactivate();
}
}
/**
* Fired when a new site is activated with a WPMU environment.
*
* @since 1.0.4
*
* @param int $blog_id ID of the new blog.
*/
public function activate_new_site( $blog_id ) {
if ( 1 !== did_action( 'wpmu_new_blog' ) ) {
return;
}
switch_to_blog( $blog_id );
self::single_activate();
restore_current_blog();
}
/**
* Get all blog ids of blogs in the current network that are:
* - not archived
* - not spam
* - not deleted
*
* @since 1.0.4
*
* @return array|false The blog ids, false if no matches.
*/
private static function get_blog_ids() {
global $wpdb;
// get an array of blog ids
$sql = "SELECT blog_id FROM $wpdb->blogs
WHERE archived = '0' AND spam = '0'
AND deleted = '0'";
return $wpdb->get_col( $sql );
}
/**
* Fired for each blog when the plugin is activated.
*
* @since 1.0.4
*/
private static function single_activate() {
global $woocommerce;
$page_id = woocommerce_get_page_id( 'multiple_shipping_addresses' );
if ( $page_id == - 1 ) {
// get the checkout page
$account_id = woocommerce_get_page_id( 'myaccount' );
// add page and assign
$page = array(
'menu_order' => 0,
'comment_status' => 'closed',
'ping_status' => 'closed',
'post_author' => 1,
'post_content' => '[woocommerce_multiple_shipping_addresses]',
'post_name' => 'multiple-shipping-addresses',
'post_parent' => $account_id,
'post_title' => __( 'Manage Your Addresses', self::$plugin_slug ),
'post_type' => 'page',
'post_status' => 'publish',
'post_category' => array( 1 )
);
$page_id = wp_insert_post( $page );
update_option( 'woocommerce_multiple_shipping_addresses_page_id', $page_id );
}
}
/**
* Fired for each blog when the plugin is deactivated.
*
* @since 1.0.4
*/
private static function single_deactivate() {
// Nothing here for now...
}
/**
* Load the plugin text domain for translation.
*
* @since 1.0.4
*/
public function load_plugin_textdomain() {
$domain = self::$plugin_slug;
$locale = apply_filters( 'plugin_locale', get_locale(), $domain );
load_textdomain( $domain, trailingslashit( WP_LANG_DIR ) . $domain . '/' . $domain . '-' . $locale . '.mo' );
load_plugin_textdomain( $domain, false, basename( plugin_dir_path( __FILE__ ) ) . '/languages/' );
}
/**
* Return an instance of this class.
*
* @since 1.0.0
*
* @return object A single instance of this class.
*/
public static function get_instance() {
// If the single instance hasn't been set, set it now.
if ( null == self::$instance ) {
self::$instance = new self;
}
return self::$instance;
}
/**
* Register and enqueue public-facing style sheet.
*
* @since 1.0.4
*/
public function enqueue_styles() {
wp_enqueue_style( self::$plugin_slug . '-plugin-styles', plugins_url( 'assets/css/public.css', __FILE__ ), array(), self::VERSION );
}
/**
* Register and enqueues public-facing JavaScript files.
*
* @since 1.0.6
*/
public function enqueue_scripts() {
wp_enqueue_script( 'wc-country-select', WP_CONTENT_URL . '/plugins/woocommerce/assets/js/frontend/country-select.min.js', array( 'jquery' ), self::VERSION, true );
wp_enqueue_script( self::$plugin_slug . '-plugin-script', plugins_url( 'assets/js/public.js', __FILE__ ), array( 'jquery' ), self::VERSION );
wp_localize_script( self::$plugin_slug . '-plugin-script', 'WCMA_Ajax', array(
'ajaxurl' => admin_url( 'admin-ajax.php' ),
'id' => 0,
'wc_multiple_addresses' => wp_create_nonce( 'wc-multiple-addresses-ajax-nonce' )
)
);
}
/**
* Point edit address button on my account to edit multiple shipping addresses
*
* @since 1.0.6
*/
public function rewrite_edit_url_on_my_account() {
$page_id = wc_get_page_id( 'multiple_shipping_addresses' );
$page_url = get_permalink( $page_id );
?>
<script type="text/javascript">
jQuery(document).ready(function ($) {
$('.woocommerce-account .col-2.address .title a').attr('href', '<?php echo $page_url; ?>');
});
</script>
<?php
}
/**
* Filter shipping country value
*
* @param $null
* @param $input
*
* @since 1.0.6
*
* @return mixed
*/
public function wma_checkout_get_value($null, $input) {
global $wma_current_address;
if ( ! empty( $wma_current_address ) ) {
foreach ($wma_current_address as $key => $value) {
if ( $input == $key ) {
return $value;
}
}
}
}
/**
* Multiple shipping addresses page
*
* @since 1.0.7.1
*/
public function multiple_shipping_addresses() {
global $woocommerce;
$GLOBALS['wma_current_address'] = '';
if ( version_compare( WOOCOMMERCE_VERSION, '2.1', '<' ) ) {
require_once $woocommerce->plugin_path() .'/classes/class-wc-checkout.php';
} else {
require_once $woocommerce->plugin_path() . '/includes/class-wc-checkout.php';
}
$user = wp_get_current_user();
$checkout = WC()->checkout();
$shipFields = $checkout->checkout_fields['shipping'];
if ( $user->ID == 0 ) {
return;
}
$otherAddr = get_user_meta( $user->ID, 'wc_multiple_shipping_addresses', true );
echo '<div class="woocommerce">';
echo '<form action="" method="post" id="address_form">';
if ( ! empty( $otherAddr ) ) {
echo '<div id="addresses">';
global $wma_current_address;
foreach ( $otherAddr as $idx => $address ) {
$wma_current_address = $address;
echo '<div class="shipping_address address_block" id="shipping_address_' . $idx . '">';
echo '<p align="right"><a href="#" class="delete">' . __( 'delete', self::$plugin_slug ) . '</a></p>';
do_action( 'woocommerce_before_checkout_shipping_form', $checkout );
$label['id'] = 'label';
$label['label'] = __( 'Label', self::$plugin_slug );
woocommerce_form_field( 'label[]', $label, $address['label'] );
foreach ( $shipFields as $key => $field ) {
if ( 'shipping_alt' == $key ) {
continue;
}
$val = '';
if ( isset( $address[ $key ] ) ) {
$val = $address[ $key ];
}
$field['id'] = $key;
$key .= '[]';
woocommerce_form_field( $key, $field, $val );
}
if ( ! wc_ship_to_billing_address_only() && get_option( 'woocommerce_calc_shipping' ) !== 'no' ) {
$is_checked = $address['shipping_address_is_default'] == 'true' ? "checked" : "";
echo '<input type="checkbox" class="default_shipping_address" ' . $is_checked . ' value="' . $address['shipping_address_is_default'] . '"> ' . __( 'Mark this shipping address as default', self::$plugin_slug );
echo '<input type="hidden" class="hidden_default_shipping_address" name="shipping_address_is_default[]" value="' . $address['shipping_address_is_default'] . '" />';
}
do_action( 'woocommerce_after_checkout_shipping_form', $checkout );
echo '</div>';
}
echo '</div>';
} else {
echo '<div id="addresses">';
foreach ( $shipFields as $key => $field ) :
$field['id'] = $key;
$key .= '[]';
woocommerce_form_field( $key, $field, $checkout->get_value( $field['id'] ) );
endforeach;
if ( ! wc_ship_to_billing_address_only() && get_option( 'woocommerce_calc_shipping' ) !== 'no' ) {
echo '<input type="checkbox" class="default_shipping_address" checked value="true"> ' . __( 'Mark this shipping address as default', self::$plugin_slug );
echo '<input type="hidden" class="hidden_default_shipping_address" name="shipping_address_is_default[]" value="true" />';
}
echo '</div>';
}
echo '<div class="form-row">
<input type="hidden" name="shipping_account_address_action" value="save" />
<input type="submit" name="set_addresses" value="' . __( 'Save Addresses', self::$plugin_slug ) . '" class="button alt" />
<a class="add_address" href="#">' . __( 'Add another', self::$plugin_slug ) . '</a>
</div>';
echo '</form>';
echo '</div>';
?>
<script type="text/javascript">
var tmpl = '<div class="shipping_address address_block"><p align="right"><a href="#" class="delete"><?php _e( "delete", self::$plugin_slug ); ?></a></p>';
tmpl += '<?php $label['id'] = 'label';
$label['label'] = __( 'Label', self::$plugin_slug );
$row = woocommerce_form_field( 'label[]', $label, '' );
echo str_replace("\n", "\\\n", str_replace("'", "\'", $row));
?>';
tmpl += '<?php foreach ($shipFields as $key => $field) :
if ( 'shipping_alt' == $key ) {
continue;
}
$field['return'] = true;
$val = '';
$field['id'] = $key;
$key .= '[]';
$row = woocommerce_form_field( $key, $field, $val );
echo str_replace("\n", "\\\n", str_replace("'", "\'", $row));
endforeach; ?>';
<?php if ( ! wc_ship_to_billing_address_only() && get_option( 'woocommerce_calc_shipping' ) !== 'no' ) : ?>
tmpl += '<input type="checkbox" class="default_shipping_address" value="false"> <?php _e( "Mark this shipping address as default", self::$plugin_slug ); ?>';
tmpl += '<input type="hidden" class="hidden_default_shipping_address" name="shipping_address_is_default[]" value="false" />';
<?php endif; ?>
tmpl += '</div>';
jQuery(".add_address").click(function (e) {
e.preventDefault();
jQuery("#addresses").append(tmpl);
jQuery('html,body').animate({
scrollTop: jQuery('#addresses .shipping_address:last').offset().top},
'slow');
});
jQuery(".delete").live("click", function (e) {
e.preventDefault();
jQuery(this).parents("div.address_block").remove();
});
jQuery(document).ready(function () {
jQuery(document).on("click", ".default_shipping_address", function () {
if (this.checked) {
jQuery("input.default_shipping_address").not(this).removeAttr("checked");
jQuery("input.default_shipping_address").not(this).val("false");
jQuery("input.hidden_default_shipping_address").val("false");
jQuery(this).next().val('true');
jQuery(this).val('true');
}
else {
jQuery("input.default_shipping_address").val("false");
jQuery("input.hidden_default_shipping_address").val("false");
}
});
jQuery("#address_form").submit(function () {
var valid = true;
jQuery("input[type=text],select").each(function () {
if (jQuery(this).prev("label").children("abbr").length == 1 && jQuery(this).val() == "") {
jQuery(this).focus();
valid = false;
return false;
}
});
return valid;
});
});
</script>
<?php
}
/**
* Save multiple shipping addresses
*
* @since 1.0.3
*/
public function save_multiple_shipping_addresses() {
if ( isset( $_POST['shipping_account_address_action'] ) && $_POST['shipping_account_address_action'] == 'save' ) {
unset( $_POST['shipping_account_address_action'] );
$addresses = array();
$is_default = false;
foreach ( $_POST as $key => $values ) {
if ( $key == 'shipping_address_is_default' ) {
foreach ( $values as $idx => $val ) {
if ( $val == 'true' ) {
$is_default = $idx;
}
}
}
if ( ! is_array( $values ) ) {
continue;
}
foreach ( $values as $idx => $val ) {
$addresses[ $idx ][ $key ] = $val;
}
}
$user = wp_get_current_user();
if ( $is_default !== false ) {
$default_address = $addresses[ $is_default ];
foreach ( $default_address as $key => $field ) :
if ( $key == 'shipping_address_is_default' ) {
continue;
}
update_user_meta( $user->ID, $key, $field );
endforeach;
}
update_user_meta( $user->ID, 'wc_multiple_shipping_addresses', $addresses );
if ( version_compare( WOOCOMMERCE_VERSION, '2.1', '<' ) ) {
global $woocommerce;
$woocommerce->add_message( __( 'Addresses have been saved', self::$plugin_slug ) );
} else {
wc_add_notice( __( 'Addresses have been saved', self::$plugin_slug ), $notice_type = 'success' );
}
$page_id = woocommerce_get_page_id( 'myaccount' );
wp_redirect( get_permalink( $page_id ) );
exit;
}
}
/**
* Add possibility to configure addresses on checkout page
*
* @since 1.0.4
*/
public function before_checkout_form() {
global $woocommerce;
$page_id = woocommerce_get_page_id( 'multiple_shipping_addresses' );
if ( is_user_logged_in() ) {
echo '<p class="woocommerce-info woocommerce_message">
' . __( 'If you have more than one shipping address, then you may choose a default one here.', self::$plugin_slug ) . '
<a class="button" href="' . get_permalink( $page_id ) . '">' . __( 'Configure Address', self::$plugin_slug ) . '</a>
</p>';
}
}
/**
* Helper function to prepend value to an array with custom key
*
* @param $arr
* @param $key
* @param $val
*
* @since 1.0.4
*
* @return array
*/
public function array_unshift_assoc( &$arr, $key, $val ) {
$arr = array_reverse( $arr, true );
$arr[ $key ] = $val;
return array_reverse( $arr, true );
}
/**
* Creating the same default shipping for newly created customer
*
* @since 1.0.0
*
* @param integer $current_user_id
*/
public function created_customer_save_shipping_as_default( $current_user_id ) {
global $woocommerce;
if ( $current_user_id == 0 ) {
return;
}
$checkout = $woocommerce->checkout->posted;
$default_address = array();
if ( $checkout['shiptobilling'] == 0 ) {
$default_address[0]['shipping_country'] = $checkout['shipping_country'];
$default_address[0]['shipping_first_name'] = $checkout['shipping_first_name'];
$default_address[0]['shipping_last_name'] = $checkout['shipping_last_name'];
$default_address[0]['shipping_company'] = $checkout['shipping_company'];
$default_address[0]['shipping_address_1'] = $checkout['shipping_address_1'];
$default_address[0]['shipping_address_2'] = $checkout['shipping_address_2'];
$default_address[0]['shipping_city'] = $checkout['shipping_city'];
$default_address[0]['shipping_state'] = $checkout['shipping_state'];
$default_address[0]['shipping_postcode'] = $checkout['shipping_postcode'];
} elseif ( $checkout['shiptobilling'] == 1 ) {
$default_address[0]['shipping_country'] = $checkout['billing_country'];
$default_address[0]['shipping_first_name'] = $checkout['billing_first_name'];
$default_address[0]['shipping_last_name'] = $checkout['billing_last_name'];
$default_address[0]['shipping_company'] = $checkout['billing_company'];
$default_address[0]['shipping_address_1'] = $checkout['billing_address_1'];
$default_address[0]['shipping_address_2'] = $checkout['billing_address_2'];
$default_address[0]['shipping_city'] = $checkout['billing_city'];
$default_address[0]['shipping_state'] = $checkout['billing_state'];
$default_address[0]['shipping_postcode'] = $checkout['billing_postcode'];
}
$default_address[0]['shipping_address_is_default'] = 'true';
update_user_meta( $current_user_id, 'wc_multiple_shipping_addresses', $default_address );
}
/**
* Add dropdown above shipping address at checkout
*
* @param $fields
*
* @since 1.0.7
*
* @return mixed
*/
public function add_dd_to_checkout_fields( $fields ) {
global $current_user;
$otherAddrs = get_user_meta( $current_user->ID, 'wc_multiple_shipping_addresses', true );
if ( ! $otherAddrs ) {
return $fields;
}
$addresses = array();
$addresses[0] = __( 'Choose an address...', self::$plugin_slug );
for ( $i = 1; $i <= count( $otherAddrs ); ++$i ) {
if (!empty($otherAddrs[$i - 1]['label'])) {
$addresses[ $i ] = $otherAddrs[$i - 1]['label'] . ' ' . $otherAddrs[ $i - 1 ]['shipping_postcode'];
} else {
$addresses[ $i ] = $otherAddrs[ $i - 1 ]['shipping_first_name'] . ' ' . $otherAddrs[ $i - 1 ]['shipping_last_name'] . ', ' . $otherAddrs[ $i - 1 ]['shipping_postcode'] . ' ' . $otherAddrs[ $i - 1 ]['shipping_city'];
}
}
$alt_field = array(
'label' => __( 'Predefined addresses', self::$plugin_slug ),
'required' => false,
'class' => array( 'form-row' ),
'clear' => true,
'type' => 'select',
'options' => $addresses
);
$fields['shipping'] = $this->array_unshift_assoc( $fields['shipping'], 'shipping_alt', $alt_field );
$fields['billing'] = $this->array_unshift_assoc( $fields['billing'], 'billing_alt', $alt_field );
return $fields;
}
/**
* Handles ajax action call on choosing shipping address on checkout
*
* @since 1.0.4
*/
public function ajax_checkout_change_shipping_address() {
// check nonce
$nonce = $_POST['wc_multiple_addresses'];
if ( ! wp_verify_nonce( $nonce, 'wc-multiple-addresses-ajax-nonce' ) ) {
die ( 'Busted!' );
}
$address_id = $_POST['id'] - 1;
if ( $address_id < 0 ) {
return;
}
// get address
global $current_user;
$otherAddr = get_user_meta( $current_user->ID, 'wc_multiple_shipping_addresses', true );
global $woocommerce;
$addr = $otherAddr[ $address_id ];
$addr['shipping_country_text'] = $woocommerce->countries->countries[ $addr['shipping_country'] ];
$response = json_encode( $addr );
// response output
header( "Content-Type: application/json" );
echo $response;
exit;
}
}