Hi all,
I am trying to add in a simple question which is responded to with radio buttons on my cart page. I have added the following code to main-cart-items.liquid:
<p class="cart-attribute__field">
<label>Skittles or Oreos</label><br>
<input required class="required" type="radio" name="attributes[Skittles or Oreos]" value="Skittles"{% if cart.attributes["Skittles or Oreos"] == "Skittles" %} checked{% endif %}> <span>Skittles</span><br>
<input required class="required" type="radio" name="attributes[Skittles or Oreos]" value="Oreos"{% if cart.attributes["Skittles or Oreos"] == "Oreos" %} checked{% endif %}> <span>Oreos</span><br>
</p>
This displays the following:
The functionality works perfectly on the cart screen but the problem is that when someone orders, I can’t find where their selection is stored in the order information.
Help! Please!

