The first WooCommerce Checkout Summit runs in Palermo, Italy in April 2026. If you have spent time fighting woocommerce_checkout_process or chasing race conditions in the fragments AJAX call, it is worth a look. One track, one subject: the checkout, which is the part of any store where the money either moves or does not.
Why the WooCommerce Checkout Summit matters
Rodolfo Melogli of Business Bloomer hosts it, Woo sponsors it, and the WooCommerce Checkout Summit is a closed-room event. No digital track, no recorded sessions sold behind a paywall afterwards. You are either in the room in Sicily or you are reading someone else’s notes later. For developers the draw is James Kemp, Woo’s Product Manager, talking through the decisions that shape where the platform goes next.
With the Block-based checkout now the direction of travel, the reasoning behind the architectural shifts matters more than the mechanics of any single API. Most of us have inherited a checkout held together by custom JS hacks, and it stays standing right up until the next update. That is the bottleneck the summit is aimed at.
Refactoring the legacy approach
Manipulating checkout fields used to mean leaning on PHP hooks. The newer path runs through the Store API with a lot more structure to it. Here is the naive version that still turns up in production, set against where the platform is heading:
<?php
/**
* The Naive Approach: Direct POST manipulation
* This often fails with Block-based checkouts or custom AJAX flows.
*/
add_action( 'woocommerce_checkout_process', 'bbioon_naive_validation' );
function bbioon_naive_validation() {
if ( ! isset( $_POST['custom_field'] ) || empty( $_POST['custom_field'] ) ) {
wc_add_notice( __( 'Field is required.' ), 'error' );
}
}
Getting those requirements into the modern Woo schema without wrecking the customer’s path through checkout is the practical problem, and it is the kind of thing this event is built for. James Kemp’s talk, “WooCommerce Unfiltered”, is set up to cover the trade-offs made while these systems were being built. If you work on enterprise stores, that is a conversation worth hearing firsthand.
If the WooCommerce Checkout Summit topics are eating your dev hours, I can take them on. I have been working with WordPress since the 4.x days.
The case for a single track
Large conferences scatter people across ten rooms. A single track puts everyone in the WooCommerce Checkout Summit room on the same problem, approached from different angles, which is a better use of two days whether you run an agency or work alone. Tickets are limited, and the dates are April 23-24, 2026 in Palermo.