Back to list of all filter and action hooks for Address Book for WooCommerce.
Description #
Fires before the address book entries list items are rendered inside the address book entries list element.
Examples #
/**
* Add instructions before address book entries
*/
function my_custom_before_checkout_entries_list( $address_type, $address_book_entries ) {
if ( ! empty( $address_book_entries ) ) {
echo '<p class="address-instructions">Choose from your saved addresses:</p>';
}
}
add_action( 'fc_pro_address_book_before_checkout_entries_list', 'my_custom_before_checkout_entries_list', 10, 2 );
