Show selling plans Shopify
Nov 10, 2023
<div style="display: none">
{% for group in product.selling_plan_groups %}
<fieldset>
<legend style="display: none;">Pick a subscription</legend>
{% unless product.requires_selling_plan %}
<input id="selling_plan_onetime" checked="checked" name="selling_plan" type="radio" value="" />
<label for="selling_plan_onetime">One-time purchase</label><br />
{% endunless %}
{% for selling_plan in group.selling_plans %}
<input id="selling_plan_{{ selling_plan.id }}" name="selling_plan" type="radio" value="{{ selling_plan.id }}" data-plan="{{forloop.index0}}" />
<label for="selling_plan_{{ selling_plan.id }}">{{ selling_plan.name }}</label>
<br />{% endfor %}</fieldset>{% endfor %}
</div>