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