Home › Forums › WoodMart support forum › the address text on the my account page has been deleted › Reply To: the address text on the my account page has been deleted
February 1, 2023 at 2:09 am
#439384
iamfahrig
Participant
This code snippet will fill the empty line. Its only for use until Woo fix the problem properly.
add_filter( 'woocommerce_account_menu_items', 'custom_edit_address' );
function custom_edit_address( $items ) {
$items['edit-address'] = 'Address';
return $items;
}