Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Remove Error Nag

Remove Error Nag

// remove error nag from admin dashboard
add_action('admin_head', 'remove_yoast_license_nag_from_admin_page');

function remove_yoast_license_nag_from_admin_page() {
	echo '<style>
		div.error {
			display: none;
		}
	</style>';
}