Skip to content

Instantly share code, notes, and snippets.

@J-H-Mojumder
Created May 13, 2022 10:18
Show Gist options
  • Save J-H-Mojumder/de66c97803d2aff0f807d84e07b5ea93 to your computer and use it in GitHub Desktop.
Save J-H-Mojumder/de66c97803d2aff0f807d84e07b5ea93 to your computer and use it in GitHub Desktop.
Remove Dokan menus from the my account page.
<?php
add_filter ( 'woocommerce_account_menu_items', 'remove_links_from_my_account_page' );
unset($menu_links["support-tickets"]);
unset($menu_links["bookings"]);
unset($menu_links["following"]);
return $menu_links;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment