Changeset 3348134
- Timestamp:
- 08/21/2025 12:45:03 PM (8 months ago)
- Location:
- postcode-eu-address-validation/trunk
- Files:
-
- 5 edited
-
assets/js/postcode-eu-autofill.js (modified) (1 diff)
-
postcode-eu-address-validation.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
src/PostcodeNl/AddressAutocomplete/Main.php (modified) (1 diff)
-
src/PostcodeNl/AddressAutocomplete/Options.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
postcode-eu-address-validation/trunk/assets/js/postcode-eu-autofill.js
r3329110 r3348134 268 268 const addAddressAutocompleteNl = function (container, addressType) 269 269 { 270 if ( settings.netherlandsMode !== 'postcodeOnly')270 if (typeof settings.enabledCountries.NL === 'undefined' || settings.netherlandsMode !== 'postcodeOnly') 271 271 { 272 272 return; -
postcode-eu-address-validation/trunk/postcode-eu-address-validation.php
r3329110 r3348134 4 4 * Plugin URI: https://www.postcode.eu/products/address-api/implementation 5 5 * Description: Address autocomplete and validation using the Postcode.eu API. 6 * Version: 2.6. 36 * Version: 2.6.4 7 7 * Author: Postcode.nl 8 8 * Author URI: https://www.postcode.nl … … 14 14 * Requires PHP: 7.4 15 15 * WC requires at least: 8.5 16 * WC tested up to: 9.916 * WC tested up to: 10.1 17 17 */ 18 18 -
postcode-eu-address-validation/trunk/readme.txt
r3329110 r3348134 2 2 Contributors: postcodenl 3 3 Tags: address validation, address autocomplete, postcode api, address api, postcode check 4 Stable tag: 2.6. 34 Stable tag: 2.6.4 5 5 Tested up to: 6.8 6 6 License: FreeBSD license … … 87 87 == Changelog == 88 88 89 = 2.6.4 = 90 * Fix NL disabled after changing lookup method. 91 89 92 = 2.6.3 = 90 93 * Fix compatibility with Divi checkout. -
postcode-eu-address-validation/trunk/src/PostcodeNl/AddressAutocomplete/Main.php
r3329110 r3348134 15 15 16 16 /** @var string The version number of the plugin should be equal to the commented version number in ../../../postcode-eu-address-validation.php */ 17 public const VERSION = '2.6. 3';17 public const VERSION = '2.6.4'; 18 18 19 19 /** @var string Script handle of the autocomplete library. */ -
postcode-eu-address-validation/trunk/src/PostcodeNl/AddressAutocomplete/Options.php
r3310291 r3348134 190 190 foreach ($this->getSupportedCountries() as $supportedCountry) 191 191 { 192 if ($supportedCountry['iso3'] === 'NLD' && $this->netherlandsMode === static::NETHERLANDS_MODE_POSTCODE_ONLY)193 {194 continue;195 }196 197 192 $checkbox = sprintf( 198 193 '<input type="checkbox" name="%s" %s/>',
Note: See TracChangeset
for help on using the changeset viewer.