If you have a currency converter where you need to change your currency to include <span class="money"> {{amount}} </span>.
You can do this by following these steps:
- From Shopify's admin, select Online Store.
- Select Actions.
- Select Edit code.
- Under "Templates", select product.liquid.
Note: If your theme contains sections, you may have to make these changes in a different file, like product-template.liquid under "Sections".
- Add this code to the bottom of the file:
<script> jQuery(window).bind("load", function () { if($('table.shappify_qb_grid').length){ $("table.shappify_qb_grid tbody tr td:nth-child(2)").each(function(){ $(this).html("<span class='money'>" + $(this).html() + "</span>"); }); } if(typeof Currency == 'object' && typeof Currency.convertAll == 'function') { Currency.convertAll(shopCurrency, jQuery('[name=currencies]').val()); } }); </script>
- Select Save.
That's it!
These steps will allow totals on the Quantity Breaks grid to change with your currency converter.