Skip to content
Fluid Checkout
  • Demo
  • Features
  • Add-ons
    • Complete Bundle Save 42%
    • Fluid Checkout PRO
    • Google Address Autocomplete
    • Address Book
    • EU-VAT Assistant
  • Pricing PRO
  • Docs
  • Support
  • My account
0,00 € 0 items
Home / Docs / Troubleshooting – Local pickup prevents customer from proving a shipping address, blocking other shipping methods

How can we help?

Getting started

  • Do I need to uninstall the free version when upgrading to PRO, or is Fluid Checkout Lite required?
  • Getting Started with Fluid Checkout
  • Translate Fluid Checkout plugins into your language

Features

  • WooCommerce edit cart on checkout — change quantity or remove items from the cart directly at the checkout page
  • Trust symbols — add security badges, trust seals and other trust symbols to strategic places on the checkout, cart and order received pages
  • Order pay – optimized and intuitive design for your WooCommerce Order Pay page
  • Local Pickup — WooCommerce Local Pickup hide shipping address when local pickup is selected
  • International phone numbers — WooCommerce checkout phone number validation and formatting based on country rules
  • Express checkout — quick payment buttons for Google Pay, Apple Pay and other payment methods
  • Design templates — match your brand styles on the WooCommerce Checkout template
  • Billing address positions — choose to display billing address before shipping, inside the shipping step or force shipping and billing address to a single section
  • Account matching / user matching — associate purchases with and existing customer account without logging in

Customizations

  • Change the icon or icon color for the cart button on mobile
  • Move the “Phone” field to the contact step
  • Configure cart quantity fields for decimal quantities
  • Change fields copied from shipping address to billing address
  • Move first and last name fields to the contact step
  • Customize Local Pickup location address and use multiple pickup locations
  • Customize button colors and other button styles
  • Customize colors of elements on Fluid Checkout
  • Customize template files for WooCommerce and Fluid Checkout
  • Customize checkout steps
  • Add custom house number field and make it required
  • Customize checkout fields and adding custom checkout fields
  • Safely add code snippets to your WooCommerce website

Compatibility

  • Compatibility with plugin YITH WooCommerce Cart Messages Premium
  • Compatibility with plugin WooCommerce Delivery Slots by Iconic
  • Compatibility with plugin Mailchimp for WooCommerce
  • Compatibility with plugin WooCommerce Checkout Manager By QuadLayers
  • Compatibility with plugin Breakdance
  • Compatibility with theme Pressmart
  • Compatibility with theme Divi and the Divi Builder
  • Compatibility with WooCommerce Block-based checkout and cart forms
  • Compatibility with theme Botiga
  • Compatibility with theme Atomion
  • Compatibility with theme OceanWP
  • Compatibility with plugin Digits
  • Compatibility with plugin Storefront Powerpack
  • Troubleshooting – jQuery events or vanilla JavaScript events not working
  • Compatibility with theme ZK Nito
  • Compatibility with theme Woodmart
  • Compatibility with plugin “Plugin Organizer”

Troubleshooting

  • Troubleshooting – jQuery events or vanilla JavaScript events not working
  • Troubleshooting – Local pickup prevents customer from proving a shipping address, blocking other shipping methods
  • Troubleshooting – Trust symbols widgets randomly moving to other areas when switching themes

Account & Purchases

  • Can I get a refund for my purchase?
  • Finding my invoice, adding billing details and VAT number
  • New versions updates are not appearing on my website

Development

  • Troubleshooting – jQuery events or vanilla JavaScript events not working
  • Changelog format and semantic version numbers
  • Changelog – Fluid Checkout PRO & Lite
View Categories

Troubleshooting – Local pickup prevents customer from proving a shipping address, blocking other shipping methods

With the Local Pickup feature available with Fluid Checkout PRO, the shipping address section is removed from the checkout form if a local pickup shipping method is selected.

When local pickup is the only shipping method available for the matched shipping zone, the customer won’t be able to enter their shipping address at checkout to then see more shipping methods that would be otherwise available to them.

Depending on the shipping settings on your website, the Local Pickup feature might block the customer from providing a shipping address, which in turn would enable more shipping methods options.

Since Fluid Checkout PRO version 2.1.8, this limitation has been resolved by adding a new option to clear the selected shipping method, read more about this new option added for the Local Pickup feature on our website at Local Pickup — Hide shipping address when local pickup is selected, and more specifically on the section Let customers clear the shipping method selected.

Jump to other available solutions.

Explanation #

With the default WooCommerce checkout, the shipping address is initially set to “same as billing address” by default, where the customer has the option to enter a different address for shipping.

If the customer knows they want to pick up at the store, they will just ignore the option to set a different shipping address. Internally, WooCommerce will use the billing address for anything that needs the shipping address, and in your case, the USPS plugin will be able to use the billing address to calculate the available shipping method options.

