From 6c0a0aeb0569a35254e701911bbeec8310617273 Mon Sep 17 00:00:00 2001 From: Burhan Nasir Date: Mon, 27 Apr 2026 15:53:12 +0500 Subject: [PATCH] Move CoAuthorsPlus and WooCommerceSubscriptionSearch settings to 3rd Party Section --- includes/classes/Feature/CoAuthorsPlus.php | 2 ++ includes/classes/Feature/WooCommerceSubscriptionSearch.php | 2 ++ 2 files changed, 4 insertions(+) diff --git a/includes/classes/Feature/CoAuthorsPlus.php b/includes/classes/Feature/CoAuthorsPlus.php index cb8fa626..6e285c9e 100644 --- a/includes/classes/Feature/CoAuthorsPlus.php +++ b/includes/classes/Feature/CoAuthorsPlus.php @@ -46,6 +46,8 @@ class CoAuthorsPlus extends Feature { public function __construct() { $this->slug = 'co_authors_plus'; + $this->group = 'third-party-plugins'; + if ( ! defined( 'EP_VERSION' ) || version_compare( EP_VERSION, '5.2.0', '<' ) ) { $this->set_i18n_strings(); } diff --git a/includes/classes/Feature/WooCommerceSubscriptionSearch.php b/includes/classes/Feature/WooCommerceSubscriptionSearch.php index e8f4a6ff..7491b208 100644 --- a/includes/classes/Feature/WooCommerceSubscriptionSearch.php +++ b/includes/classes/Feature/WooCommerceSubscriptionSearch.php @@ -30,6 +30,8 @@ class WooCommerceSubscriptionSearch extends \ElasticPress\Feature { public function __construct() { $this->slug = 'woocommerce_subscription_search'; + $this->group = 'third-party-plugins'; + if ( ! defined( 'EP_VERSION' ) || version_compare( EP_VERSION, '5.2.0', '<' ) ) { $this->set_i18n_strings(); }