Skip to content
How to Set Up Quantity Breaks in our Shopify Themes

How to Set Up Quantity Breaks in our Shopify Themes

Follow these steps to create a metafield for quantity breaks and structure it correctly to offer discounts.

πŸ“Œ Step 1: Create the Metafield

1. Log in to your Shopify admin panel.

2. Navigate to Settings > Custom Data.

3. Click Products (since we are adding quantity breaks to individual products).

4. Click Add definition to create a new metafield.

5. Set the Name as "Quantity Breaks" (or any preferred name).

6. Set the Namespace and Key as custom.quantity_breaks.

7. Under Type, select β€œSingle Line Text (List)”.

8. Click Save.

πŸ“Œ Step 2: Add Quantity Breaks to Products

1. Go to Products in your Shopify admin.

2. Select the product you want to add quantity breaks to.

3. Scroll down to the Metafields section.

4. Locate the Quantity Breaks metafield.

5. Enter quantity breaks in the format "quantity:discount", e.g.:

5:20
10:30
20:50

β€’ 5:20 β†’ Customer gets 20% off when buying 5 items.

β€’ 10:30 β†’ Customer gets 30% off when buying 10 items.

β€’ 20:50 β†’ Customer gets 50% off when buying 20 items.


6. Click Save.

πŸ“Œ Step 3: Display the Quantity Breaks on the Product Page

1. Open your Shopify theme code editor (Online Store > Themes > Edit code).

2. Locate the product template file (product.liquid or main-product.liquid).

3. Add the following Liquid code where you want to display quantity breaks:

{% if product.metafields.custom.quantity_breaks.value %}
  <div class="quantity-breaks">
    <h4>Buy More, Save More!</h4>
    <ul>
      {% for break in product.metafields.custom.quantity_breaks.value %}
        {% assign split_break = break | split: ":" %}
        <li>Buy {{ split_break[0] }}+ and get {{ split_break[1] }}% off</li>
      {% endfor %}
    </ul>
  </div>
{% endif %}


4. Save the file.

πŸ“Œ Step 4: Test the Setup

1. Visit the product page and check if the quantity breaks display correctly.

2. Adjust the CSS in theme.css or base.css for better styling if needed.

3. Test adding different quantities to the cart to ensure discounts apply correctly.

πŸ“Œ Step 5: Apply Discounts in Shopify Scripts (For Shopify Plus)


If you are using Shopify Plus, you can create a Shopify Script to automatically apply the discounts at checkout.

1. Go to Apps > Script Editor.

2. Click Create Script and choose Line item script.

3. Use a Ruby script like this:

cart.line_items.each do |line_item|
  product = line_item.variant.product
  quantity_breaks = product.metafields['custom']['quantity_breaks']

  if quantity_breaks
    quantity_breaks.split("\n").each do |break|
      qty, discount = break.split(":").map(&:to_i)

      if line_item.quantity >= qty
        line_item.change_line_price(line_item.line_price * (1 - (discount / 100.0)), message: "Bulk discount applied")
      end
    end
  end
end


4. Click Save and Publish.

βœ… Final Notes

β€’ Metafield type: "Single Line Text (List)"

β€’ Format: "quantity:discount" (e.g., 5:20, 10:30)

β€’ Customization: Modify the Liquid code to enhance the display.

β€’ Testing: Add different quantities to the cart and ensure the correct discount applies.


Now, your Shopify store has a dynamic quantity breaks system ready to boost **bulk purchases and conversions!

Β 

Β 

Β 

Β 

Cart (0)

10% OFF for your first order. Use code NEW10

Your cart is currently empty

Thirste Shopify Theme

Market Luxe Shopify Theme

The Malkin Shopify Theme

The Omcarat Shopify Theme

The Street Shopify Theme

The Matcha Shopify Theme

Sophie's Skin Shopify Theme

The Health Shopify Theme

Wishlist

Thirste Shopify Theme

Market Luxe Shopify Theme

The Malkin Shopify Theme

The Omcarat Shopify Theme

The Street Shopify Theme

The Matcha Shopify Theme

Sophie's Skin Shopify Theme

The Health Shopify Theme

Recently Viewed

Thirste Shopify Theme

Market Luxe Shopify Theme

The Malkin Shopify Theme

The Omcarat Shopify Theme

The Street Shopify Theme

The Matcha Shopify Theme

Sophie's Skin Shopify Theme

The Health Shopify Theme