Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- remove my tickets from my account menu
- this code snippet should be used in child theme's functions.php file
- */
- add_filter ( 'woocommerce_account_menu_items', 'wpg_remove_my_tickets_link' );
- function wpg_remove_my_tickets_link( $menu_links ){
- unset( $menu_links['comp-tickets'] ); // My Tickets
- // examples
- //unset( $menu_links['dashboard'] ); // Remove Dashboard
- //unset( $menu_links['payment-methods'] ); // Remove Payment Methods
- //unset( $menu_links['orders'] ); // Remove Orders
- //unset( $menu_links['downloads'] ); // Disable Downloads
- //unset( $menu_links['edit-account'] ); // Remove Account details tab
- //unset( $menu_links['customer-logout'] ); // Remove Logout link
- return $menu_links;
- }
Add Comment
Please, Sign In to add comment