Aurangajeb

Remove Elementor Pro Activation notifications from wp-admin area using CSS

Nov 13th, 2019 (edited)
316
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.24 KB | None | 0 0
  1. // Remove Elementor Pro Activation notifications from wp-admin area using CSS
  2. add_action('admin_head', 'my_custom_css');
  3. function my_custom_css() {
  4.   echo '<style>
  5.    .notice.elementor-message {
  6.      display: none;
  7.    }
  8.  </style>';
  9. }
Add Comment
Please, Sign In to add comment