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
|
<?php
namespace Objectiv\Plugins\Checkout\Compatibility\Plugins;
use Objectiv\Plugins\Checkout\Compatibility\CompatibilityAbstract; use Objectiv\Plugins\Checkout\FormAugmenter;
class PostNL extends CompatibilityAbstract { public function is_available(): bool { return function_exists( 'WooCommerce_PostNL' ) && version_compare( WooCommerce_PostNL()->version, '4.0.0', '<' ); }
public function run() { $this->disable_nl_hooks();
remove_filter( 'woocommerce_get_country_locale', array( FormAugmenter::instance(), 'prevent_postcode_sort_change' ) );
add_filter( 'woocommerce_default_address_fields', array( $this, 'add_new_fields' ), 100001, 1 ); // run after our normal hook add_filter( 'woocommerce_get_country_locale', array( $this, 'prevent_postcode_sort_change' ), 100 ); add_filter( 'cfw_enable_zip_autocomplete', '__return_false' );
// Fix shipping preview add_filter( 'cfw_get_shipping_details_address', array( $this, 'fix_shipping_preview' ), 10, 2 ); }
public function disable_nl_hooks() { global $wp_filter;
$existing_hooks = $wp_filter['woocommerce_billing_fields'];
$priority = apply_filters( 'nl_checkout_fields_priority', 10 ); if ( empty( $priority ) ) { $priority = 10; }
if ( $existing_hooks[ $priority ] ) { foreach ( $existing_hooks[ $priority ] as $key => $callback ) { if ( false !== stripos( $key, 'nl_billing_fields' ) ) { global $WC_NLPostcode_Fields;
$WC_NLPostcode_Fields = $callback['function'][0]; } } }
if ( empty( $WC_NLPostcode_Fields ) ) { return; }
remove_filter( 'woocommerce_billing_fields', array( $WC_NLPostcode_Fields, 'nl_billing_fields' ), $priority ); remove_filter( 'woocommerce_shipping_fields', array( $WC_NLPostcode_Fields, 'nl_shipping_fields' ), $priority ); remove_filter( 'woocommerce_default_address_fields', array( $WC_NLPostcode_Fields, 'default_address_fields' ) ); }
public function add_new_fields( $fields ) { // Adjust postcode field $fields['postcode']['priority'] = 11;
// Add street name $fields['street_name'] = array( 'label' => cfw__( 'Street name', 'woocommerce-postnl' ), 'placeholder' => cfw_esc_attr__( 'Street name', 'woocommerce-postnl' ), 'required' => true, 'class' => array(), 'autocomplete' => '', 'input_class' => array( 'garlic-auto-save' ), 'priority' => 14, 'columns' => 12, 'custom_attributes' => array( 'data-parsley-trigger' => 'change focusout', ), );
// Then add house number $fields['house_number'] = array( 'label' => cfw__( 'Nr.', 'woocommerce-postnl' ), 'placeholder' => cfw_esc_attr__( 'Nr.', 'woocommerce-postnl' ), 'required' => true, 'class' => array(), 'autocomplete' => '', 'input_class' => array( 'garlic-auto-save' ), 'priority' => 12, 'custom_attributes' => array( 'data-parsley-trigger' => 'change focusout', ), 'columns' => 4, );
// Then house number suffix $fields['house_number_suffix'] = array( 'label' => cfw__( 'Suffix', 'woocommerce-postnl' ), 'placeholder' => cfw_esc_attr__( 'Suffix', 'woocommerce-postnl' ), 'required' => false, 'class' => array(), 'autocomplete' => '', 'input_class' => array( 'garlic-auto-save' ), 'priority' => 13, 'columns' => 4, 'custom_attributes' => array( 'data-parsley-trigger' => 'change focusout', ), );
$fields['state']['columns'] = 8;
// Set address 1 / address 2 to hidden $fields['address_1']['type'] = 'hidden'; $fields['address_1']['start'] = false; $fields['address_1']['end'] = false; unset( $fields['address_1']['custom_attributes'] ); unset( $fields['address_1']['input_class'] ); $fields['address_2']['type'] = 'hidden'; $fields['address_2']['start'] = false; $fields['address_2']['end'] = false; unset( $fields['address_2']['custom_attributes'] ); unset( $fields['address_2']['input_class'] );
return $fields; }
public function prevent_postcode_sort_change( $locales ) { foreach ( $locales as $key => $value ) { if ( ! empty( $value['postcode'] ) && ! empty( $value['postcode']['priority'] ) ) { $locales[ $key ]['postcode']['priority'] = 11; } }
return $locales; }
public function input_wrap_start( $input_wrap_start ) { $input_wrap_start = str_replace( 'col-lg-', 'form-row col-lg-', $input_wrap_start );
return $input_wrap_start; }
public function input_row_wrap( $input_row_wrap ) { $input_row_wrap = str_replace( 'form-row', '', $input_row_wrap );
return $input_row_wrap; }
public function fix_shipping_preview( $address, $checkout ) { $address['address_1'] = $checkout->get_value( 'shipping_street_name' ) . ' ' . $checkout->get_value( 'shipping_house_number' );
if ( ! empty( $checkout->get_value( 'shipping_house_number_suffix' ) ) ) { $address['address_1'] = $address['address_1'] . '-' . $checkout->get_value( 'shipping_house_number_suffix' ); }
return $address; }
public function typescript_class_and_params( array $compatibility ): array { $compatibility[] = array( 'class' => 'PostNL', 'params' => array(), );
return $compatibility; } }
|