Conversation
supportAs title – this plugin doesn’t support a block based checkout, only the old shortcode version.
After doing a little digging, it seems to be a timing issue (the plugin is running too late, after WooCommerce has already checked for compatibility). As a quick fix, you can edit the constructor to look like this (just added a priority of 9, which beats WooCommerce default of 10). add_action( 'plugins_loaded', array( $this, 'init' ), 9);
After doing a little digging, it seems to be a timing issue (the plugin is running too late, after WooCommerce has already checked for compatibility). As a quick fix, you can edit the constructor to look like this (just added a priority of 9, which beats WooCommerce default of 10). add_action( 'plugins_loaded', array( $this, 'init' ), 9);