Plugin Directory

Changeset 2451747


Ignore:
Timestamp:
01/07/2021 08:57:24 AM (5 years ago)
Author:
spikkl
Message:

Add space between street number and street number suffix when saving order

Location:
spikkl-address-lookup/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • spikkl-address-lookup/trunk/includes/integrations/spikkl-woocommerce-integration.php

    r2444359 r2451747  
    346346
    347347                    if ( isset( $posted[$streetNumberSuffix] ) && $posted[$streetNumberSuffix] ) {
    348                         $posted[$group . '_address_1'] .= $posted[$streetNumberSuffix];
     348                        $posted[$group . '_address_1'] .= ' ' . $posted[$streetNumberSuffix];
    349349                    }
    350350                }
  • spikkl-address-lookup/trunk/readme.txt

    r2444859 r2451747  
    44Requires at least: 4.4
    55Tested up to: 5.5
    6 Stable tag: 1.6.3
     6Stable tag: 1.6.4
    77Requires PHP: 5.6
    88License: GPLv3
     
    137137= 1.6.3 =
    138138* Fix lookup to search on blur
     139
     140= 1.6.4 =
     141* Add space between street number and street number suffix when saving order
  • spikkl-address-lookup/trunk/spikkl-address-lookup.php

    r2444859 r2451747  
    1111 *  Plugin URI: https://www.spikkl.nl/modules
    1212 *  Description: Spikkl Address Lookup validates the Dutch postcode and street number combination during checkout and fills additional address values automatically. Increase the ease-of-use for each of your customers and be assured of up-to-date and valid address data.
    13  *  Version: 1.6.3
     13 *  Version: 1.6.4
    1414 *  Author: Spikkl
    1515 *  Author URI: https://www.spikkl.nl/
     
    4242    final class Spikkl {
    4343
    44         public static $version = '1.6.3';
     44        public static $version = '1.6.4';
    4545
    4646        protected static $_instance;
Note: See TracChangeset for help on using the changeset viewer.