Radio button setup

Shopify Radio Button Option Setup — Complete Guide

Radio buttons show all mutually-exclusive choices at once — no dropdown click required. Best UX for 2-6 options. Standard use: shipping speed, warranty tier, package style. Here's the 2026 setup with real code and app comparison.

Last updated: August 14, 2026~7 min readBy the Print It My Way team

Radio vs checkbox vs dropdown vs button group

PatternSelection typeVisibilityBest for
RadioOne from group (mutually exclusive)All visible2-6 shipping speeds, warranty tiers, package styles
CheckboxIndependent yes/no (multiple selectable)All visibleAdd-ons (gift wrap + warranty + rush)
DropdownOne from groupHidden until click7+ text values (shoe sizes 5-13)
Button groupOne from groupAll visible2-6 sizes / colors (looks like radio but styled as buttons)

Common radio button use cases

Setup with Print It My Way (5 minutes)

  1. Install Print It My Way (Free plan supports 1 radio field)
  2. Dashboard → New Personalizer → drag in Radio field
  3. Configure:
    • Label: "Shipping speed"
    • Values (one per line):
      • Standard (free, 5-7 days)
      • Express (+$15, 2-3 days)
      • Overnight (+$35, 1 day)
    • Default selected: Standard
    • Required: Yes (mandatory choice)
    • Pricing tab → Per-value fee: $0 / $15 / $35
  4. Attach personalizer to product
  5. Test — verify Cart Transform applies correct fee per selection

Native theme code (free, no app)

Radio buttons via product-form.liquid:

<fieldset>
  <legend>Shipping speed</legend>
  <label>
    <input type="radio" name="properties[Shipping]" value="Standard" checked>
    Standard (free, 5-7 days)
  </label>
  <label>
    <input type="radio" name="properties[Shipping]" value="Express">
    Express (+$15, 2-3 days)
  </label>
  <label>
    <input type="radio" name="properties[Shipping]" value="Overnight">
    Overnight (+$35, 1 day)
  </label>
</fieldset>

Captures selection as line-item property. No fee applied unless you set up Cart Transform (Plus native or via personalizer app).

Styling radio buttons as modern UI

Native radio buttons look outdated. Style as pill-shaped selectable cards:

fieldset { border: none; padding: 0; }
fieldset label {
  display: block;
  padding: 14px 18px;
  border: 2px solid #e5e5e5;
  border-radius: 10px;
  cursor: pointer;
  margin-bottom: 8px;
  min-height: 44px;
  transition: all 0.15s;
}
fieldset label:hover { border-color: #059669; }
fieldset input:checked + span,
fieldset label:has(input:checked) {
  border-color: #059669;
  background: #ecfdf5;
}
fieldset input[type="radio"] {
  margin-right: 12px;
  accent-color: #059669;
}

Radio with images/icons per option

Add visual context to each option:

Personalizer apps support icon/image radios natively. Print It My Way Pro allows image upload per option value.

Mobile UX rules

Combining radio with other fields

Common pattern: Radio triggers additional fields via conditional logic.

Frequently asked questions

Radio vs dropdown — which for shipping options?

Radio for 2-4 shipping options (all visible, one-tap select). Dropdown for 5+ options.

How to add radio buttons to Shopify?

Personalizer app with Radio field (Print It My Way, Bold). Or theme code with <input type="radio"> in product-form.liquid.

Radio vs checkbox?

Radio: one from group. Checkbox: multiple independent yes/no toggles.

How to style Shopify radio buttons?

CSS on fieldset + label. Pill-shaped cards with hover + checked state. Accent-color for native radio.

Radio with images per option?

Print It My Way Pro supports image per option value. Or custom theme code with img tag alongside radio input.

Cart Transform per radio value?

Yes. Per-value pricing in field settings. E.g. Shipping: Standard $0, Express +$15, Overnight +$35.

Required radio button?

Set Required = Yes. Add-to-Cart blocked until customer selects one option.

Default selected value?

Yes — reduces friction. Default to most popular option (usually "Standard" for shipping).

Best mobile UX?

Full-width options, 44 × 44 px minimum tap target, visible checked state, fee inline in label.

Radio with conditional field opening?

Yes. Radio "Package = Premium" triggers "Gift message" field. Print It My Way Pro conditional logic.

Related setup guides

Radio options — free on Shopify

Print It My Way Free plan includes Radio field + Cart Transform per-value pricing.

Install Print It My Way