Check all plugins for presence in the untested plugins list, not just WooCommerce ones
This commit is contained in:
parent
5400bbaf6d
commit
e3be6a12dd
|
@ -457,7 +457,6 @@ $untested_plugins = $plugin_updates->get_untested_plugins( WC()->version, 'minor
|
||||||
|
|
||||||
$version_string = '';
|
$version_string = '';
|
||||||
$network_string = '';
|
$network_string = '';
|
||||||
$untested_string = '';
|
|
||||||
if ( strstr( $plugin['url'], 'woothemes.com' ) || strstr( $plugin['url'], 'woocommerce.com' ) ) {
|
if ( strstr( $plugin['url'], 'woothemes.com' ) || strstr( $plugin['url'], 'woocommerce.com' ) ) {
|
||||||
if ( ! empty( $plugin['version_latest'] ) && version_compare( $plugin['version_latest'], $plugin['version'], '>' ) ) {
|
if ( ! empty( $plugin['version_latest'] ) && version_compare( $plugin['version_latest'], $plugin['version'], '>' ) ) {
|
||||||
/* translators: %s: plugin latest version */
|
/* translators: %s: plugin latest version */
|
||||||
|
@ -467,11 +466,11 @@ $untested_plugins = $plugin_updates->get_untested_plugins( WC()->version, 'minor
|
||||||
if ( false != $plugin['network_activated'] ) {
|
if ( false != $plugin['network_activated'] ) {
|
||||||
$network_string = ' – <strong style="color:black;">' . __( 'Network enabled', 'woocommerce' ) . '</strong>';
|
$network_string = ' – <strong style="color:black;">' . __( 'Network enabled', 'woocommerce' ) . '</strong>';
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
$untested_string = '';
|
||||||
if ( array_key_exists( $plugin['plugin'], $untested_plugins ) ) {
|
if ( array_key_exists( $plugin['plugin'], $untested_plugins ) ) {
|
||||||
$untested_string = ' – <strong style="color:red;">' . esc_html__( 'Not tested with the active version of WooCommerce', 'woocommerce' ) . '</strong>';
|
$untested_string = ' – <strong style="color:red;">' . esc_html__( 'Not tested with the active version of WooCommerce', 'woocommerce' ) . '</strong>';
|
||||||
}
|
}
|
||||||
}
|
|
||||||
?>
|
?>
|
||||||
<tr>
|
<tr>
|
||||||
<td><?php echo $plugin_name; ?></td>
|
<td><?php echo $plugin_name; ?></td>
|
||||||
|
|
Loading…
Reference in New Issue