Home New Guten Forums WoodMart support forum Address details tab menu item missing from Account area

Address details tab menu item missing from Account area

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #443906

    Little Panda
    Participant

    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

    #443921

    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;
    }
    #443950

    Artem Temos
    Keymaster

    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

    #443965

    Little Panda
    Participant

    Thanks guys, That fixed it.

    Sorry for the trouble. 🙁

    #444010

    Artem Temos
    Keymaster

    No problem! Feel free to contact us if you have any further questions.

Viewing 5 posts - 1 through 5 (of 5 total)

The topic ‘Address details tab menu item missing from Account area’ is closed to new replies.