Skip to content

Instantly share code, notes, and snippets.

@zakhardage
Last active April 19, 2022 10:53
Show Gist options
  • Star 15 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save zakhardage/7261874 to your computer and use it in GitHub Desktop.
Save zakhardage/7261874 to your computer and use it in GitHub Desktop.
Shopify tiered pricing using javascript (non-app). This example has the quantity breaks controlled by theme settings.
// config -> settings.html
// Make sure you have the same number of quantity breaks as product variants
<fieldset>
<legend>Quantity Breaks</legend>
<table class="standard-table">
<tr><td>Enter quantity breaks in ascending order separated by a comma (e.g. 5, 10, 20, 50)</td><td><input type="text" name="breaks" size="50" /></td></tr>
</table>
</fieldset>
// templates -> product.liquid
<table>
<tr><th>QTY</th><th>PRICE PER {{ product.options[0] }}</th></tr>
{% for variant in product.variants %}
<tr><td>{{ variant.title }}</td><td>{{ variant.price | money }}</td></tr>
{% endfor %}
</table>
<form action="/cart/add" method="post">
<label>Quantity: </label>
<input type="text" id="quantity" name="quantity" onkeyup="quantityUpdate(this.value)" value="1" onclick="this.select()" />
<input type="hidden" name="id" id="product-select" value="{{ product.variants[0].id }}" />
<button type="submit"></button>
</form>
{% assign breaks = settings.breaks | split:', ' %}
<script type="text/javascript">
function quantityUpdate(quantity){
var qty = parseInt(quantity);
var break;
var variant = new Array();
{% for variant in product.variants %}
variant[{{ forloop.index | minus:1 }}] = "{{ variant.id }}";
{% endfor %}
{% for break in breaks reversed %}
break = parseInt({{ break }});
if(qty < break) {document.getElementById("product-select").value = variant[{{ forloop.index | minus:1 }}];}
{% endfor %}
}
</script>
@kyletroop
Copy link

Where exactly would this go in the Shopify theme files?

@zakhardage
Copy link
Author

In the settings.html file and the product.liquid file. Where in those files specifically would depend on your theme.

@smashal
Copy link

smashal commented Sep 30, 2014

Where do I specify the break percentage? How does this work?

@zakhardage
Copy link
Author

I've added a repository and updated this code here: https://github.com/zakhardage/Tiered-Pricing

@floetry
Copy link

floetry commented Mar 15, 2015

Hi, thanks for writing this code. I was trying to use it (the updated) on my shopfy store and I wasn't quite sure where to add this :
{% if product.options[0] == 'Rate' or product.options[0] == 'rate' %} {% include 'tiered-pricing' %} {% else %} ... {% endif %}

The instructions just say "Find ..."

Thank you!

Copy link

ghost commented Jul 2, 2015

Hi, I'm also having the same issue as floetry described above. Please let us know where we need to add the code to include tiered-pricing. Thank you in advance. I am also attempting to utilize the update code.

@bashfulrobot
Copy link

Anyone figure this out? Same question as the last two....

@torybenya
Copy link

For those of you wondering where to edit the liquid as indicated ... look at the raw README.md file here: https://raw.githubusercontent.com/zakhardage/Tiered-Pricing/master/README.md

I think something got stripped out when he was trying to add that file - GitHub's markdown is a little different than other varieties, or so I've been told.

What's missing is this:
Find <form action="/cart/add" method="post"> ... </form>

@shkoober
Copy link

I'm not sure how to 'wrap' in the code, do I just paste in the segment ?

@shkoober
Copy link

has anyone successfully implemented this? it seems to me to just be a variant...doesn't actually pull from the same inventory entry...

@leezimu516
Copy link

Does Anyone know how to implement this. I follow the steps, it seems like adding a variant which can't update the price automatically?

@aaliyan111
Copy link

aaliyan111 commented May 10, 2017

@abhishekj
Copy link

Any one has a solution without creating a variant per rate?

Let us know too,
thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment