Skip to content

Commit 1164680

Browse files
committed
v1.0.17
* Support for WooCommerce HPOS. * Minor fixes.
1 parent 5b17d2d commit 1164680

File tree

5 files changed

+1054
-990
lines changed

5 files changed

+1054
-990
lines changed

BlockBee.php

+8-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
Plugin Name: BlockBee Cryptocurrency Payment Gateway
44
Plugin URI: https://blockbee.io/resources/woocommerce/
55
Description: Accept cryptocurrency payments on your WooCommerce website
6-
Version: 1.0.16
6+
Version: 1.0.17
77
Requires at least: 5
88
Tested up to: 6.3
99
WC requires at least: 5.8
10-
WC tested up to: 7.9.0
10+
WC tested up to: 8.0.2
1111
Requires PHP: 7.2
1212
Author: BlockBee
1313
Author URI: https://blockbee.io/
@@ -131,3 +131,9 @@ function blockbee_deactivation()
131131
if (!wp_next_scheduled('blockbee_cronjob')) {
132132
wp_schedule_event(time(), 'blockbee_interval', 'blockbee_cronjob');
133133
}
134+
135+
add_action('before_woocommerce_init', function () {
136+
if (class_exists(\Automattic\WooCommerce\Utilities\FeaturesUtil::class)) {
137+
\Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility('custom_order_tables', __FILE__, true);
138+
}
139+
});

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -203,4 +203,8 @@ The easiest and fastest way is via our live chat on our [website](https://blockb
203203
#### 1.0.16
204204
* Minor fixes.
205205

206+
#### 1.0.17
207+
* Support for WooCommerce HPOS.
208+
* Minor fixes.
209+
206210
### Upgrade Notice

0 commit comments

Comments
 (0)