With Fluid Checkout, the shipping address is provided before the billing address, and the Local Pickup feature will remove the shipping address section from the checkout form, which in turn removes the ability to provide the shipping address if local pickup is the only shipping method option available.

When the customer use the shipping calculator on the cart page, it will set the shipping address that is used at checkout. Unfortunately, adding an option to set the shipping address similarly to how it works on the cart page is not a feasible solution for the checkout.

The ideal solution would be to add the ability for customers to select whether they want to pickup at the store or get the package shipped before deciding to remove the shipping address section from the checkout form.

We have plans to fix this limitation and make other substantial improvements to the Local Pickup feature in future releases.

Available solutions #

  1. Solution 1: Enable the option to clear the selected shipping method (recommended solution)
  2. Solution 2: Move shipping post code/zip code field to the contact step
  3. Solution 3: Change shipping method settings

Solution 1: Enable the option to clear the selected shipping method (recommended solution) #

Since Fluid Checkout PRO version 2.1.8, the recommended solution for this issue is to enable the new option to clear the selected shipping method, read more about this new option added for the Local Pickup feature on our website at Local Pickup — Hide shipping address when local pickup is selected, and more specifically on the section Let customers clear the shipping method selected.

Solution 2: Move shipping post code/zip code field to the contact step #

This solution is particularly effective if your shipping methods are only available after the shipping address is provided. Often providing the shipping post code/zip code is enough to unlock these other shipping methods.

Moving the shipping post code/zip code to the contact step will force customers to provide the necessary information, while avoiding the hassle of providing the entire shipping address while it will not be needed — the latter which is the entire point the Local Pickup feature.

  1. Move the shipping “Post code/ZIP code” field to the contact step using the code snippet below.
  2. Enable the “Multi-step layout” for the checkout form, which will force customers to enter the ZIP code at the contact step before proceeding to shipping.

This is the code snippet you will need:

/**
 * Move fields to the contact substep.
 */
function fluidcheckout_move_fields_to_contact_substep( $contact_field_ids ) {
    // Fields after existing fields
    $contact_field_ids = array_merge( $contact_field_ids, array( 'shipping_postcode' ) );
    return $contact_field_ids;
}
add_filter( 'fc_checkout_contact_step_field_ids', 'fluidcheckout_move_fields_to_contact_substep', 10 );



/**
 * Add field values to the address data for formatted address text.
 */
function fluidcheckuout_add_address_data_for_formatted_address( $address_data ) {
    // Define fields for which to add data
    $field_key_prefix = 'shipping_';
    $field_keys = array( 'shipping_postcode' );

    // Get data from checkout fields
    foreach ( $field_keys as $field_key ) {
        // Get field key
        $address_field_key = str_replace( $field_key_prefix, '', $field_key );
        $address_data[ $address_field_key ] = WC()->checkout->get_value( $field_key );
    }

    return $address_data;
}
add_filter( 'fc_shipping_substep_text_address_data', 'fluidcheckuout_add_address_data_for_formatted_address', 10 );

If you are unsure about how to add the code snippet to your website, check our article:

How to safely add code snippets to your WooCommerce website

Solution 3: Change shipping method settings #

See above our recommended solution for this limitation is to move shipping post code/zip code field to the contact step.

If that does not work for your case, it might be possible to change the shipping method settings to avoid this problem from happening.

This would involve one or more of the following things:

  • Remove all shipping methods from shipping zones that are not covered by your carriers, removing also local pickup.
  • Move the shipping methods section to be displayed after the shipping address. This is necessary to allow customers to enter the shipping address the first time, and the downside is that the customer will have to type in the address before they can even see that local pickup is an option.
  • Move all local pickup shipping methods down in the available shipping methods list so that it is not the first option for any of the shipping zones.
  • Change the WooCommerce shipping settings to hide shipping costs until an address is provided. This option is available at WP Admin > WooCommerce > Settings > Shipping > Shipping options.
Still stuck? How can we help?

How can we help?

Updated on September 19, 2024
Table of Contents
  • Explanation
  • Available solutions
  • Solution 1: Enable the option to clear the selected shipping method (recommended solution)
  • Solution 2: Move shipping post code/zip code field to the contact step
  • Solution 3: Change shipping method settings
Fluid Checkout

Frictionless Multi-step Checkout for WooCommerce

© 2021-2025 Fluid Checkout OÜ

Terms | Refunds | Privacy Policy | Cookies

Products
  • All products
  • Fluid Checkout PRO
  • Fluid Checkout Lite
  • Google Address Autocomplete add-on
  • Address Book add-on
  • EU-VAT Assistant add-on
Company
  • Support
  • My account
  • Careers Hiring
  • About
  • Affiliates program
  • Homepage
  • Homepage
  • Features
  • Pricing PRO
  • Docs
  • Demo
  • Support
  • My account