You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: includes/classes/Feature/WooCommerce/Orders.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -375,12 +375,12 @@ public function hpos_compatibility_notice( array $notices ): array {
375
375
return$notices;
376
376
}
377
377
378
-
if ( $this->is_hpos_compatible() ) {
378
+
if ( ! $this->is_hpos_enabled() || $this->is_hpos_compatible() ) {
379
379
return$notices;
380
380
}
381
381
382
382
$notices['wc_orders_incompatible'] = [
383
-
'html' => esc_html__( "Although the WooCommerce and Protected Content features are enabled, ElasticPress will not integrate with the WooCommerce Orders list if WooCommerce's High-performance order storage is enabled on WooCommerce versions below 9.8.0. HPOS is compatible with ElasticPress on WooCommerce 9.8.0 and greater.", 'elasticpress' ),
383
+
'html' => esc_html__( "Although the WooCommerce and Protected Content features are enabled, ElasticPress will not integrate with the WooCommerce Orders list while WooCommerce's High-performance order storage is enabled. HPOS integration requires WooCommerce 9.8.0 or greater.", 'elasticpress' ),
0 commit comments