Skip to content

Instantly share code, notes, and snippets.

@hivepress
Created May 17, 2022 17:16
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hivepress/119b50cc8e23b12965488854ff3de65e to your computer and use it in GitHub Desktop.
Save hivepress/119b50cc8e23b12965488854ff3de65e to your computer and use it in GitHub Desktop.
Remove the vendor dashboard from the user account menu #hivepress #marketplace
<?php
add_filter(
'hivepress/v1/menus/user_account',
function( $menu ) {
unset( $menu['items']['vendor_dashboard'] );
return $menu;
},
1000
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment