Created
July 23, 2018 15:57
-
-
Save thebengalboy/d70d720a8b47d26f1d9642a88b32eb8c to your computer and use it in GitHub Desktop.
Hide Dokan News Updates on Dashboard
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 | |
| 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment