Remove WPML notices
If you’r developing website with wpml plugin and u don’t have activation code – use these snippet to hide “enter licence key” notices
/** * Remove WPML notices **/ if( ! function_exists( 'm7_remove_wmpl_notices' ) ) : function m7_remove_wmpl_notices() { remove_action('admin_notices', array( WP_Installer(), 'show_site_key_nags' ) ); remove_action( 'admin_notices', array( WP_Installer(), 'setup_plugins_page_notices' ) ); } endif; add_action( 'init', 'm7_remove_wmpl_notices', 11 );