Turn ordinary dropdowns into chunky boxes in a Shopify theme
To get this working on a shop:
- Upload jquery.clickboxes.js and add a script tag linking to it, or add the contents into the main JS file.
- Do the same with the CSS file. Adding it to the bottom of styles.css.liquid will be simplest.
- Add the script below to product.liquid, at the bottom, just before the </body> tag
<script>
FYI, for our Symmetry theme you'll have to skip (3) and add this line of code:
$('.selector-wrapper select').clickyBoxes();
To main.js.liquid, just after Shopify.OptionSelectors (which is around line 606). So on the line underneath:
new Shopify.OptionSelectors($(this).attr('id'), ...