Variable product checkout (variations)

Checkout a variable product by adding it to the cart after submitting the form. And redirecting the user to the cart or checkout page.

If you haven't already, first make sure you create a Variable product within WooCommerce.

You should now be able to see your variation ID's:

You will need these ID's in your form so you you can parse them to the settings in your form under "Form Settings > WooCommerce Checkout".

In our example we will add a "Radio button" element, with three options to choose from. These three options will be called "Green", "Red", and "Test". Each of them will hold the corresponding variation ID.

In our case we named the field product_variation_id so we can retrieve the variation ID later by calling {product_variation_id} tag.

We also added a Quantity element, just so the user can choose the quantity themselves, but this is not required if your users can only order 1 product at a time.

Now we can configure the checkout settings.

Go to Form Settings > WooCommerce Checkout and check "Enable WooCommerce Checkout", and optionally the other settings as desired.

Under "Enter the product(s) ID that needs to be added to the cart" configure the product ID, along with the tags to retrieve the selected variation ID. Our product ID is 51962, so our final line will be:

51962|{quantity}|{product_variation_id}

Now test the form, and see if the product along with the chosen variation was added to the cart.

Last updated