• Hello.
    I had several orders from people from the same country (lets say France).
    They had different shipping addresses and their orders were in “processing” status. After the night, those shipping addresses changed to same address from one of the customers.
    This happened few more times and with other countries – they (several other customers) were all having address of one customer from that country.
    It happened automatically during the night when no one was using the dashboard.

    
    ### WordPress Environment ###
    
    WC Version: 3.0.9
    Log Directory Writable: ?
    WP Version: 4.8
    WP Multisite: –
    WP Memory Limit: 256 MB
    WP Debug Mode: –
    WP Cron: ?
    Language: en_GB
    
    ### Server Environment ###
    
    Server Info: Apache/2.4.18 (Ubuntu)
    PHP Version: 7.0.15-0ubuntu0.16.04.4
    PHP Post Max Size: 16 MB
    PHP Time Limit: 60
    PHP Max Input Vars: 1000
    cURL Version: 7.47.0
    OpenSSL/1.0.2g
    
    SUHOSIN Installed: –
    MySQL Version: 5.7.18
    Max Upload Size: 16 MB
    Default Timezone is UTC: ?
    fsockopen/cURL: ?
    SoapClient: ?
    DOMDocument: ?
    GZip: ?
    Multibyte String: ?
    Remote Post: ?
    Remote Get: ?
    
    ### Database ###
    
    WC Database Version: 3.0.9
    WC Database Prefix: wp_
    woocommerce_sessions: ?
    woocommerce_api_keys: ?
    woocommerce_attribute_taxonomies: ?
    woocommerce_downloadable_product_permissions: ?
    woocommerce_order_items: ?
    woocommerce_order_itemmeta: ?
    woocommerce_tax_rates: ?
    woocommerce_tax_rate_locations: ?
    woocommerce_shipping_zones: ?
    woocommerce_shipping_zone_locations: ?
    woocommerce_shipping_zone_methods: ?
    woocommerce_payment_tokens: ?
    woocommerce_payment_tokenmeta: ?
    MaxMind GeoIP Database: ?
    
    ### Security ###
    
    Secure connection (HTTPS): ?
    Hide errors from visitors: ?
    
    ### Active Plugins (23) ###
    
    Arconix FAQ: by John Gardner – 1.6.1
    Blank Slate: by Aaron Reimann – 1.1
    Code Snippets: by Shea Bunge – 2.8.6
    Elementor: by Elementor.com – 1.4.10
    Export User Data: by Q Studio – 1.3.1
    MailChimp for WordPress: by ibericode – 4.1.5
    Regenerate Thumbnails: by Alex Mills (Viper007Bond) – 2.2.6
    TablePress: by Tobias B?thge – 1.8
    Theme My Login: by Jeff Farthing – 6.4.9
    UpdraftPlus - Backup/Restore: by UpdraftPlus.Com
    DavidAnderson – 2.13.4.21
    
    Product Customer List for WooCommerce: by Kokomo – 2.5.0
    WooCommerce Chained Products: by StoreApps – 2.5.2
    WooCommerce Currency Converter: by WooCommerce – 1.6.5
    WooCommerce Print Invoices/Packing Lists: by SkyVerge – 3.3.1 – 3.3.2 is available
    WooCommerce Product Stock Alert: by WC Marketplace
    The Grey Parrots – 1.4.5
    
    WooCommerce Sequential Order Numbers: by SkyVerge – 1.8.1
    WooCommerce Stock Manager: by Vladislav Musílek – 1.1.5
    WooCommerce: by Automattic – 3.0.9 – 3.1.0 is available
    WooCommerce Helper: by WooCommerce – 1.7.2 – Network enabled
    WP Maintenance Mode: by Designmodo – 2.0.9
    WP-Polls: by Lester 'GaMerZ' Chan – 2.73.7
    Forums - wpForo: by gVectors Team (A. Chakhoyan
    R. Hovhannisyan) – 1.3.1
    
    wpMandrill: by Mandrill – 1.33
    
    ### Settings ###
    
    API Enabled: ?
    Force SSL: ?
    Currency Position: left
    Thousand Separator: ,
    Decimal Separator: .
    Number of Decimals: 2
    Taxonomies: Product Types: external (external)
    grouped (grouped)
    simple (simple)
    variable (variable)
    
    Taxonomies: Product Visibility: exclude-from-catalog (exclude-from-catalog)
    exclude-from-search (exclude-from-search)
    featured (featured)
    outofstock (outofstock)
    rated-1 (rated-1)
    rated-2 (rated-2)
    rated-3 (rated-3)
    rated-3 (rated-3-2)
    rated-4 (rated-4)
    rated-5 (rated-5)
    
    ### WC Pages ###
    
    Shop base: #27 - /webshop/
    Basket: #28 - /cart/
    Checkout: #29 - /checkout/
    My account: #30 - /my-account/
    
    ### Templates ###
    
    Overrides: –
    
Viewing 1 replies (of 1 total)
  • Hi,
    First of all, I’d update your Woocommerce version to the newest one.

    To make sure that your users don’t make any change, please disable links to edit their account for a while with the following snippet that you can add to functions.php:

    // Remove "Edit" links from My Account > Addresses
    function sv_remove_edit_account_links() {
        wc_enqueue_js( "
            jQuery(document).ready(function() {
                jQuery( 'a.edit' ).remove();
            });
        " );
    }
    add_action( 'woocommerce_after_my_account', 'sv_remove_edit_account_links' );

    Please also make sure that there’s no external process, API, an integration that may affect your database as it seems not to be a usual WooCommerce behavior.

    And also make sure that all the other plugins are not affecting such an odd issue.

    I hope that it will help.

    M

Viewing 1 replies (of 1 total)
  • The topic ‘Same shipping address for several customers’ is closed to new replies.