Back to list of all filter and action hooks for Address Book for WooCommerce.
Description #
Fires when rendering the edit address form in the customer account area.
Parameters #
$load_address(string) The address type being edited (billingorshipping).$address(array) Array containing the address field values.
Examples #
/**
* Add custom notice to edit address form
*/
function my_custom_edit_account_address_form( $load_address, $address ) {
echo '<div class="address-form-notice">';
echo '<p><strong>Note:</strong> Please ensure your address information is accurate.</p>';
echo '</div>';
}
add_action( 'fc_pro_edit_account_address_form', 'my_custom_edit_account_address_form', 10, 2 );
