Skip to content

Instantly share code, notes, and snippets.

@SeanChDavis
Created August 25, 2015 17:58
Show Gist options
  • Save SeanChDavis/94d89734f2b3928279b2 to your computer and use it in GitHub Desktop.
Save SeanChDavis/94d89734f2b3928279b2 to your computer and use it in GitHub Desktop.
EDD FES Remove Vendor Dashboard Profile Tab
<?php // DO NOT COPY THIS LINE
function sd_fes_remove_profile_tab( $menu_items ) {
unset( $menu_items['profile'] );
return $menu_items;
}
add_filter( 'fes_vendor_dashboard_menu', 'sd_fes_remove_profile_tab' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment