Created
July 23, 2018 15:57
-
-
Save thebengalboy/d70d720a8b47d26f1d9642a88b32eb8c to your computer and use it in GitHub Desktop.
Revisions
-
thebengalboy created this gist
Jul 23, 2018 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,17 @@ <?php if ( ! defined( 'ABSPATH') ) exit; add_action( 'admin_head', 'dokan_dashboard_hide_tab' ); function dokan_dashboard_hide_tab() { if ( ! is_admin() ) return; ?> <style type="text/css"> .dokan-dashboard .postbox:nth-child(2) { display: none; } </style> } // Add this snippet(without php starting tag) on the theme function.php file