WooCommerce Blocks
Overview
WooCommerce Blocks replaces the classic shortcode-based cart and checkout with React-powered Gutenberg blocks. Custom plugins can extend the Checkout Block by registering inner blocks (custom fields inside checkout steps), using SlotFills (inject UI into predefined injection points), and extending the Store API to save and retrieve custom data. The block-based checkout is the default for new WooCommerce stores since version 8.3.
When to Use This Skill
- When adding custom fields to the checkout form (gift message, delivery date picker, VAT number)
- When injecting promotional content or upsell banners into the cart or checkout block
- When creating a custom checkout step with additional business logic
- When replacing the legacy shortcode checkout on existing WooCommerce sites
- When building a plugin that extends checkout behavior without modifying core templates
Core Instructions
Register a Checkout Inner Block
Inner blocks are React components that render inside a checkout step. They require PHP block registration + a JS/React frontend:
<?php
// my-checkout-fields/my-checkout-fields.php
add_action('woocommerce_blocks_loaded', function () {
if (!class_exists('Automattic\WooCommerce\Blocks\Integrations\IntegrationInterface')) {
return;
}
require_once __DIR__ . '/class-my-checkout-integration.php';
add_action(
'woocommerce_blocks_checkout_block_registration',
function ($integration_registry) {
$integration_registry->register(new My_Checkout_Integration());
}
);
});
<?php
// class-my-checkout-integration.php
use Automattic\WooCommerce\Blocks\Integrations\IntegrationInterface;
class My_Checkout_Integration implements IntegrationInterface {
public function get_name() {
return 'my-checkout-fields';
}
public function initialize() {
$this->register_block_frontend_scripts();
$this->register_inner_block();
}
private function register_block_frontend_scripts() {
wp_register_script(
'my-checkout-fields-frontend',
plugin_dir_url(__FILE__) . 'build/frontend.js',
['wc-blocks-checkout', 'wp-element'],
filemtime(plugin_dir_path(__FILE__) . 'build/frontend.js'),
true
);
}
private function register_inner_block() {
register_block_type(plugin_dir_path(__FILE__) . 'build/blocks/gift-message/block.json');
}
public function get_script_handles() {
return ['my-checkout-fields-frontend'];
}
public function get_editor_script_handles() {
return [];
}
public function get_script_data() {
return [];
}
}
Create the inner block React component
// src/blocks/gift-message/index.js
import { registerCheckoutBlock } from "@woocommerce/blocks-checkout";
import { __ } from "@wordpress/i18n";
import { useEffect, useState } from "@wordpress/element";
import {
useExtensionCartUpdateData,
extensionCartUpdate,
} from "@woocommerce/blocks-checkout";
const Block = ({ children, checkoutExtensionData }) => {
const [giftMessage, setGiftMessage] = useState("");
// Persist gift message to cart extension data
const handleChange = (e) => {
const value = e.target.value;
setGiftMessage(value);
extensionCartUpdate({
namespace: "my-checkout-fields",
data: { gift_message: value },
});
};
return (
<div className="wc-block-checkout__gift-message">
<label htmlFor="gift-message">
{__("Gift message (optional)", "my-checkout-fields")}
</label>
<textarea
id="gift-message"
value={giftMessage}
placeholder={__("Write your message here...", "my-checkout-fields")}
rows={3}
maxLength={200}
/>
<span className="character-count">{giftMessage.length}/200</span>
</div>
);
};
registerCheckoutBlock({
metadata: {
name: "my-checkout-fields/gift-message",
title: "Gift Message",
category: "woocommerce",
parent: ["woocommerce/checkout-shipping-methods-block"],
attributes: {},
},
component: Block,
});
Extend the Store API to persist custom data
<?php
// Extend the Store API Cart schema to accept and store custom extension data
add_action('woocommerce_blocks_loaded', function () {
woocommerce_store_api_register_endpoint_data([
'endpoint' => Automattic\WooCommerce\StoreApi\Schemas\V1\CartSchema::IDENTIFIER,
'namespace' => 'my-checkout-fields',
'schema_callback' => function () {
return [
'gift_message' => [
'description' => 'Gift message for the order',
'type' => 'string',
'context' => ['view', 'edit'],
'readonly' => false,
'sanitize_callback' => 'sanitize_textarea_field',
],
];
},
'schema_type' => ARRAY_A,
]);
// Save the gift message to WC session when cart is updated
woocommerce_store_api_register_update_callback([
'namespace' => 'my-checkout-fields',
'callback' => function (array $data) {
if (isset($data['gift_message'])) {
WC()->session->set('gift_message', sanitize_textarea_field($data['gift_message']));
}
},
]);
});
// Transfer session data to order meta on checkout
add_action('woocommerce_checkout_order_created', function ($order) {
$gift_message = WC()->session->get('gift_message', '');
if (!empty($gift_message)) {
$order->update_meta_data('_gift_message', $gift_message);
$order->save();
}
});
Use SlotFills for injecting UI without inner blocks
SlotFills are simpler than inner blocks — they inject content into predefined slots:
// src/frontend.js
import { registerPlugin } from "@wordpress/plugins";
import { ExperimentalOrderMeta } from "@woocommerce/blocks-checkout";
import { __ } from "@wordpress/i18n";
import { useSelect } from "@wordpress/data";
import { CART_STORE_KEY } from "@woocommerce/block-data";
const CartUpsellBanner = () => {
const cartTotal = useSelect((select) => {
const cart = select(CART_STORE_KEY).getCartData();
return cart?.totals?.total_items;
});
const freeShippingThreshold = 5000; // $50.00 in cents
const remaining = freeShippingThreshold - parseInt(cartTotal ?? "0");
if (remaining <= 0) return null;
return (
<div className="free-shipping-banner">
{__(`Add $${(remaining / 100).toFixed(2)} more for free shipping!`, "my-checkout-fields")}
</div>
);
};
registerPlugin("my-cart-upsell", {
render: () => (
<ExperimentalOrderMeta>
<CartUpsellBanner />
</ExperimentalOrderMeta>
),
scope: "woocommerce-checkout",
});
Build and enqueue assets with @wordpress/scripts
// package.json
{
"scripts": {
"build": "wp-scripts build src/frontend.js src/blocks/gift-message/index.js",
"start": "wp-scripts start src/frontend.js src/blocks/gift-message/index.js"
},
"devDependencies": {
"@wordpress/scripts": "^30.0.0"
}
}
// src/blocks/gift-message/block.json
{
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 3,
"name": "my-checkout-fields/gift-message",
"title": "Gift Message",
"category": "woocommerce",
"parent": ["woocommerce/checkout-shipping-methods-block"],
"textdomain": "my-checkout-fields",
"editorScript": "file:../../build/blocks/gift-message/index.js",
"script": "file:../../build/blocks/gift-message/index.js",
"style": "file:../../build/blocks/gift-message/style-index.css"
}
Examples
Checkout field validation
Validation of custom checkout data should be done server-side via the Store API update callback. Client-side filters (__experimentalRegisterCheckoutFilters) can only modify display values (e.g., price formatting), not validate form fields.
<?php
// Server-side validation in the Store API update callback
woocommerce_store_api_register_update_callback([
'namespace' => 'my-checkout-fields',
'callback' => function (array $data) {
if (isset($data['gift_message'])) {
$message = sanitize_textarea_field($data['gift_message']);
// Reject messages that contain URLs
if (preg_match('#https?://#i', $message)) {
throw new \Automattic\WooCommerce\StoreApi\Exceptions\RouteException(
'invalid_gift_message',
__('Gift messages cannot contain links.', 'my-checkout-fields'),
400
);
}
WC()->session->set('gift_message', $message);
}
},
]);
On the client side, handle the error response from extensionCartUpdate to display validation messages:
import { extensionCartUpdate } from "@woocommerce/blocks-checkout";
const handleChange = async (e) => {
const value = e.target.value;
setGiftMessage(value);
try {
await extensionCartUpdate({
namespace: "my-checkout-fields",
data: { gift_message: value },
});
setError(null);
} catch (err) {
setError(err.message);
}
};
Disable a payment method for certain cart conditions
<?php
// Hide "Pay Later" payment method if cart contains digital-only products
add_filter(
'woocommerce_blocks_payment_method_type_registration',
function ($payment_method_registry) {
$payment_method_registry->register(
new class implements \Automattic\WooCommerce\Blocks\Payments\PaymentMethodTypeInterface {
public function is_active() { return true; }
public function get_payment_method_script_handles() { return []; }
public function get_payment_method_data() { return []; }
public function get_name() { return 'custom-payment-guard'; }
public function initialize() {}
}
);
return $payment_method_registry;
}
);
add_filter('__experimental_woocommerce_blocks_payment_gateway_features_list', function ($features, $name) {
if ($name === 'pay-later') {
// Check if all items in cart are virtual/downloadable
$cart_has_physical = false;
foreach (WC()->cart->get_cart() as $item) {
$product = $item['data'];
if (!$product->is_virtual() && !$product->is_downloadable()) {
$cart_has_physical = true;
break;
}
}
if (!$cart_has_physical) {
$features['available'] = false;
}
}
return $features;
}, 10, 2);
Best Practices
- Use
extensionCartUpdate instead of local state for data that must survive page reload — it stores data in the WooCommerce session via the Store API
- Sanitize all custom data server-side — PHP
sanitize_textarea_field, sanitize_text_field, and absint are essential for any data written to order meta
- Build with
@wordpress/scripts — it handles dependency extraction, webpack config, and asset versioning automatically for WordPress/Gutenberg projects
- Use
block.json for inner blocks — the block registry requires a block.json manifest; it also enables automatic asset loading in the editor
- Test both classic and block checkout — some stores may still use the shortcode checkout; conditionally enqueue scripts only when block checkout is detected
- Use the
woocommerce_store_api_register_update_callback for server validation — client-side validation can be bypassed; always re-validate extension data in the callback
- Prefix all meta keys and namespaces with your plugin slug to avoid conflicts with other plugins
Common Pitfalls
| Problem |
Solution |
| Inner block not appearing in editor |
Ensure parent in block.json matches the exact block name of the checkout step you're targeting; use browser devtools to confirm the parent block name |
| Extension data not persisting to order |
Add woocommerce_checkout_order_created hook to transfer session data to order meta — Store API session data is not automatically copied to orders |
| SlotFill component not rendering |
The scope: "woocommerce-checkout" is required in registerPlugin; omitting it or using the wrong scope silently prevents rendering |
Build errors with @wordpress/scripts |
The entry points must be specified in package.json scripts or wp-scripts.config.js; by default only src/index.js is built |
| Blocks break on WooCommerce downgrade |
Pin @woocommerce/blocks-checkout package version to match the installed WooCommerce version in composer.json |
useSelect(CART_STORE_KEY) returns undefined |
Ensure the @woocommerce/block-data package is in the dependencies array of wp_register_script — the store is not globally available |
Related Skills
- @woocommerce-plugin-development
- @woocommerce-rest-api
- @gutenberg-block-development
- @checkout-flow-optimization
- @woocommerce-subscriptions
1---2name: woocommerce-blocks3description: Customize WooCommerce checkout and cart pages using Gutenberg blocks with server-side rendering, slot-fills, and extensibility hooks4---56# WooCommerce Blocks78## Overview910WooCommerce Blocks replaces the classic shortcode-based cart and checkout with React-powered Gutenberg blocks. Custom plugins can extend the Checkout Block by registering inner blocks (custom fields inside checkout steps), using SlotFills (inject UI into predefined injection points), and extending the Store API to save and retrieve custom data. The block-based checkout is the default for new WooCommerce stores since version 8.3.1112## When to Use This Skill1314- When adding custom fields to the checkout form (gift message, delivery date picker, VAT number)15- When injecting promotional content or upsell banners into the cart or checkout block16- When creating a custom checkout step with additional business logic17- When replacing the legacy shortcode checkout on existing WooCommerce sites18- When building a plugin that extends checkout behavior without modifying core templates1920## Core Instructions21221. **Register a Checkout Inner Block**2324 Inner blocks are React components that render inside a checkout step. They require PHP block registration + a JS/React frontend:2526 ```php27 <?php28 // my-checkout-fields/my-checkout-fields.php29 add_action('woocommerce_blocks_loaded', function () {30 if (!class_exists('Automattic\WooCommerce\Blocks\Integrations\IntegrationInterface')) {31 return;32 }33 require_once __DIR__ . '/class-my-checkout-integration.php';34 add_action(35 'woocommerce_blocks_checkout_block_registration',36 function ($integration_registry) {37 $integration_registry->register(new My_Checkout_Integration());38 }39 );40 });41 ```4243 ```php44 <?php45 // class-my-checkout-integration.php46 use Automattic\WooCommerce\Blocks\Integrations\IntegrationInterface;4748 class My_Checkout_Integration implements IntegrationInterface {49 public function get_name() {50 return 'my-checkout-fields';51 }5253 public function initialize() {54 $this->register_block_frontend_scripts();55 $this->register_inner_block();56 }5758 private function register_block_frontend_scripts() {59 wp_register_script(60 'my-checkout-fields-frontend',61 plugin_dir_url(__FILE__) . 'build/frontend.js',62 ['wc-blocks-checkout', 'wp-element'],63 filemtime(plugin_dir_path(__FILE__) . 'build/frontend.js'),64 true65 );66 }6768 private function register_inner_block() {69 register_block_type(plugin_dir_path(__FILE__) . 'build/blocks/gift-message/block.json');70 }7172 public function get_script_handles() {73 return ['my-checkout-fields-frontend'];74 }7576 public function get_editor_script_handles() {77 return [];78 }7980 public function get_script_data() {81 return [];82 }83 }84 ```85862. **Create the inner block React component**8788 ```javascript89 // src/blocks/gift-message/index.js90 import { registerCheckoutBlock } from "@woocommerce/blocks-checkout";91 import { __ } from "@wordpress/i18n";92 import { useEffect, useState } from "@wordpress/element";93 import {94 useExtensionCartUpdateData,95 extensionCartUpdate,96 } from "@woocommerce/blocks-checkout";9798 const Block = ({ children, checkoutExtensionData }) => {99 const [giftMessage, setGiftMessage] = useState("");100101 // Persist gift message to cart extension data102 const handleChange = (e) => {103 const value = e.target.value;104 setGiftMessage(value);105 extensionCartUpdate({106 namespace: "my-checkout-fields",107 data: { gift_message: value },108 });109 };110111 return (112 <div className="wc-block-checkout__gift-message">113 <label htmlFor="gift-message">114 {__("Gift message (optional)", "my-checkout-fields")}115 </label>116 <textarea117 id="gift-message"118 value={giftMessage}119 onChange={handleChange}120 placeholder={__("Write your message here...", "my-checkout-fields")}121 rows={3}122 maxLength={200}123 />124 <span className="character-count">{giftMessage.length}/200</span>125 </div>126 );127 };128129 registerCheckoutBlock({130 metadata: {131 name: "my-checkout-fields/gift-message",132 title: "Gift Message",133 category: "woocommerce",134 parent: ["woocommerce/checkout-shipping-methods-block"],135 attributes: {},136 },137 component: Block,138 });139 ```1401413. **Extend the Store API to persist custom data**142143 ```php144 <?php145 // Extend the Store API Cart schema to accept and store custom extension data146 add_action('woocommerce_blocks_loaded', function () {147 woocommerce_store_api_register_endpoint_data([148 'endpoint' => Automattic\WooCommerce\StoreApi\Schemas\V1\CartSchema::IDENTIFIER,149 'namespace' => 'my-checkout-fields',150 'schema_callback' => function () {151 return [152 'gift_message' => [153 'description' => 'Gift message for the order',154 'type' => 'string',155 'context' => ['view', 'edit'],156 'readonly' => false,157 'sanitize_callback' => 'sanitize_textarea_field',158 ],159 ];160 },161 'schema_type' => ARRAY_A,162 ]);163164 // Save the gift message to WC session when cart is updated165 woocommerce_store_api_register_update_callback([166 'namespace' => 'my-checkout-fields',167 'callback' => function (array $data) {168 if (isset($data['gift_message'])) {169 WC()->session->set('gift_message', sanitize_textarea_field($data['gift_message']));170 }171 },172 ]);173 });174175 // Transfer session data to order meta on checkout176 add_action('woocommerce_checkout_order_created', function ($order) {177 $gift_message = WC()->session->get('gift_message', '');178 if (!empty($gift_message)) {179 $order->update_meta_data('_gift_message', $gift_message);180 $order->save();181 }182 });183 ```1841854. **Use SlotFills for injecting UI without inner blocks**186187 SlotFills are simpler than inner blocks — they inject content into predefined slots:188189 ```javascript190 // src/frontend.js191 import { registerPlugin } from "@wordpress/plugins";192 import { ExperimentalOrderMeta } from "@woocommerce/blocks-checkout";193 import { __ } from "@wordpress/i18n";194 import { useSelect } from "@wordpress/data";195 import { CART_STORE_KEY } from "@woocommerce/block-data";196197 const CartUpsellBanner = () => {198 const cartTotal = useSelect((select) => {199 const cart = select(CART_STORE_KEY).getCartData();200 return cart?.totals?.total_items;201 });202203 const freeShippingThreshold = 5000; // $50.00 in cents204 const remaining = freeShippingThreshold - parseInt(cartTotal ?? "0");205206 if (remaining <= 0) return null;207208 return (209 <div className="free-shipping-banner">210 {__(`Add $${(remaining / 100).toFixed(2)} more for free shipping!`, "my-checkout-fields")}211 </div>212 );213 };214215 registerPlugin("my-cart-upsell", {216 render: () => (217 <ExperimentalOrderMeta>218 <CartUpsellBanner />219 </ExperimentalOrderMeta>220 ),221 scope: "woocommerce-checkout",222 });223 ```2242255. **Build and enqueue assets with `@wordpress/scripts`**226227 ```json228 // package.json229 {230 "scripts": {231 "build": "wp-scripts build src/frontend.js src/blocks/gift-message/index.js",232 "start": "wp-scripts start src/frontend.js src/blocks/gift-message/index.js"233 },234 "devDependencies": {235 "@wordpress/scripts": "^30.0.0"236 }237 }238 ```239240 ```json241 // src/blocks/gift-message/block.json242 {243 "$schema": "https://schemas.wp.org/trunk/block.json",244 "apiVersion": 3,245 "name": "my-checkout-fields/gift-message",246 "title": "Gift Message",247 "category": "woocommerce",248 "parent": ["woocommerce/checkout-shipping-methods-block"],249 "textdomain": "my-checkout-fields",250 "editorScript": "file:../../build/blocks/gift-message/index.js",251 "script": "file:../../build/blocks/gift-message/index.js",252 "style": "file:../../build/blocks/gift-message/style-index.css"253 }254 ```255256## Examples257258### Checkout field validation259260Validation of custom checkout data should be done **server-side** via the Store API update callback. Client-side filters (`__experimentalRegisterCheckoutFilters`) can only modify display values (e.g., price formatting), not validate form fields.261262```php263<?php264// Server-side validation in the Store API update callback265woocommerce_store_api_register_update_callback([266 'namespace' => 'my-checkout-fields',267 'callback' => function (array $data) {268 if (isset($data['gift_message'])) {269 $message = sanitize_textarea_field($data['gift_message']);270271 // Reject messages that contain URLs272 if (preg_match('#https?://#i', $message)) {273 throw new \Automattic\WooCommerce\StoreApi\Exceptions\RouteException(274 'invalid_gift_message',275 __('Gift messages cannot contain links.', 'my-checkout-fields'),276 400277 );278 }279280 WC()->session->set('gift_message', $message);281 }282 },283]);284```285286On the client side, handle the error response from `extensionCartUpdate` to display validation messages:287288```javascript289import { extensionCartUpdate } from "@woocommerce/blocks-checkout";290291const handleChange = async (e) => {292 const value = e.target.value;293 setGiftMessage(value);294 try {295 await extensionCartUpdate({296 namespace: "my-checkout-fields",297 data: { gift_message: value },298 });299 setError(null);300 } catch (err) {301 setError(err.message);302 }303};304```305306### Disable a payment method for certain cart conditions307308```php309<?php310// Hide "Pay Later" payment method if cart contains digital-only products311add_filter(312 'woocommerce_blocks_payment_method_type_registration',313 function ($payment_method_registry) {314 $payment_method_registry->register(315 new class implements \Automattic\WooCommerce\Blocks\Payments\PaymentMethodTypeInterface {316 public function is_active() { return true; }317 public function get_payment_method_script_handles() { return []; }318 public function get_payment_method_data() { return []; }319 public function get_name() { return 'custom-payment-guard'; }320 public function initialize() {}321 }322 );323 return $payment_method_registry;324 }325);326327add_filter('__experimental_woocommerce_blocks_payment_gateway_features_list', function ($features, $name) {328 if ($name === 'pay-later') {329 // Check if all items in cart are virtual/downloadable330 $cart_has_physical = false;331 foreach (WC()->cart->get_cart() as $item) {332 $product = $item['data'];333 if (!$product->is_virtual() && !$product->is_downloadable()) {334 $cart_has_physical = true;335 break;336 }337 }338 if (!$cart_has_physical) {339 $features['available'] = false;340 }341 }342 return $features;343}, 10, 2);344```345346## Best Practices347348- **Use `extensionCartUpdate` instead of local state** for data that must survive page reload — it stores data in the WooCommerce session via the Store API349- **Sanitize all custom data server-side** — PHP `sanitize_textarea_field`, `sanitize_text_field`, and `absint` are essential for any data written to order meta350- **Build with `@wordpress/scripts`** — it handles dependency extraction, webpack config, and asset versioning automatically for WordPress/Gutenberg projects351- **Use `block.json` for inner blocks** — the block registry requires a `block.json` manifest; it also enables automatic asset loading in the editor352- **Test both classic and block checkout** — some stores may still use the shortcode checkout; conditionally enqueue scripts only when block checkout is detected353- **Use the `woocommerce_store_api_register_update_callback` for server validation** — client-side validation can be bypassed; always re-validate extension data in the callback354- **Prefix all meta keys and namespaces** with your plugin slug to avoid conflicts with other plugins355356## Common Pitfalls357358| Problem | Solution |359|---------|----------|360| Inner block not appearing in editor | Ensure `parent` in `block.json` matches the exact block name of the checkout step you're targeting; use browser devtools to confirm the parent block name |361| Extension data not persisting to order | Add `woocommerce_checkout_order_created` hook to transfer session data to order meta — Store API session data is not automatically copied to orders |362| SlotFill component not rendering | The `scope: "woocommerce-checkout"` is required in `registerPlugin`; omitting it or using the wrong scope silently prevents rendering |363| Build errors with `@wordpress/scripts` | The entry points must be specified in `package.json` scripts or `wp-scripts.config.js`; by default only `src/index.js` is built |364| Blocks break on WooCommerce downgrade | Pin `@woocommerce/blocks-checkout` package version to match the installed WooCommerce version in `composer.json` |365| `useSelect(CART_STORE_KEY)` returns undefined | Ensure the `@woocommerce/block-data` package is in the `dependencies` array of `wp_register_script` — the store is not globally available |366367## Related Skills368369- @woocommerce-plugin-development370- @woocommerce-rest-api371- @gutenberg-block-development372- @checkout-flow-optimization373- @woocommerce-subscriptions