Back to list of all filter and action hooks for Address Book for WooCommerce.
Description #
Control whether customers can add new entries to their address book. When this filter returns false, customers will not be able to create new address book entries from the checkout or account pages. This applies to the Address Book REST API endpoint as well.
Parameters #
$is_enabled(bool) Whether adding entries is enabled. Default:true.
Examples #
/**
* Disable adding new address book entries.
*/
add_filter( 'fc_adb_is_entry_add_enabled', '__return_false' );
