Back to list of all filter and action hooks for Address Book for WooCommerce.
Description #
Fires after the address book entries list is rendered.
Modifiers #
{$address_type}(string) The address type. Acceptsshippingorbilling.
Examples #
Shipping
**
* Add shipping-specific content after address entries
*/
function my_custom_after_shipping_entries() {
echo '<div class="shipping-options"><p>You can add special delivery instructions during checkout.</p></div>';
}
add_action( 'fc_pro_shipping_address_book_after_entries', 'my_custom_after_shipping_entries', 10 );
Billing
**
* Add billing-specific content after address entries
*/
function my_custom_after_billing_entries() {
echo '<div class="billing-options"><p>You can add special invoice address instructions during checkout.</p></div>';
}
add_action( 'fc_pro_billing_address_book_after_entries', 'my_custom_after_billing_entries', 10 );
