Skip to content

Instantly share code, notes, and snippets.

@thecodepoetry
Created January 19, 2015 09:43
Show Gist options
  • Save thecodepoetry/454413d3aae555bbc541 to your computer and use it in GitHub Desktop.
Save thecodepoetry/454413d3aae555bbc541 to your computer and use it in GitHub Desktop.
Hide ultimate addon notice
add_action('admin_head', 'my_custom_css');
function my_custom_css() {
echo '<style>
.ult_activate {
display: none;
}
</style>';
}
@thecodepoetry
Copy link
Author

Add this code in your child theme functions.php

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment