Aurangajeb

Remove Dokan Pro Activation notifications from wp-admin area

Mar 21st, 2020
317
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.22 KB | None | 0 0
  1. // Remove Dokan Pro Activation notifications from wp-admin area using CSS
  2. add_action('admin_head', 'my_custom_css');
  3.  
  4. function my_custom_css() {
  5.   echo '<style>
  6.    .error {
  7.      display: none;
  8.    }
  9.  </style>';
  10. }
Advertisement
Add Comment
Please, Sign In to add comment