Back to list of all filter and action hooks for Address Book for WooCommerce.
Description #
Customize HTML element used to display the address editing page title on the account pages.
Parameters #
$element(string) HTML element name. Defaults toh3.
Examples #
/**
* Change address entry title element to h1
*/
function use_h1_for_address_titles( $element ) {
return 'h1';
}
add_filter( 'fc_pro_address_book_edit_address_entry_title_element', 'use_h1_for_address_titles', 10 );
