Remove "Enter License Key | License is not set yet. Please enter your license key to enable automatic updates." notification from the dashboard.
//Disable plugin license notification
function remove_license_nag() {
echo
'<style>
plugins .plugin-update-tr .plugin-update {
display: none;
}
.notice-warning.notice-alt{
display: none;
}
div.plugin-update {
display: none;
}
</style>';
}
add_action('admin_head', 'remove_license_nag');