Back to list of all filter and action hooks for Address Book for WooCommerce.
Description #
Fires after the address book entries list items are rendered inside the address book entries list element.
Examples #
/**
* Add help text after address book entries
*/
function my_custom_after_checkout_entries_list( $address_type, $address_book_entries ) {
echo '<p class="address-help">If your address is not listed, please add it.</p>';
}
add_action( 'fc_pro_address_book_after_checkout_entries_list', 'my_custom_after_checkout_entries_list', 10, 2 );
