Last active
January 7, 2025 05:52
-
-
Save cyrusdavid/02c91d6a64d6a456e1968376e542ef8a to your computer and use it in GitHub Desktop.
Hide the "Your License Will Expire in" notice
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 (class_exists('\ElementorPro\Plugin')) { | |
add_action('admin_init', function() { | |
remove_action('admin_notices', [\ElementorPro\Plugin::instance()->license_admin, 'admin_license_details'], 20); | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment