Our plugin is HPOS compatible and the next release will declare this compatibility, but I don’t know when it’ll be released.
If you already want to perform some tests you can add this snippet at the bottom of woocommerce-jos-autocoupon.php.
add_action( 'before_woocommerce_init', function() {
if ( class_exists( '\Automattic\WooCommerce\Utilities\FeaturesUtil' ) ) {
\Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', __FILE__, true );
}
} );
If you don’t wish to alter the plugin file directly, you can add this snippet to your child theme’s functions.php instead and replace __FILE__ with the full path to our plugin’s woocommerce-jos-autocoupon-pro.php file.
-
This reply was modified 2 years ago by
Soft79.