Guest User

Untitled

a guest
Jul 23rd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. <?php
  2.  
  3. if ( ! defined( 'ABSPATH') ) exit;
  4.  
  5. add_action( 'admin_head', 'dokan_dashboard_hide_tab' );
  6.  
  7. function dokan_dashboard_hide_tab() {
  8. if ( ! is_admin() ) return;
  9. ?>
  10. <style type="text/css">
  11. .dokan-dashboard .postbox:nth-child(2) {
  12. display: none;
  13. }
  14. </style>
  15. }
  16.  
  17. // Add this snippet(without php starting tag) on the theme function.php file
Add Comment
Please, Sign In to add comment