Skip to content

Instantly share code, notes, and snippets.

@digitalchild
Created January 19, 2022 07:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save digitalchild/f7d943a0010e5e38aee6b4803203fbd4 to your computer and use it in GitHub Desktop.
Save digitalchild/f7d943a0010e5e38aee6b4803203fbd4 to your computer and use it in GitHub Desktop.
Disable the orders page on the WC Vendors Pro dashboard.
<?php
/**
* Disable existing order page hook into the dashboard links filter
*
* filter: wcv_pro_dashboard_urls
*/
add_filter( 'wcv_pro_dashboard_urls', 'wcv_remove_order_page' );
function wcv_remove_order_page( $pages ){
unset( $pages['order']);
return $pages;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment