Skip to content

Instantly share code, notes, and snippets.

@kreamweb
Created April 30, 2017 08:06
Show Gist options
  • Select an option

  • Save kreamweb/fe50e62c188902ca1e2304917b774afd to your computer and use it in GitHub Desktop.

Select an option

Save kreamweb/fe50e62c188902ca1e2304917b774afd to your computer and use it in GitHub Desktop.
shop manager manage tabs
<?php
add_filter('ywpar_show_tab_to_shop_manager', 'ywpar_show_tab_to_shop_manager', 10, 2);
function ywpar_show_tab_to_shop_manager( $shop_manager_tabs, $admin_tabs ) {
if ( isset( $admin_tabs['roles'] ) ) {
unset( $admin_tabs['roles'] );
}
return $admin_tabs;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment