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
as y'all may have heard WooCommerce are changing how orders are stored with the project High Performance Order Storage (HPOS), as of now it's scheduled to be enabled by default starting with WooCommerce 8.0 scheduled for release on 2023-08-08.
I've started to audit the codebases for some of my customers using WooCommerce and the upgrade path is quite straight forward, mainly consisting of changing all interactions with orders to use WooCommerce's API:s instead of WordPress's post API:s.
I had a look through this plugin and there are a few changes to be made, I've started some work to test it out and make sure the plugin works both with HPOS and the current method where orders are stored as posts, happy to submit a PR if y'all are interested and haven't started working on this already.
The text was updated successfully, but these errors were encountered:
Made two PR:s SwedbankPay/swedbank-pay-woocommerce-core#89 and #144 with the things I've found so far while testing out HPOS. There are probably more things to fix (and I haven't tried the subscription functionality) but this at least makes the base functionality of handling payments work.
Hey,
as y'all may have heard WooCommerce are changing how orders are stored with the project High Performance Order Storage (HPOS), as of now it's scheduled to be enabled by default starting with WooCommerce 8.0 scheduled for release on 2023-08-08.
Some high level overview of the project here: https://developer.woocommerce.com/2022/09/14/high-performance-order-storage-progress-report/ and some guidelines for extension developers here: https://github.com/woocommerce/woocommerce/wiki/High-Performance-Order-Storage-Upgrade-Recipe-Book
I've started to audit the codebases for some of my customers using WooCommerce and the upgrade path is quite straight forward, mainly consisting of changing all interactions with orders to use WooCommerce's API:s instead of WordPress's post API:s.
I had a look through this plugin and there are a few changes to be made, I've started some work to test it out and make sure the plugin works both with HPOS and the current method where orders are stored as posts, happy to submit a PR if y'all are interested and haven't started working on this already.
The text was updated successfully, but these errors were encountered: