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 / fc_pro_address_book_entry_display_label_remove_skip_list

How can we help?

Customizations

  • Safely add code snippets to your WooCommerce website

Compatibility

  • Troubleshooting – jQuery events or vanilla JavaScript events not working

Troubleshooting

  • Troubleshooting – jQuery events or vanilla JavaScript events not working
  • Troubleshooting – Redirected to error 404 (page not found) when trying to delete an address from the Address Book

Development

  • Filter and action hooks – Address Book
  • Troubleshooting – jQuery events or vanilla JavaScript events not working
  • Changelog – Fluid Checkout Address Book
  • Changelog format and semantic version numbers
View Categories

fc_pro_address_book_entry_display_label_remove_skip_list

Back to list of all filter and action hooks for Address Book for WooCommerce.

Description #

Define which fields to skip when displaying address labels on a list of available addresses.

Allows to define which address fields should be excluded from the formatted address display labels on a list of available addresses.

Parameters #

  • $skip_list (array) Array of field keys to skip. Defaults to array( 'address_id', 'address_label', 'default_shipping', 'default_billing' )
    • address_id (string) Address ID field key.
    • address_label (string) Address label field key.
    • default_shipping (string) Default shipping field key.
    • default_billing (string) Default billing field key.
    • first_name (string) First name field key.
    • last_name (string) Last name field key.
    • company (string) Company field key.
    • address_1 (string) Address line 1 field key.
    • address_2 (string) Address line 2 field key.
    • city (string) City field key.
    • postcode (string) Postal/Zip code field key.
    • state (string) State field key.
    • country (string) Country field key.
    • phone (string) Phone field key.
    • email (string) Email field key.

Examples  #

/**
 * Skip showing company and phone values when displaying the list of available address book entries.
 */
function skip_displaying_company_phone_in_address_book_lists( $skip_list ) {
    // Add company and phone to skip list
    $skip_list[] = 'company';
    $skip_list[] = 'phone';
    
    return $skip_list;
}
add_filter( 'fc_pro_address_book_entry_display_label_remove_skip_list', 'skip_displaying_company_phone_in_address_book_lists', 10 );
Still stuck? How can we help?

How can we help?

Updated on December 15, 2025
fc_pro_address_book_address_sources_optionsfc_pro_address_book_entry_label_markup
Table of Contents
  • Description
  • Parameters
  • Examples 
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
  • Careers Hiring
  • My account
  • About
  • Homepage
  • Homepage
  • Features
  • Pricing PRO
  • Demo
  • Docs
  • Support
  • My account