Posts

Showing posts with the label Woocommerce

Add Menu or Remove Menu Link on Woocommerce My Account Page

Image
This tutorial is rarely found on the Search Engine that is why we made a quick guide how you can actually customize your MY ACCOUNT Page of your Woocommerce websites such as Remove Menu  or Add Menu with Links  using only the functions.php  file, so it means no plugin involves, it is useful especially when your client wanted you to add a specific menu that is why we have this tutorial for you. As you can see on the video it has a quick explanation of how to use the code, so just follow the tutorial video above made by Kazuki Tech and then just copy the code we have included here. How To Remove Menu on My Account? add_filter ( 'woocommerce_account_menu_items', 'misha_remove_my_account_links' ); function misha_remove_my_account_links( $menu_links ){ unset( $menu_links['edit-address'] ); // Addresses //unset( $menu_links['dashboard'] ); // Remove Dashboard //unset( $menu_links['payment-methods'] ); // Remove Payment Methods //unset( $menu_links[...