diff --git a/CHANGELOG.md b/CHANGELOG.md
index f430cf5f0599aa5156b60b98cbc5d49273ac082f..47ac4434b3c61b0785579eea3ebdb9831edb0b7a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,7 @@
 ### Fixed
 - Better new error messages display
 - get_plugins function loaded from wp-admin
+- Faster checks
 
 ## [3.0.0] - 2019-09-17
 ### Changed
diff --git a/src/Basic_Requirement_Checker.php b/src/Basic_Requirement_Checker.php
index 3bd30311d53a187da5eec4a7a1d4d921b77f205e..c6fb7fd66e23cb67bb7af16d181f94f01ca56691 100644
--- a/src/Basic_Requirement_Checker.php
+++ b/src/Basic_Requirement_Checker.php
@@ -343,21 +343,19 @@ if ( ! class_exists( 'WPDesk_Basic_Requirement_Checker' ) ) {
 			$name      = $plugin_info[ self::PLUGIN_INFO_KEY_NAME ];
 			$nice_name = $plugin_info[ self::PLUGIN_INFO_KEY_NICE_NAME ];
 
-			if ( ! self::is_wp_plugin_installed( $name ) ) {
-				$install_url = $this->prepare_plugin_repository_install_url( $plugin_info );
-
-				return $this->prepare_notice_message( sprintf( wp_kses( __( 'The &#8220;%s&#8221; plugin requires free %s plugin. <a href="%s">Install %s →</a>',
-					$this->get_text_domain() ), array( 'a' => array( 'href' => array() ) ) ),
-					$this->plugin_name, $nice_name, esc_url( $install_url ), $nice_name ) );
-			}
-
 			if ( ! self::is_wp_plugin_active( $name ) ) {
+				if ( ! self::is_wp_plugin_installed( $name ) ) {
+					$install_url = $this->prepare_plugin_repository_install_url( $plugin_info );
+
+					return $this->prepare_notice_message( sprintf( wp_kses( __( 'The &#8220;%s&#8221; plugin requires free %s plugin. <a href="%s">Install %s →</a>',
+						$this->get_text_domain() ), array( 'a' => array( 'href' => array() ) ) ),
+						$this->plugin_name, $nice_name, esc_url( $install_url ), $nice_name ) );
+				}
 				$activate_url = 'plugins.php?action=activate&plugin=' . urlencode( $plugin_info[ self::PLUGIN_INFO_KEY_NAME ] ) . '&plugin_status=all&paged=1&s&_wpnonce=' . urlencode( wp_create_nonce( 'activate-plugin_' . $name ) );
 
 				return $this->prepare_notice_message( sprintf( wp_kses( __( 'The &#8220;%s&#8221; plugin requires activating %s plugin. <a href="%s">Activate %s →</a>',
 					$this->get_text_domain() ), array( 'a' => array( 'href' => array() ) ) ),
 					$this->plugin_name, $nice_name, esc_url( admin_url( $activate_url ) ), $nice_name ) );
-
 			}
 
 			return null;