Make a selection

Remove "- 1" from "1 - 1" in the Quantity Breaks Grid

Laurel
Laurel
  • Updated

In Quantity Breaks, you can replace text or characters in the Quantity Breaks grid. To do this, please follow the steps below.

Alert

  • The Quantity Breaks (standalone) app is no longer available for new installations. If you are currently using Quantity Breaks, you will be able to continue using the app on a grandfathered plan.
  • New requests for Quantity Breaks will be directed to Custom Pricing. Custom Pricing's Select plans can be used to create quantity breaks. For more information on pricing, please visit Custom Pricing Overview.
  • If you'd like move from Quantity Breaks (standalone) to Custom Pricing, please visit Switch from Quantity Breaks to Custom Pricing.

 


 

Setup

  1. From Shopify's admin, select Online Store.
  2. Select Actions.

    Actions

  3. Select Edit code.
  4. 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.

    select product.liquid

  5. Add this code to the bottom of the file:
    <script>
    
    var has_changed = false;
    
    $('#shappify-qty-msg').on('DOMNodeInserted', function(e) {
    if(has_changed==false){
    has_changed = true;
    
    var newtext = $(".shappify_qb_grid:visible tbody").children(":first-child").children(":first-child").text().replace('- 1', '');
    
    $(".shappify_qb_grid:visible tbody").children(":first-child").children(":first-child").text(newtext); 
     } 
    });
    </script>

    copy and paste this code

  6. Select Save.