Address details tab menu item missing from Account area
-
Hello,
We noticed after the theme update that the Áddress details tab’ in the Account area menu is missing?
Please see photo in the private area
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;
}
Hello,
Thank you very much @iamfahrig
Yes, it is a WooCommerce bug. So you can either apply the fix or wait for the official plugin’s update.
Kind Regards
Thanks guys, That fixed it.
Sorry for the trouble. 🙁
No problem! Feel free to contact us if you have any further questions.
The topic ‘Address details tab menu item missing from Account area’ is closed to new replies.