Changeset 3472552
- Timestamp:
- 03/02/2026 10:01:11 AM (5 weeks ago)
- Location:
- postcode-eu-address-validation/trunk
- Files:
-
- 3 edited
-
postcode-eu-address-validation.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
src/PostcodeNl/AddressAutocomplete/Main.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
postcode-eu-address-validation/trunk/postcode-eu-address-validation.php
r3464892 r3472552 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.7. 16 * Version: 2.7.2 7 7 * Author: Postcode.nl 8 8 * Author URI: https://www.postcode.nl -
postcode-eu-address-validation/trunk/readme.txt
r3464892 r3472552 2 2 Contributors: postcodenl 3 3 Tags: address validation, address autocomplete, postcode api, address api, postcode check 4 Stable tag: 2.7. 14 Stable tag: 2.7.2 5 5 Tested up to: 6.9 6 6 License: FreeBSD license … … 87 87 == Changelog == 88 88 89 = 2.7.2 = 90 * Fix notice about unregistered dependency in blocks checkout. 91 89 92 = 2.7.1 = 90 93 * Fix autocomplete missing from billing address when using pickup delivery. -
postcode-eu-address-validation/trunk/src/PostcodeNl/AddressAutocomplete/Main.php
r3464892 r3472552 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.7. 1';17 public const VERSION = '2.7.2'; 18 18 19 19 /** @var string Script handle of the autocomplete library. */ … … 186 186 public function enqueueScripts(): void 187 187 { 188 if (!$this->_options->isApiActive()) 189 { 190 return; 191 } 192 193 // CSS 194 wp_enqueue_style( 188 // Register dependency for Blocks checkout. See BlocksIntegration::_register_block_frontend_scripts(). 189 wp_register_style( 195 190 static::AUTOCOMPLETE_LIBRARY_HANDLE, 196 191 static::$pluginUrl . '/assets/libraries/postcode-eu-autocomplete-address.css', … … 198 193 static::VERSION 199 194 ); 195 wp_register_script( 196 static::AUTOCOMPLETE_LIBRARY_HANDLE, 197 static::$pluginUrl . '/assets/libraries/postcode-eu-autocomplete-address.js', 198 [], 199 static::VERSION, 200 true 201 ); 202 203 if (!$this->_options->isApiActive()) 204 { 205 return; 206 } 207 208 // CSS 209 wp_enqueue_style(static::AUTOCOMPLETE_LIBRARY_HANDLE); 200 210 wp_enqueue_style( 201 211 'postcode-eu-autofill', … … 206 216 207 217 // Javascript 208 wp_enqueue_script( 209 static::AUTOCOMPLETE_LIBRARY_HANDLE, 210 static::$pluginUrl . '/assets/libraries/postcode-eu-autocomplete-address.js', 211 [], 212 static::VERSION, 213 true 214 ); 218 wp_enqueue_script(static::AUTOCOMPLETE_LIBRARY_HANDLE); 215 219 wp_enqueue_script( 216 220 'postcode-eu-autocomplete-state-mapping',
Note: See TracChangeset
for help on using the changeset viewer.