Created
April 30, 2017 08:06
-
-
Save kreamweb/fe50e62c188902ca1e2304917b774afd to your computer and use it in GitHub Desktop.
shop manager manage tabs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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