Hello Calamuchitaportatil0,
We have recently carried out the preliminary investigation for the COT features compliance. Given that our plugin doesn’t use any of the orders-related tables, it’s hardly possible for it to cause any COT-related incompatibilities, but unfortunately WooCommerce expects all the 3d party plugins to declare their COT compatibility even when it has no relevance to their functioning.
We plan to include the COT compliance declaration with the next update that is tentatively planned for September. If you don’t wish to wait and feel comfortable editing some PHP code, you can open the wp-content/plugins/annasta-woocommerce-product-filters(-premium)/annasta-woocommerce-product-filters.php file of your site and add the following code just before the last “?>” line:
add_action( 'before_woocommerce_init', function() {
if ( class_exists( \Automattic\WooCommerce\Utilities\FeaturesUtil::class ) ) {
\Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', __FILE__, true );
}
} );