Hello everyone!,
First time poster here im a bit stuck on a tricky problem but I am almost there! I want convert our stores existing selector into radio buttons
(This is what I have so far)
The probelm is when i submit nothing happens
However i know the radio submission does work as i tested it using this code:
- {% for variant in product.variants %}
- {{ variant.title }} - {{ variant.price | money }} {% endfor %}
This is what I have so far:
{% unless product.has_only_default_variant %}
{% for option in product.options_with_values %}
This is how it supposed to look like
All help appreciated!

