This is a developmental repo. Clone this repo and run npm install && composer install && npm run build
OR
| Download latest release |
|---|
Experimental plugin that registers the Mix and Match blocks for use in the Add to Cart with Options block.
Warning
- This is provided as is and does not receive priority support.
- Please test thoroughly before using in production.
- Requires WordPress 6.5+
- Requires WooCommerce 10.3+
- Requires WooCommerce Mix and Match Products 2.8+
- Enable admin features in WooCommerce with the following code snippet:
add_filter( 'woocommerce_admin_features', function( $features ) {
$features[] = 'experimental-blocks';
$features[] = 'blockified-single-product-template-simple';
$features[] = 'blockified-add-to-cart';
$features[] = 'blockified-add-to-cart-mix-and-match';
return $features;
}, 20 );
- Edit the single product block template to include the Add to Cart with Options block.