I am using the Spoke/Athens theme and I would like to add fields to the checkout where the customer would enter the year, make, model and motor size of their watercraft.
Any ideas how I can do this? I looked at the template but do not see a way to add these fields
Quick reality check, Shopify’s checkout is locked down and you can’t just edit the Liquid like the rest of your theme. The level of customization you can do depends on your plan.
Only Shopify Plus gets full checkout.liquid access (and even that’s being phased out in favor of checkout extensibility). For Spoke/Athens on a standard plan, line item properties on the product page is the path I’d take.
Shopify checkout is protected, so you can’t directly add custom fields there using theme code.
What you can do instead:
Cart notes (basic option)
Add a note field on the cart page where customers can type their watercraft details.
It’s easy to set up, and the info shows on the order, but it’s just one text box, not separate fields.
Cart attributes
You can add multiple fields like Year, Make, Model, and Motor Size on the cart page.
This keeps the data more organized and it shows clearly in the order details. But for this you have to add some code on cart template.
The easiest option will be to use a 3rd-party app (Magical Custom Fields). It’s affordable and lets you add fields such as Year, Make, Model, and Motor Size directly on the product page, as dropdowns or text fields.
Customers fill this in before adding to the cart, and the data carries through to the order, packing slips, and exports.
Since you have a paid theme (files not public), and your theme already comes with cart note logic, and Shopify provides an AI assistant (Sidekick), your best bet is to just ask it to help you do it. It can probably do 90% of what you want. The other 10% will require actual work and research. But it can tell you exactly what you need to do.
Add the below code in the cart page, find the file main-cart -item.liquid file. It totally depends on the theme structure, maybe file name change & update the below code under the form section.
In most Shopify themes including Spoke/Athens the checkout fields can’t be modified directly unless you’re on Shopify Plus. The best work around is to use line item properties on the cart page where you collect the information in custom input fields for year, make, model, and motor size. These values then carry through to the order details. Alternatively, use a product page custom form block or a cart drawer app that supports custom fields if you want a more seamless experience.