# App configuration

Let's take a tour around our app to see what you've got.

After installing app, you will be directed to the app admin right in your Shopify admin.

You can save your time more by **Pinning it in your Shopify admin**

<table><thead><tr><th width="375">Section in app admin</th><th>What you've got</th></tr></thead><tbody><tr><td><strong>Overview</strong></td><td><strong>Our homepage, where you can take a look how  you can do with our app. See the overall statistics about your campaigns</strong></td></tr><tr><td><strong>Offers</strong></td><td><strong>Where you can set your own rules to offer discounts to your customers.</strong><br><br>E.g. You can create a rule to give a 10% discount if product is purchased in quantities greater than 10</td></tr><tr><td><strong>Offer settings</strong></td><td><p><strong>Where you can adjust the display settings for app compatibility and a better shopping experience</strong></p><p><br>E.g. Display promotional offers directly on the product page, Suggest related iems with a specific promotion in the cart page.</p></td></tr><tr><td><strong>Upsell, Cross-sell</strong></td><td><strong>Where you can set up offers to maximize sales opportunities durin and after the checkout process.</strong><br><br>E.g: Display offers on Checkout page, Post-purchase page, or Order Status page</td></tr><tr><td><strong>Statistics</strong></td><td><strong>Where provides detailed insights into the performance of your discount campaigns, enabling you to optimize your strategies and maximize results.</strong><br><br>E.g: Extra revenue, AOV, Conversion rate, Top converting campaigns, Top converting products.</td></tr><tr><td><strong>Pricing plan</strong></td><td><strong>Where you can explore and select teh subscription plan that best fits your store's needs.</strong></td></tr><tr><td><strong>App settings</strong></td><td><strong>Where you can add settings to integrate the app smoothly with your store.</strong></td></tr><tr><td><strong>Limit purchase</strong></td><td><strong>Where you can set your owner rules to limit purchases to your customers.</strong><br><br>E.g. You can create a rule requiring customers to purchase a minimum of 2 and a maximum of 10 quantities of a product.<br><br><em>Note: This feature is currently available on our other app to help with development.</em>  <a href="https://apps.shopify.com/pareto-limit-purchase"><em>Free to try it.</em></a></td></tr></tbody></table>


# Enable Embed App

To ensure the app functions properly and is compatible with your store, you need to enable the embed app and add the app block to the product page where you want the discount to be displayed

### 1. Enable embed app

* Go to **Dashboard** app -> click the **Enable** button to be redirected to your theme customization.

<figure><img src="/files/FDjC4bcNlUohprDsxdEY" alt=""><figcaption><p>Dashboard - Embed app</p></figcaption></figure>

* Turn on **Omega Quantity** app -> click **Save** button to finish this setting

<figure><img src="/files/o6HcF2HNIfHAG1PeLUQX" alt=""><figcaption></figcaption></figure>

### 2.  Add App Block on Product page

* Select product page template

<figure><img src="/files/9KyTwlHaa62mr7JPiXyT" alt=""><figcaption></figcaption></figure>

* Click **Add block** in template -> choose **Omega Quantity Block** app

<figure><img src="/files/SNi29LIptMftBjspSIQ9" alt=""><figcaption></figcaption></figure>

* Move the app to the desired position -> click **Save** to finalize these settings.

<figure><img src="/files/0em7djBZneRMCK6yOUg3" alt=""><figcaption></figcaption></figure>

### 3. Add App Block on Cart page

* Select cart page template

<figure><img src="/files/LUbUNLhXogX13yBtezFZ" alt=""><figcaption></figcaption></figure>

* Click **Add block** in template -> choose **Omega Quantity - Cartpage** app

<figure><img src="/files/xrGNGdvYjeFNXnA06QqX" alt=""><figcaption></figcaption></figure>

* Move the app to the desired position -> click **Save** to finalize these settings.

<figure><img src="/files/LSg6dk7ts0mIyRuvIT4g" alt=""><figcaption></figcaption></figure>

### 4. Add App Block on Home page

* Select product page template and choose featured product session

<figure><img src="/files/c7EXiG1tNwJf12kspPxt" alt=""><figcaption></figcaption></figure>

* Click **Add block** in template -> choose **Omega Quantity - Homepage** app

<figure><img src="/files/yYBO6KenSKSukz5Pjihd" alt=""><figcaption></figcaption></figure>

* Move the app to the desired position -> click **Save** to finalize these settings.

<figure><img src="/files/CaNC5ow5N2MJYxAADMzP" alt=""><figcaption></figcaption></figure>

### 5. Add code in Collection Page

* Go to theme -> "Edit code"

<figure><img src="/files/2U1SDot6FeHp4uXqSfZX" alt=""><figcaption></figcaption></figure>

* Add code to the collection.liquid or card-product.liquid file, at position you want.

```
// Some code
{% assign result_collection = "" %}
    {% for collection in card_product.collections %}
        {% if forloop.first == false %}
        {% assign result_collection = result_collection | append: "," %}
        {% endif %}
        {% assign result_collection = result_collection | append: collection.id %}
    {% endfor %}
<div class="omg-discount-notification" data-product-id="{{ card_product.id }}" data-collections="{{ result_collection }}" ></div>
<script>
    if (typeof window.omgProductList === "undefined") {
    window.omgProductList = [];
    }

(function(){
    const product = {
        id: {{ card_product.id | json }},
        title: {{ card_product.title | json }},
        handle: {{ card_product.handle | json }},
        variants: [
        {% for variant in card_product.variants %}
            {
            id: {{ variant.id | json }},
            title: {{ variant.title | json }},
            price: {{ variant.price | json }},
            available: {{ variant.available | json }}
            }
            {% unless forloop.last %},{% endunless %}
        {% endfor %}
        ]
    };

    const productExists = window.omgProductList.some(p => p.id === product.id);

    if (!productExists) {
    window.omgProductList.push(product);
    }
})();
</script>
```

<figure><img src="/files/sAyAHCaHpsvx19WwQkCe" alt=""><figcaption></figcaption></figure>

### 6.  Add App Block to Checkout page

* Navigate to the "**Upsell Cross-sell**" menu -> click "**Go to theme**" button in the setup instructions section

<figure><img src="/files/SESCgkB6U9NlUglFO5uc" alt=""><figcaption></figcaption></figure>

* After click the button, the system will redirect to the "**Theme Editor**".&#x20;
* In the Theme Editor, select the position where you want to display the block and add the "**Pareto - Cross sell**" block to your theme

<figure><img src="/files/I3D6FYZSww7wFnTPj1no" alt=""><figcaption></figcaption></figure>

* Click the "**Save**" button to finalize the settings

Your Upsell Campaigns will now appear directly on the Checkout page. To display **Upsell Campaigns** on the **Order Status Page** and **Thank You Page**, follow the same steps


# Remove automatic discount

Shopify limits automatic discounts from third-party apps to five. You need to remove any automatic discounts you no longer use.

1. Go to "**Discount**" from Admin Store

<figure><img src="/files/LAperlcqExOiXnk3AwbL" alt=""><figcaption></figcaption></figure>

2. Choose and remove automatic discounts

<figure><img src="/files/5A8yVYBOz7juYENrZVnl" alt=""><figcaption></figcaption></figure>

3. Go to **"Pareto - Quantity Breaks**" apps and save your campaign

<figure><img src="/files/sO0aG3vvtTgzMF4ceZCg" alt=""><figcaption></figcaption></figure>


# Offers

Where you can create, update, and manage your offers

* [Create an offer](/offers/create-an-offer)
* [Edit an offer](/offers/edit-an-offer)
* [Duplicate an offer](/offers/duplicate-an-offer)

<figure><img src="/files/bmtHycZqKwvw8lOl7zUp" alt=""><figcaption><p>When you haven't had an offer yet</p></figcaption></figure>

<figure><img src="/files/zoCVOX7y1o000eN49dgs" alt=""><figcaption><p>When you have had your offers</p></figcaption></figure>


# Create an offer

Follow these simple steps to set up an offer in your store:

### 1. Create an offer

* Navigate to the **Offers** tab in the main menu.
* Click the **Add an Offer** button to start configuring your discount rules.

<figure><img src="/files/g2Ls9Y3JxTlmdjY0yIsg" alt=""><figcaption><p>When you haven't had an offer yet</p></figcaption></figure>

### 2. Select offer type

Select the type of offer that best suits your goal:

* **Quantity breaks/ Volume discounts:**&#x20;
  * Apply discounts based on the quantity of products purchased.
  * *For example: Buy 3 items, get 10% off; Buy 5 items, get 20% off.*
* **Buy X get Y:**&#x20;
  * Offer discounts when customers purchase a specific quantity (X) to receive a benefit on another product (Y).
  * *For example: Buy 2 products, get 1 free.*
* **Product bundles:**
  * Provide a special price when customers purchase a set of products as a package.
  * *For example: Bundle Product A, B, and C for $50.*
* **Order discount:**&#x20;
  * Discount the total order value based on the number of items purchased or the total amount spent.
  * *For example: Spend $100 or more and get 15% off.*

<figure><img src="/files/ULcTuvnzNObENSuR7S3o" alt=""><figcaption></figcaption></figure>

### 3. Set up rules

{% content-ref url="/pages/6faElG5W5rx8xuPa8e0b" %}
[Quantity breaks/ Volume discount](/offers/create-an-offer/quantity-breaks-volume-discount)
{% endcontent-ref %}

{% content-ref url="/pages/RAtuJzqxLY5TbGNL5Vry" %}
[Cart Discount](/offers/create-an-offer/cart-discount)
{% endcontent-ref %}

{% content-ref url="/pages/E6zzdVsmMmgArNgqkCfj" %}
[Buy X Get Y](/offers/create-an-offer/buy-x-get-y)
{% endcontent-ref %}

{% content-ref url="/pages/zPJjbAaiukYo8rGKhNsT" %}
[Product Bundle](/offers/create-an-offer/product-bundle)
{% endcontent-ref %}

{% content-ref url="/pages/Gt0nzdO2fHzsNqELhaXi" %}
[Tiered Discount](/offers/create-an-offer/tiered-discount)
{% endcontent-ref %}


# Quantity breaks/ Volume discount

Follow these steps to configure volume discounts effectively in your store:

<figure><img src="/files/8ffHRSgKJGXvBdbPR5H9" alt=""><figcaption></figcaption></figure>

### I.  Rule settings

Customize discount tiers, quantities, and values to create tailored offers for your customers.

#### 1. Select Product For The Discount

Determine which products will have the discount applied. You can choose from the following options:

* **Specific product variants:** Apply the discount to individual product variants

<figure><img src="/files/upsUbRD3uFGT0PUVMfkq" alt=""><figcaption></figcaption></figure>

* **Specific products:** Apply the discount to each selected products.
  * *<mark style="color:orange;">Note: the campaign only applies to those product variants, excluding those product variants that already have specific rules.</mark>*

<figure><img src="/files/bZg5fvhYDn3pjrFX6csD" alt=""><figcaption></figcaption></figure>

* **Specific collections:** Apply the discount to products in the collection.&#x20;
  * *<mark style="color:orange;">Note: the campaign only applies to those products that belong to the collection, excluding those products that already have specific rules.</mark>*

<figure><img src="/files/rIbtyupmrZyuNE0xvXc2" alt=""><figcaption></figcaption></figure>

* **Group products:**  Set the conditions that products must meet to qualify for the discount. You can target products based on tags, vendor or price
  * *<mark style="color:orange;">Note: the campaign only applies to those products that belong to the group, excluding those products that already have specific rules.</mark>*

<figure><img src="/files/5OLpnwNPpB1BVIkFje8k" alt=""><figcaption></figcaption></figure>

* **All products:** Apply the discount to entire products on your store.
  * *<mark style="color:orange;">Note: the campaign only applies to all products, excluding those products that already have specific rules.</mark>*

***Note: The system will prioritize checking offer rules of product variant => product ⇒ group => collection => all***

#### 2. Set Up Discount Rules

Define the rules for applying volume discounts:

* **Enter quantity ranges**:
  * Specify the "Buy from" quantities for each rule.
* **Choose discount types:** define how the discount will be applied
  * Per Item: A discount is applied to each quantity of each item
  * Total Product Value: A discount is applied to the total quantity of each item.
  * Free Gift: Offer a free product when customers meet the purchase conditions.

<figure><img src="/files/8F1t6jT8ZfgRjh8iKIDk" alt=""><figcaption></figcaption></figure>

* **Enter Discount Value:** You can define the discount as:
  * A percentage (%)
  * A fixed amount
  * Fixed Price: Set price after the discount is applied
* **Add or Remove Quantity Ranges:**
  * Use the **Add** button to create new quantity ranges
  * Click the **Remove** icon to delete a range if needed

<figure><img src="/files/rwP5uU8jDQrqONhbkHz2" alt=""><figcaption></figcaption></figure>

#### 3. Define Quantity Conditions

Set how the discount condition will be calculated

* **Total Quantity of All Selected Products**: Use the total quantity of all selected products as the comparison condition for applying the discount
* **Total Quantity of Each Selected Product**: Use the total quantity of each selected product as the comparison condition for applying the discount
* **Total Quantity of Each Product Variant**: Use the quantity of each product variant as the comparison condition for applying the discount.

#### 4. Exclusions

Select products to which you don't want this discount rule to apply.&#x20;

<figure><img src="/files/YhhAL8lajEouqrEnArQ4" alt=""><figcaption></figcaption></figure>

#### 5. Apply to markets

Set personalized discount rules for each market or country, tailoring discount values to suit regional needs.

<figure><img src="/files/KWT0zYsyWwRXaxzeo4iM" alt=""><figcaption></figcaption></figure>

#### 6. Target customer

Select the specific customer group(s) to apply this discount rule. There are 4 options:

* **All visitors:** Apply this discount to all visitors who browse your website.
* **Logged-in customers:** Apply this discount to customers who are logged into their accounts on your store.
* **Logged-in with tag:** Apply this discount to logged-in customers who have the specified tags assigned to their accounts.
* **Customers without tag:** Apply this discount to all visitors or customers who do not have the specified tags.

<figure><img src="/files/cDanvhqyjbM5OKk8G5vK" alt=""><figcaption></figcaption></figure>

#### 7. Schedule

Set a schedule for this offer to activate and run automatically at the defined time.

<figure><img src="/files/UFhLUW6j1Fl0MtG78WHx" alt=""><figcaption></figcaption></figure>

### II. Display settings

Customize how discount rules are displayed on your store.

#### 1. Countdown timer

Show a countdown timer to to create urgency for your campaign

<figure><img src="/files/U4tTBEQpLqA0uscleVLL" alt=""><figcaption></figcaption></figure>

#### 2. Layout settings

There are 4 layout, you can customize color, label, text,...

* **Table:** Recommended when campaign has less than 3 rules

<figure><img src="/files/pviiodIdIJ4bFr9w2StH" alt=""><figcaption></figcaption></figure>

* **Table horizontal:** Recommended when campaign has more than 3 rules
* **Option variant:** Discount rules will be displayed in option form. Your customers can add bulk products with just one click.

<figure><img src="/files/ceViv85APBMxRi14lQeH" alt=""><figcaption></figcaption></figure>

* **Card:** Discount rules will be displayed in a card.

<figure><img src="/files/o4X0kivqhBIgJNfAMECb" alt=""><figcaption></figcaption></figure>

#### 3. Advance settings

* Show campaign name
* Hide theme "Add To Cart" button&#x20;
* Hide if product variant is out of stock

<figure><img src="/files/BwLws63nJqpmOBblPVvK" alt=""><figcaption></figcaption></figure>

### III. Checkout upsell

Display campaign on the checkout page, thank you page, order status page to increase sales.

#### 1. Active upsell display

<figure><img src="/files/VRJxaC3Ma1cZEsEnfU0C" alt=""><figcaption></figcaption></figure>

#### 2. Add block to theme

<figure><img src="/files/TcW5IrHbxfIUtbLDXbkL" alt=""><figcaption></figcaption></figure>

#### 3. Customize layout settings

<figure><img src="/files/Ahuz5t7n07mfZMBvBrdD" alt=""><figcaption></figcaption></figure>


# Cart Discount

Follow these steps to configure your discount offer:

**Example user case:** Offer a $20 discount on the entire cart when customers purchase 3 or more items from the "Summer Collection".

<figure><img src="/files/PcKCx6wCBjOV5xN60zqY" alt=""><figcaption></figcaption></figure>

### I. Rule settings

Customize discount tiers, quantities, and values to create tailored offers for your customers.

#### 1. Apply Discount Rules Based on Selected Products

* The discount will apply to the entire cart when customers purchase specific products that meet the set quantity or value conditions:&#x20;
  * **Any products:** If any product is purchased and the quantity or total value meets the rules, the discount will apply to the entire cart.
  * **Specific collections:** If customers purchase products from selected collections, and the total quantity or value meets the rules, the discount will apply to the entire cart.

<figure><img src="/files/aYjzeKOjBGVBHCBv2UtC" alt=""><figcaption></figcaption></figure>

#### 2. Set Up Discount Rules

* You can select one of the following:
  * Discount by quantity of items: discount on order based on quantity of product purchased
  * Discount by purchase amount: discount on order based on amount purchased
* **Define Quantity or Amount Ranges**:
  * Enter the "Buy from" and "Buy to" values for each rule.
  * If there’s no maximum limit, enter 0 in the "Buy to" field.
* **Set Discount Value**: Specify the discount value as:

  * A percentage (%) off the entire cart.

  <figure><img src="/files/Oa6pR5jAKNaDNYzhICc7" alt=""><figcaption></figcaption></figure>

  * A fixed amount deducted from the cart total.

    <figure><img src="/files/09H5FbAQGxGB4LiihJKF" alt=""><figcaption></figcaption></figure>

  * Offer a free gift with cart.

  <figure><img src="/files/fHA9ZhO05yTIyFuHpu2W" alt=""><figcaption></figcaption></figure>

  <figure><img src="/files/rQfdNsCpdWaKpnJhaNyS" alt=""><figcaption></figcaption></figure>

  * Offer free shipping on cart.

    <figure><img src="/files/adliUOPC7F6oXDbFJUcQ" alt=""><figcaption></figcaption></figure>

    <figure><img src="/files/xmA2AY67E5uDTTR1AHOW" alt=""><figcaption></figcaption></figure>

#### 3. Exclusions

Select products to which you don't want this discount rule to apply.

<figure><img src="/files/QbR6HPNejJEquSLF51eV" alt=""><figcaption></figcaption></figure>

#### 4. **Apply to markets**

Set personalized discount rules for each market or country, tailoring discount values to suit regional needs.

<figure><img src="/files/wPFJyHdXjQNbTePBO9rI" alt=""><figcaption></figcaption></figure>

#### 5. Target customer

Select the specific customer group(s) to apply this discount rule. There are 4 options:

* **All visitors:** Apply this discount to all visitors who browse your website.
* **Logged-in customers:** Apply this discount to customers who are logged into their accounts on your store.
* **Logged-in with tag:** Apply this discount to logged-in customers who have the specified tags assigned to their accounts.
* **Customers without tag:** Apply this discount to all visitors or customers who do not have the specified tags.

<figure><img src="/files/YxcFFk588ICAERp0kUXW" alt=""><figcaption></figcaption></figure>

#### 6. Schedule

Set a schedule for this offer to activate and run automatically at the defined time.

<figure><img src="/files/BJFpctJbD60s1jgncqOz" alt=""><figcaption></figcaption></figure>

### II. Display settings

Customize how discount rules are displayed on your store.

#### 1. Countdown timer

Show a countdown timer to to create urgency for your campaign

<figure><img src="/files/D7yYj7lnSs8f2Q8UggQH" alt=""><figcaption></figcaption></figure>

#### 2. Product page settings

Allows merchants to set up a discount widget that displays on the product page

* Show/hide campaign name
* Label settings
* Font settings
* Color settings

<figure><img src="/files/uJCbR7nQpdptdnDyw9za" alt=""><figcaption></figcaption></figure>

<figure><img src="/files/O4mHUROfkDXJp6wgOP03" alt=""><figcaption></figcaption></figure>

#### 2. Notice in cart

Allows you to set up a progress bar and discount notifications on the cart page.

<figure><img src="/files/cD3VHW4bK01h4iTObTcm" alt=""><figcaption></figcaption></figure>

<figure><img src="/files/s8NbYAf2mfQSEsgNAuQX" alt=""><figcaption></figcaption></figure>

### III. Checkout upsell

Display campaign on the checkout page to increase sales.

#### 1. Active upsell display

<figure><img src="/files/MxtpNcEldN558eWnaOQ6" alt=""><figcaption></figcaption></figure>

#### 2. Add block to theme

<figure><img src="/files/l1XbOyz5fvxceRJhgmry" alt=""><figcaption></figcaption></figure>

#### 3. Customize layout settings

<figure><img src="/files/vMt4TzvELANZDKI7RKI7" alt=""><figcaption></figcaption></figure>


# Buy X Get Y

Follow these steps to configure Buy X Get Y offers for your store

**Example user case:** Offer 50% off one product from the "Accessories" collection when customers buy 3 or more items from the "Clothing" collection.

<figure><img src="/files/mSoC0a78vWQRzpDyt8Kp" alt=""><figcaption></figcaption></figure>

### I. Rule Settings

#### 1.  Choose X (What Customers Must Buy)

Start by selecting the type of items customers need to purchase (X) to qualify for the offer. You have three options:

* **Any items from online store:** Customers can purchase any items available in your store that meet the conditions for the discount.
* **Any items from specific collections:** Customers can purchase any item from selected collections that meet the conditions for the discount.
* **Any items from specific products:** Customers can purchase any item from selected products that meet the conditions for the discount.

<figure><img src="/files/W3tDQIbiEj68tSfGoByR" alt=""><figcaption></figcaption></figure>

#### 2. Set Up Rules

<figure><img src="/files/TEXtl2uxDXYpuRTRmzMG" alt=""><figcaption></figcaption></figure>

**Configure Purchase Conditions (X)**

* Quantity/Amount Range
  * Enter the **"Buy from"** and **"Buy to"** values to define the quantity or purchase amount needed to qualify.
  * Enter 0 in the "Buy to" field if you don’t want to set a maximum limit.

**Define the Discounted Products (Y):** Choose what products (Y) will be discounted or free when the rule is met. You have four options:

* Discount for the Least Expensive Product in X: Automatically apply the discount to the least expensive product from the selected X items.
* Discount for Any Items from the Online Store: Apply the discount to any product available in your store.
* Discount for Any Items from Specific Collections: Apply the discount to any product from selected collections.
* Discount for Any Items from Specific Products: Apply the discount to specific products of your choice.

**Set Discount Details**

* Discounted Quantity: Enter the quantity of discounted products (Y) that customers will receive.
* Discount Value: Choose the type of discount to apply
  * Percent: Discount by a percentage (e.g., 50% off).
  * Fixed Amount: Deduct a specific amount (e.g., $10 off).
  * Free: Offer the discounted products for free.

**Add Multiple Rules**

* Use the **Add** button to create new quantity ranges.
* Click the **Remove** icon to delete a range if needed.

#### 3. Apply to market

Set personalized discount rules for each market or country, tailoring discount values to suit regional needs.

<figure><img src="/files/DXilVHSZIlgWnrvvcE7W" alt=""><figcaption></figcaption></figure>

#### 4. Target customer

Select the specific customer group(s) to apply this discount rule. There are 4 options:

* **All visitors:** Apply this discount to all visitors who browse your website.
* **Logged-in customers:** Apply this discount to customers who are logged into their accounts on your store.
* **Logged-in with tag:** Apply this discount to logged-in customers who have the specified tags assigned to their accounts.
* **Customers without tag:** Apply this discount to all visitors or customers who do not have the specified tags.

<figure><img src="/files/EnLe2btvQalHgYWZ0KVn" alt=""><figcaption></figcaption></figure>

#### 5. Schedule

Set a schedule for this offer to activate and run automatically at the defined time.

<figure><img src="/files/37KN1cq1Vso1iWtWiURj" alt=""><figcaption></figcaption></figure>

### II. Display settings

Customize how discount rules are displayed on your store.

#### 1. Product page

Allows you to set up a discount widget that displays on the product page

* Countdown timer settings

<figure><img src="/files/cOQyoENxqKyeKEXT6DRD" alt=""><figcaption></figcaption></figure>

* Show/hide campaign name

<figure><img src="/files/eWRG9MoJT9DT4qkttkZ4" alt=""><figcaption></figcaption></figure>

* Layout settings

<figure><img src="/files/GszTmfz2r9Osh2MqeBMH" alt=""><figcaption></figcaption></figure>

* Font settings

<figure><img src="/files/qzrwbpp5orAjPQGy9Egz" alt=""><figcaption></figcaption></figure>

* Color settings

<figure><img src="/files/ukVVlSHQoX5sbXqwqUHZ" alt=""><figcaption></figcaption></figure>

* Display on online store:

<figure><img src="/files/9dor4yrXGqPVm9fXdmXd" alt=""><figcaption></figcaption></figure>

#### 2. Pop-up suggestions

Allow you to recommend additional products to customers so they can qualify for discounts.

* Popup display options:
  * **Auto Add Discounted Products to Cart:** Automatically adds the discounted products to the customer's cart without showing the pop-up.
  * **Display a Suggestion Pop-up to Select the Discounted Items:** Displays a pop-up for customers to select recommended products to qualify for the discount.
  * **Not Displayed:** Disables the pop-up suggestion.
* Layout settings

<figure><img src="/files/Rtu7HvaR0WEmNtoN4MNj" alt=""><figcaption></figcaption></figure>

* Product card settings, color settings

<figure><img src="/files/p7uAV72s38LiiwCIuQqP" alt=""><figcaption></figcaption></figure>

* Display on online store:

<figure><img src="/files/2D5VSffK0UD68GI9qzGM" alt=""><figcaption></figcaption></figure>

#### 3. Notice in cart

Allows you to display contextual messages in the cart to guide customers about discounts and gift options

* **Buy more notification:** Encourages customers to add more items to their cart to qualify for the discount.
* **Get gift notification:** Notifies customers that they qualify for a discount but need to choose their discounted items.
* **Change gift notification:** Allows customers to update or change their selected discounted products.

<figure><img src="/files/X9ilvlWffqt2pTcEm7tE" alt=""><figcaption></figcaption></figure>

* Display on online store:

<figure><img src="/files/cxdy9UfgvAhEU4TBo0Sz" alt=""><figcaption></figcaption></figure>

### III. Checkout upsell

Display campaign on the checkout page to increase sales.

#### 1. Active upsell display

<figure><img src="/files/m41QyiMy9NtxE2YkktzR" alt=""><figcaption></figcaption></figure>

#### 2. Add block to theme

<figure><img src="/files/BsXSPPUdLR8ZiTj8R12i" alt=""><figcaption></figcaption></figure>

**3. Customize layout settings**

<figure><img src="/files/8OaL30QQwOsPaHdAk4z5" alt=""><figcaption></figcaption></figure>


# Product Bundle

### I. Rule settings

#### 1. Included products

* Select the products you want to include in the bundle. You can search or browse through your available products.

<figure><img src="/files/gbiAtCSybDO5iJx40Udn" alt=""><figcaption></figcaption></figure>

* For each product in the bundle, set the desired quantity.
* Enter the discount value, we have 3 options
  * Percentage (%): apply a percentage-based discount to the entire bundle price
  * Amount off each: fixed amount discount of the individual item in the bundle
  * Fixed price: single fixed price for the entire bundle.
* *Note: Each bundle can choose up to 3 products*
* Storefront display

<figure><img src="/files/vsbseW1rdaikVDbGRc5u" alt=""><figcaption></figcaption></figure>

#### 2. Single bundle

* Allow to combine products in bundle into a single product published to the storefront.
* After choose products in bundle, enter a title and description for the new product. You can upload new images or select images from available products.

<figure><img src="/files/EYq73HuDLT3ltnM3bKJj" alt=""><figcaption></figcaption></figure>

* Storefront display:&#x20;

<figure><img src="/files/LcaYhnLVA0qK9rZM9AhQ" alt=""><figcaption><p>\</p></figcaption></figure>

#### 3. Schedule

Set a schedule for this offer to activate and run automatically at the defined time.

<figure><img src="/files/isGG5HmwXXMATI4titNm" alt=""><figcaption></figcaption></figure>

### II. Display settings

Customize how discount rules are displayed on your store.

#### 1. Countdown timers

Show a countdown timer to to create urgency for your campaign.

<figure><img src="/files/jKYJ6xg39VuFVRhQYYwl" alt=""><figcaption></figcaption></figure>

#### 2. Product page

Allow you to customize the display of bundle discounts on the product page.

* Show/hide campaign name
* Show/hide original product price
* Show/hide discount price
* Label settings
* Font settings

<figure><img src="/files/oFOHZoyN3jukJ73qaRav" alt=""><figcaption></figcaption></figure>

* Color settings

<figure><img src="/files/hdDy9dEFbzXmnBzg2mfb" alt=""><figcaption></figcaption></figure>

* Display on online store

<figure><img src="/files/X6igfmI2cKM5z8OHoLAZ" alt=""><figcaption></figcaption></figure>

#### 2. Pop-up suggestions

Allows you to display a pop-up that encourages customers to purchase product bundles directly

* Display options:
  * **Automatically Display Suggestion Pop-up:** Enable this option to automatically show the pop-up when a customer is eligible for a product bundle discount.
  * **No Auto Display:** Select this option if you do not want the pop-up to display automatically.
* Show/hide select variant
* Show/hide discount badge
* Header settings
* Description settings
* Color settings
* Button Settings

<figure><img src="/files/RIdYGL5Wiyfl4SJNEcyx" alt=""><figcaption></figcaption></figure>

* Display on online store:

<figure><img src="/files/BS9MBbjQMzkcSauvdpk4" alt=""><figcaption></figcaption></figure>

#### 3. Notice in cart

Allows you to display a message in the cart, encouraging customers to take advantage of bundle discounts

* Buy more notification: This message notifies and encourages customers to explore bundle options and maximize their savings.
* Styling options

<figure><img src="/files/nuhjbuXOKANwv7RE56ZQ" alt=""><figcaption></figcaption></figure>

### III. Checkout upsell

Display campaign on the checkout page, thank you page, order status page to increase sales.

#### 1. Active upsell display

<figure><img src="/files/KBjiFFJ21vWx6lqZXyyo" alt=""><figcaption></figcaption></figure>

#### 2. Add block to theme

<figure><img src="/files/FsrvsoVYkEBRzrjOdL1w" alt=""><figcaption></figcaption></figure>

#### 3. Customize layout settings

<figure><img src="/files/AiiemhoboUQ6Z4TVndP9" alt=""><figcaption></figcaption></figure>


# Tiered Discount

**Example user case**

* Buy 1 to 5 items: No discount is applied.&#x20;
* Buy 6 to 10 items: Only the 6th to 10th items receive a 10% discount.&#x20;
* Buy 11 to 20 items: Only the 11th to 20th items receive a 15% discount.

**Example in Action:**

* If a customer buys 4 items, they pay the full price for all 4 items (no discount).&#x20;
* If a customer buys 8 items, they pay full price for the first 5 items, and the next 3 items (6th, 7th, 8th) receive a 10% discount.&#x20;
* If a customer buys 15 items, they pay full price for the first 5, a 10% discount on the next 5 (6th to 10th), and a 15% discount on the last 5 (11th to 15th).&#x20;

The discount is applied in tiers based on the quantity ranges defined.

### Select Tired Discounts

<figure><img src="/files/A2BaJzX4ngBz3oQ9V5Iy" alt=""><figcaption></figcaption></figure>

* Setup quantity rules, product assign, apply to customer, and schedule similar to quantity breaks

<figure><img src="/files/JNg3pFdKSCa7lxdz8Pjd" alt=""><figcaption></figcaption></figure>


# Edit an offer

1. Go to main tab **Offers** -> Click the **edit icon** on the offer you want to modify

<figure><img src="/files/s9pcJib3QMyJ5pehSKiy" alt=""><figcaption></figcaption></figure>

2. Edit rules, apply to product, apply to customer, or schedule them like[ creating an offer](/offers/create-an-offer)
3. Turn on/off an offer

If you want to activate this offer, please click the "**Turn on**" button

<figure><img src="/files/Y1ZwbRtS37yrH0aOdfQU" alt=""><figcaption></figcaption></figure>

If you want to deactivate this offer, please click "**Turn off**" button

<figure><img src="/files/vd5uX6G6bQvWdqsyWlJY" alt=""><figcaption></figcaption></figure>


# Duplicate an offer

1. Go to main tab **Offers** -> Click the **duplicate icon** on the offer you want to duplicate

<figure><img src="/files/GC0xsMKp4fKHN8Nx8y5B" alt=""><figcaption></figcaption></figure>

2. Edit rules, apply to product, apply to customer, or schedule them like[ creating an offer](/offers/create-an-offer)
3. Click **Save** button to save your offer

<figure><img src="/files/pr0m8k0C1jnYgx58wjdP" alt=""><figcaption></figcaption></figure>


# Upsell & Cross-sell

Set up to up-sell, cross-sell your products in the customer's buying journey

### With Thank You Page and Order Status Page

### 1. Campaign priority

* Set the priority order for displaying campaigns to up-sell and cross-sell

<figure><img src="/files/Gpdd2pGhFOlgqBlCTUz1" alt=""><figcaption></figcaption></figure>

* Drag and drop to change the priority order of campaign types.
* Use the toggle to turn on/off the campaign types you want to display.
* Quantity Breaks Type:
  * The app will select and display the campaign that includes one of the added products
* Buy X Get Y Type:
  * The app will select and display the campaign that includes one of the added products
* Order Discount Type:
  * The app will select and display the campaign that includes one of the added products
* Product Bundles Type:
  * The app will select and display the campaign that includes one of the added products
* Random Type:
  * The app will select and display any campaign in the campaign list

### 2. Display on Thank you page

* Go to theme -> Click "**Customize**" button
* Select "Thank You" page

<figure><img src="/files/jGVTduSGDG7fvC5PiRGG" alt=""><figcaption></figcaption></figure>

* Add "**Pareto - Cross Sell**" block in Thank You page
* You can change heading, title, subtitle, text button,... to setup your widget

<figure><img src="/files/FOw1ai6KLtyXp5svtdcV" alt=""><figcaption></figcaption></figure>

### 3. Display on Order Status Page

* Go to theme -> Click "**Customize**" button
* Select "Order status" page
* Add "Pareto - Cross Sell" block

<figure><img src="/files/exyr5e1s6boTDwPCgJrT" alt=""><figcaption></figcaption></figure>

* You can change heading, title, subtitle, text button,... to setup your widget

<figure><img src="/files/J3P8cbU9JxQ025OxYNy0" alt=""><figcaption></figcaption></figure>


# Checkout Page

### 1. Campaign Display

* Upsell and cross-sell based on available campaigns in the app: Allows using available campaigns in the application to perform upsell, cross-sell
  * Campaign priority:
    * Quantity Breaks Type: The app will select and display the campaign that includes one of the added products
    * Buy X Get Y Type: The app will select and display the campaign that includes one of the added products
    * Order Discount Type: The app will select and display the campaign that includes one of the added products
    * Product Bundles Type: The app will select and display the campaign that includes one of the added products
    * Random Type: The app will select and display any campaign in the campaign list
  * Drag and drop to change the priority order of campaign types.
  * Use the toggle to turn on/off the campaign types you want to display.

<figure><img src="/files/fNEkARlwqyemd2aAHXpZ" alt=""><figcaption></figcaption></figure>

* Setup other upsell and cross-sell campaign:&#x20;

  * Allows you to set up a separate upsell, cross-sell campaign that always displays when customers enter the checkout page.
  * You can choose:
    * Discount for item with highest price
    * Discount for item with lowest price
    * Discount for specific item.
  * Setup your discount

  <figure><img src="/files/PVOLzgWSZ1izC4ZXiOwE" alt=""><figcaption></figcaption></figure>

### 2. Show on Checkout Page

***Note: The app uses Shopify UI Extensions, so this feature is exclusive to Shopify Plus***

* Go to Settings -> Checkout session -> click "Customize" button

<figure><img src="/files/vW9163mtmwAr1uveVbBB" alt=""><figcaption></figcaption></figure>

* Add "**Pareto - Cross Sell**" block in checkout page

<figure><img src="/files/sDLTEZDvXL5tREMsJ2X8" alt=""><figcaption></figcaption></figure>


# Post-purchase

### 1. Enable on Post-purchase

* Click "Go to setting" button to redirect to post-purchase page settings

<figure><img src="/files/ufYXIlgnOD8YtqsRA8Vg" alt=""><figcaption></figcaption></figure>

* Choose "Pareto - Volume Discount" option
* Click "Save" button to save your change

<figure><img src="/files/MqLv4W61oXf4wCEFsPq8" alt=""><figcaption></figcaption></figure>

### 2. Setup campaign

* Display when: allows you to set when the offer will be displayed based on: Order value, Total quantity, Customer tag, product tag or for all

<figure><img src="/files/hVvZsMWz5tauq9zy7VwW" alt=""><figcaption></figcaption></figure>

* First offer: Select the products you want to upsell, cross-sell and enter your discount. You can select multiple products

<figure><img src="/files/pHNbJDr0dt3IdtgwoH3x" alt=""><figcaption></figcaption></figure>

* If the customer accepts your first offer, you can cross-sell with a second offer.

<figure><img src="/files/nmA47tzJzJjsI3B5IPKM" alt=""><figcaption></figcaption></figure>

* If the customer declined your first offer, you can upsell, cross-sell with another, more attractive offer.

<figure><img src="/files/594wCf2hIEzPItmre6L3" alt=""><figcaption></figcaption></figure>


# Thank you & Order Status page

### 1. Add block to theme

<figure><img src="/files/5WSlrXPdP0nX60wbHc5D" alt=""><figcaption></figcaption></figure>

### 2. Campaign priority

* Quantity Breaks Type: The app will select and display the campaign that includes one of the added products
* Buy X Get Y Type: The app will select and display the campaign that includes one of the added products
* Order Discount Type: The app will select and display the campaign that includes one of the added products
* Product Bundles Type: The app will select and display the campaign that includes one of the added products
* Random Type: The app will select and display any campaign in the campaign list
* Drag and drop to change the priority order of campaign types.
* Use the toggle to turn on/off the campaign types you want to display.

<figure><img src="/files/fNEkARlwqyemd2aAHXpZ" alt=""><figcaption></figcaption></figure>

&#x20;


# Customer Account Page

Allows displaying the store's offers directly on the customer's profile in the Customer Account Page.

### 1. Activate display to customer account page

* Click "Go to theme" button
* Add "Pareto - Offers Page" block

<figure><img src="/files/BXMAIvp1X6GrMSoQKw4d" alt=""><figcaption></figcaption></figure>

* Click "Add to menu" button at the top of the Add block settings

<figure><img src="/files/NgtsgR4PRtRruZA8Fukl" alt=""><figcaption></figcaption></figure>

* Add a menu item with the link "**Pareto - Offers Page**"

<figure><img src="/files/7JuAu277KpZa0wzexF7X" alt=""><figcaption></figcaption></figure>

<figure><img src="/files/JRx4an39cAUlM9ZwizWr" alt=""><figcaption></figcaption></figure>


# Display settings

Where you can customize the display of your offers/limit on your storefront.

Go to main tab **Display settings**

<figure><img src="/files/7c2nCIP5kcZtQRdhcnj1" alt=""><figcaption></figcaption></figure>

Select the "Campaign settings" you want to set up.

{% content-ref url="/pages/BKrd5TVArB5rAArbbuhW" %}
[Quantity Breaks settings](/display-settings/quantity-breaks-settings)
{% endcontent-ref %}

{% content-ref url="/pages/FYqutNzcabcKXi8beSEA" %}
[Order Discount settings](/display-settings/order-discount-settings)
{% endcontent-ref %}

{% content-ref url="/pages/3J3VFJ5t0zc9dQ3nSvTo" %}
[Widget Popup settings](/display-settings/widget-popup-settings)
{% endcontent-ref %}

{% content-ref url="/pages/0TpO0NHXE7I9rii9nK9q" %}
[Limit settings](/display-settings/limit-settings)
{% endcontent-ref %}


# Quantity Breaks settings

### &#x20;1. Product page

Choose position to show widget layout in product page by [embedding app](/app-configuration/enable-embed-app) and [adding the app block ](https://docs.paretodeals.com/display-settings/pages/nKS64VTcMnYbZJaIbtMg#id-2.-add-app-block-on-product-page)

Select the layout you want to use to display your offer on product page detail. We have 3 options

* **Table:** Offer detail will be displayed in table form

<figure><img src="/files/V6AjM6Q7sUl3EJAMFVME" alt=""><figcaption></figcaption></figure>

<figure><img src="/files/Dse08l9ih47U6xJTcgJ3" alt=""><figcaption></figcaption></figure>

* **Option variants:** Offer detail will be displayed in option form. Your customers can add bulk products with just one click.

<figure><img src="/files/vOeie536aBhJDUbKbx6H" alt=""><figcaption></figcaption></figure>

* **Card:** Offer detail will be displayed in a card.

<figure><img src="/files/un7mUKaJBFiDC2Ob5dNb" alt=""><figcaption></figcaption></figure>

* Click "**Save**" button to save your changed settings
* Click "**Preview**" button to see the display settings on your online store

### 2. Collection page

Allows displaying discount rules on the collection page

* Add code to theme by [this guide](https://docs.paretodeals.com/app-configuration/enable-embed-app#id-5.-add-code-in-collection-page)
* Customize layout, text, color...

<figure><img src="/files/eqclJMuCfBlLT0rt0hc2" alt=""><figcaption></figcaption></figure>

### 3. Cart page

Set up discount notifications to be displayed on the cart page or in the cart popup. We have 3 options:

* Display notice discount by % discount
* Display notice discount by price discount
* Display notice discount by total price after discount

Show notification when discounted

<figure><img src="/files/hHR5LZ8Pzrz6NTK2T6r5" alt=""><figcaption></figcaption></figure>

Show notification to suggest additional items

<figure><img src="/files/0eHrjHtX7PhSKNtBudNk" alt=""><figcaption></figcaption></figure>

<figure><img src="/files/ayE19aXAfXSAMABufSHT" alt=""><figcaption></figcaption></figure>

* Click "**Save**" button to save your changed settings
* Click "**Preview**" button to see the display settings on your online store


# Order Discount settings

Go to **Order settings**

### 1. Product page

* Choose position to show widget layout in product page by [embedding app](/app-configuration/enable-embed-app) and [adding the app block ](https://docs.paretodeals.com/display-settings/pages/nKS64VTcMnYbZJaIbtMg#id-2.-add-app-block-on-product-page)

<figure><img src="/files/in0gT8cPuKcAbsJgzJrS" alt=""><figcaption></figcaption></figure>

* You can customize color, text, font...and see preview before publish them

<figure><img src="/files/F5nLkAI2tAR5w3ViyC5j" alt=""><figcaption></figcaption></figure>

* Click "**Save**" button to save your changed settings
* Click "**Preview**" button to see the display settings on your online store

### 2. Cart page

* Choose position show widget layout in cart page
* Customize color, notification and icon on widget

<figure><img src="/files/Nte7UHKIZdqUKQ45UIS3" alt=""><figcaption></figcaption></figure>

* Click "**Save**" button to save your changed settings
* Click "**Preview**" button to see the display settings on your online store


# Buy X Get Y settings

### 1. Product page

* Choose position to show widget layout in product page by [embedding app](/app-configuration/enable-embed-app) and [adding the app block ](https://docs.paretodeals.com/display-settings/pages/nKS64VTcMnYbZJaIbtMg#id-2.-add-app-block-on-product-page)

<figure><img src="/files/7LB2e8Ki3TrwndM8rBGg" alt=""><figcaption></figcaption></figure>

* Customize color, text, font,... and see preview before publish theme

<figure><img src="/files/TtkXBFJRxzMNGSo68i3l" alt=""><figcaption></figcaption></figure>

### 2. Popup discount

* Show discounted products when buyer clicks see more on product page layout or cart page when buy X is qualified.
* Customize color, text, show select variant, show quantity,...and buyer can add product to cart

<figure><img src="/files/qPiawOwj4JMvyDyHvB4i" alt=""><figcaption></figcaption></figure>

### 3. Cart page

* You can customize notification such as: Buy more get discount, get a gift, or change gift.

<figure><img src="/files/oYVZmjz4Q3yZ3CJNFIiZ" alt=""><figcaption></figcaption></figure>


# Product Bundle settings

### 1. Product page

Choose position to show widget layout in product page by [embedding app](https://docs.paretodeals.com/app-configuration/enable-embed-app) and [adding the app block](https://docs.paretodeals.com/app-configuration/enable-embed-app#id-2.-add-app-block-on-product-page)

Customize display: color, text, discount tags, button...

<figure><img src="/files/xd1YHkJa2MRC9LC8s0zG" alt=""><figcaption></figcaption></figure>

When click to "Add bundle to cart" button automatically adds all products in the bundle to the cart.

### 2. Cart page

Allow displaying notificartion suggesting customers to buy more products

<figure><img src="/files/8cAXCrz8oynXlSlx5fEg" alt=""><figcaption></figcaption></figure>

### 2. Popup settings

When a customer clicks on the notification on the shopping cart page, a pop-up will appear suggesting all bundles for that product. Clicking to select a bundle and add to cart will automatically add all products in the bundle to the cart.

You can set up notification, color, button,...&#x20;

<figure><img src="/files/bGqeV33RC29HLDjkLBmq" alt=""><figcaption></figcaption></figure>


# Widget Popup settings

Allow you tp display pop-up discounts on your online store

Go to **Widget settings**

* [Enable embed app](/app-configuration/enable-embed-app) to display on store
* Enable widget
* Choose campaign to display
* Customize color, text, time countdown,...

<figure><img src="/files/VtzHGUP55ofYFd1zhfnJ" alt=""><figcaption></figcaption></figure>

* Click "**Save**" button to save your settings
* Click "**Preview**" button to see your settings on online store


# Limit settings

Where you can set notifications when your customers do not purchase the required quantity.

> **Note: This feature is currently available on our other app to help with customize and development.** [**Free to try it now.**](https://apps.shopify.com/pareto-limit-purchase)

You can show a warning message when a customer purchases quantities outside the specified range. &#x20;

<figure><img src="/files/zz3kM7EWuk1N5yhpchar" alt=""><figcaption></figcaption></figure>


# App settings

### 1. Discount Method

* Automatic discount: The app uses Shopify Function to automatic apply discounts to orders or products
* Manual discount: Use manual discount if you want to apply discounts for large orders with multiple line items.

<figure><img src="/files/BtcDhgG7m778i4sRwRab" alt=""><figcaption></figcaption></figure>

### 2. Product/ Order combinations

Allows your campaign types to be applied together in one order

<figure><img src="/files/ZY6TBXHqOy5k5FfFG3mv" alt=""><figcaption></figcaption></figure>

### 3. Sync product data

Click the **Sync Data** button to allow the app to fetch the most up-to-date products information from your store.

<figure><img src="/files/zmPrNCuUryWJ0rH2Fqpn" alt=""><figcaption></figcaption></figure>

### 4. Custom CSS

Add advanced CSS settings, if needed, to ensure the app is compatible with your store.

<figure><img src="/files/roNDxDMXFY0FYsldgNI1" alt=""><figcaption></figcaption></figure>


# Plan Charge


# Charge policy

### App prorating, upgrades, and downgrades

If you upgrade or downgrade your subscription with an app, then the app will prompt you to agree to a new recurring app charge. This is because Shopify allows each app only one recurring app charge to be enabled at a time. The existing recurring application charge will be canceled and replaced by the new charge.

Depending on the app, the new recurring app charge is either applied immediately, or after the app's current billing cycle ends.

If the new app charge is applied immediately, then when you upgrade your plan by moving from a less expensive charge to a more expensive charge, the charge is prorated based on the difference in price and the number of days remaining in the billing cycle. For example, if you begin a 30-day billing cycle on a $5.00 plan, and upgrade to a $15.00 plan on day 15 of the billing cycle, then you're charged $5.00 + ($15.00 - $5.00) \* (15/30) = $10.00 USD.

If the new app charge is applied immediately, then when you downgrade your plan by moving from a more expensive charge to a less expensive charge, you're automatically offered an application credit based on the difference in price and the number of days remaining in the billing cycle. This application credit can be used towards any future application purchase on Shopify.


# Pricing Plan

<table data-full-width="false"><thead><tr><th width="316">Features</th><th width="184">Free</th><th width="158">Basic</th><th width="128">Professional</th><th>Advanced</th></tr></thead><tbody><tr><td>Unlimited Discount campaigns created</td><td><span data-gb-custom-inline data-tag="emoji" data-code="2714">✔️</span></td><td><span data-gb-custom-inline data-tag="emoji" data-code="2714">✔️</span></td><td><span data-gb-custom-inline data-tag="emoji" data-code="2714">✔️</span></td><td><span data-gb-custom-inline data-tag="emoji" data-code="2714">✔️</span></td></tr><tr><td>Multiple Discount Types</td><td><span data-gb-custom-inline data-tag="emoji" data-code="2714">✔️</span></td><td><span data-gb-custom-inline data-tag="emoji" data-code="2714">✔️</span></td><td><span data-gb-custom-inline data-tag="emoji" data-code="2714">✔️</span></td><td><span data-gb-custom-inline data-tag="emoji" data-code="2714">✔️</span></td></tr><tr><td>Discount Campaign activated at the same time</td><td><strong>3</strong></td><td><strong>Unlimited</strong></td><td><strong>Unlimited</strong></td><td><strong>Unlimited</strong></td></tr><tr><td>Extra revenue</td><td><strong>$300</strong></td><td>$<strong>1000</strong></td><td><strong>$5000</strong></td><td><strong>Unlimited</strong></td></tr><tr><td>Customize Display Layout</td><td>Basic: Choose layout, Change text, change font size, edit tag in discount rule</td><td>Basic: Choose layout, Change text, change font size, edit tag in discount rule</td><td><strong>Unlimited</strong></td><td><strong>Unlimited</strong></td></tr><tr><td>Show Discount on Collection/Catalog Page</td><td>-</td><td>-</td><td><span data-gb-custom-inline data-tag="emoji" data-code="2714">✔️</span></td><td><span data-gb-custom-inline data-tag="emoji" data-code="2714">✔️</span></td></tr><tr><td>Upsell, cross-sell</td><td>-</td><td>-</td><td>Thank you page<br>Order status page</td><td>Thank you page<br>Order status page<br>Checkout page (Shopify Plus)</td></tr><tr><td>Discount Method</td><td>Automation Shopify Function</td><td>Automation Shopify Function</td><td>Automation Shopify Function</td><td>Automation Shopify Function<br>Customization</td></tr><tr><td>Live chat support 24/7</td><td><span data-gb-custom-inline data-tag="emoji" data-code="2714">✔️</span></td><td><span data-gb-custom-inline data-tag="emoji" data-code="2714">✔️</span></td><td><span data-gb-custom-inline data-tag="emoji" data-code="2714">✔️</span></td><td><span data-gb-custom-inline data-tag="emoji" data-code="2714">✔️</span></td></tr><tr><td>One-on-one technical support</td><td>-</td><td><span data-gb-custom-inline data-tag="emoji" data-code="2714">✔️</span></td><td><span data-gb-custom-inline data-tag="emoji" data-code="2714">✔️</span></td><td><span data-gb-custom-inline data-tag="emoji" data-code="2714">✔️</span></td></tr></tbody></table>

* **Note**: Extra revenue is revenue that comes from our app upsells and cross-sells campaign. For example, if one product is priced at $30.00 and you offer a bundle of 2 for $50.00, the $20.00 difference is considered extra revenue.
* When your store exceeds the quota for extra revenue, the application will automatically draft your's active campaigns
* After you charge to higher plan, the application will automatically reactive the previously drafted campaigns.

### How to apply a discount code?

* Navigate to the **"Pricing plan"** menu in the admin app.
* Click the **"Add Discount Code"** button located at the top-right corner of the screen.

<figure><img src="/files/KNbkXIZ7VtA7XIkmOtep" alt=""><figcaption></figcaption></figure>

* Choose the plan you wish to apply the discount to and enter the discount code.

<figure><img src="/files/P1R6FQilXTulNB4kBIGq" alt=""><figcaption></figcaption></figure>


# Limit purchase

Where you can create, update, manage your limit purchases for your products

> **Note: This feature is currently available on our other app to help with customize and development.** [**Free to try it now.**](https://apps.shopify.com/pareto-limit-purchase)

* [Create a limit](/limit-purchase/create-a-limit)
* [Edit a limit](/limit-purchase/edit-a-limit)
* [Duplicate a limit](/offers/duplicate-an-offer)

<figure><img src="/files/eHU9cGWIv5hPOtwfxULx" alt=""><figcaption><p>When you haven't had a limit yet</p></figcaption></figure>

<figure><img src="/files/FH6ZjwUkO2HPcYvCqBH0" alt=""><figcaption><p>When you have had your limits</p></figcaption></figure>


# Create a limit

### 1. Add a limit

Go to main tab **Limit purchase** -> Click **Add a limit** button to start setting up your rules

<figure><img src="/files/SZi2HheXpkNaU4jiT5RK" alt=""><figcaption></figcaption></figure>

<figure><img src="/files/gCMeefg75XRim1s35J9J" alt=""><figcaption></figcaption></figure>

### 2. Set up rules

* **Min limit purchases**: Minimum quantity that customers must purchase.
* **Max limit purchases**: Maximum quantity that customer must purchase
* **Multiple**: The quantity purchased must be a multiple of the specified number.

<figure><img src="/files/Kdzmk8ZLQJZpGmKwEI7u" alt=""><figcaption></figcaption></figure>

### 3. Apply to product

Select the product to which you want to apply the above limit rules. We have 3 options:

* **Specific product variants:** For each product variant, your customers can only purchase quantities within the specified range. &#x20;

<figure><img src="/files/HznHmTrMyv1nyr06XZGk" alt=""><figcaption></figcaption></figure>

* **Specific products:** For each selected product, your customers can only purchase quantities (sum of variants quantities of product) within the specified range. &#x20;

<figure><img src="/files/l7mngR9q9S8j8RpOaXrh" alt=""><figcaption></figcaption></figure>

* **Specific collections**: For each selected collection, your customers can only purchase quantities (sum of products quantities of collection) within the specified range. &#x20;

<figure><img src="/files/4TqqOSX6Go7adxwmCJkK" alt=""><figcaption></figcaption></figure>

**Note: The system will prioritize checking limit rules of product variant => product => collection**

### 4. Apply to customer

Select the customer group to which you want to apply the above limit rules. We have 2 options

* **Group customers:** This limit rule will be applied to all customer who have the selected tag.

<figure><img src="/files/tQTYcGPg3iuMt9fX93PS" alt=""><figcaption></figcaption></figure>

* **All visitors:** This limit rule will be applied to all visitors on your storefront

**Note: The system will prioritize checking limit rules of group customer => all visitors**

### 5. Set up schedule

You can setup the time period during which this limit will be available.

<figure><img src="/files/jzJJZyGDxnDvn3JncPSD" alt=""><figcaption></figcaption></figure>

### 6. Save your limit

Click **Save** button to save your limit

<figure><img src="/files/Bmy9so9pdG62SJIZOLpB" alt=""><figcaption></figcaption></figure>


# Edit a limit

1. Go to main tab **Limit purchase** -> click the **edit icon** on the limit rule you want to modify

<figure><img src="/files/F6mMLE2Il6zVBRKD87Ng" alt=""><figcaption></figcaption></figure>

2. Edit rules, apply to product, apply to customer, or schedule them like [creating a](/limit-purchase/create-a-limit)[ limit](/limit-purchase/create-a-limit).
3. Turn on/off a limit

If you want to activate this limit, please click "**Turn on**" button.

<figure><img src="/files/652xQlR84kKSQbv3Hkxa" alt=""><figcaption></figcaption></figure>

If you want to deactivate this limit, please click "**Turn off**" button

<figure><img src="/files/I9hZqkYSqdSgdCUB8929" alt=""><figcaption></figcaption></figure>


# Duplicate a limit

1. Go to main tab **Limit purchase** -> Click the **duplicate icon** on the limit you want to duplicate.

<figure><img src="/files/YDqcD76KvtUIwWaSljoW" alt=""><figcaption></figcaption></figure>

2. Edit rules, apply to product, apply to customer, or schedule them like [creating a limit](/limit-purchase/create-a-limit)&#x20;
3. Click **Save** button to save your limit

<figure><img src="/files/Bmy9so9pdG62SJIZOLpB" alt=""><figcaption></figcaption></figure>


# Pareto - Order Limit Quantity

Manage order quantities with min/max limits on orders, collections, products, or variants.

Enhance your store management with our app's powerful features. Set minimum, maximum and multiple order limits to control inventory and improve the shopping experience. Apply these limits flexibly to collections, products, and variants. Enjoy an easy setup with a user-friendly interface that requires no techical expertise. Inform customers seamlessly with notifications on the product and cart pages, helping them adjust orders effortlessly. Optimize your sales strategy effortlessly!

### About Pareto - Omega

Omega team is proud to be amongst Top 30 technology companies with more than 7 years of expertise in developing Shopify apps.

Over the course of seven years of development, Omega has built 25+ applications to service Shopify users in a variety of industries and purposes.

Here's where you can find us:

* Pareto: <https://apps.shopify.com/partners/pareto8>
* Omega: <https://apps.shopify.com/partners/omegaapps>&#x20;
* Synctrack: <https://apps.shopify.com/partners/synctrack>


# App overview

See what you've got!

#### Let's take a tour around our app to see what you've got. <a href="#lets-take-a-tour-around-our-app-to-see-what-youve-got" id="lets-take-a-tour-around-our-app-to-see-what-youve-got"></a>

| **Dashboard**         | You can find setup guides, important update notices and app overview report.                                                                                                                                       |
| --------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| **Limit rules**       | Manage your limit purchase rules, create new product rules, edit or draft them anytime right here. - Apply rule to each products - Apply rule to specific collections - Apply rule to all products on online store |
| **Limit messaging**   | Customize notifications and your store's external layout here to align with your theme.                                                                                                                            |
| **Checkout alerts**   | Display alerts on the checkout page when buyers violate limit rules, allowing them to adjust their orders accordingly. Use Checkout UI Extensions, exclusively available for Shopify Plus                          |
| **Low stock counter** | Manager your rules, create new inventory rules, edit or draft theme any time right here - Set threshold to show alerts - Apply to specific variants, products, collections or all products                         |
| **Statistics**        | View statistics to track and monitor violations of limit rules                                                                                                                                                     |
| **Pricing plan**      | Where you can explore and select teh subscription plan that best fits your store's needs.                                                                                                                          |
| **App settings**      | Where you can add settings to integrate the app smoothly with your store.                                                                                                                                          |
|                       |                                                                                                                                                                                                                    |


# Enable app embed

How does the app work on your storefront.

### 1. Enable app embed

1. On the Dashboard app, if not embedded, a warning banner will display. Click "Activate Now" to redirect to theme editor.

<figure><img src="/files/cb4JeLgZwNdd9bUn3D5Q" alt=""><figcaption></figcaption></figure>

\
2\. Turn on "**Pareto Limit Purchase**" app and don't forget save your change.

<figure><img src="/files/1PVqDmC5vJRWi1meqj7Z" alt=""><figcaption></figcaption></figure>

### 2. Add code in Collection Page

* Go to theme -> "Edit code"

<figure><img src="/files/TMdhK8FuM0u6N5mVGStH" alt=""><figcaption></figcaption></figure>

* Add code the collection.liquid or card-product.liquid, at position you want.

```
{% assign result_collection = "" %}
{% for collection in card_product.collections %}
{% if forloop.first == false %}
    {% assign result_collection = result_collection | append: "," %}
{% endif %}
{% assign result_collection = result_collection | append: collection.id %}
{% endfor %}
<div class="omgLimit-collection" 
  data-variant-id="{{ card_product.variants[0].id }}"
  data-variant-price="{{ card_product.selected_or_first_available_variant.price }}"
  data-variant-weight="{{ card_product.selected_or_first_available_variant.weight }}"
  data-variant-quantity="{{ cart | item_count_for_variant: variant.id }}"
  data-product-id="{{ card_product.id }}" 
  data-colections="{{ result_collection }}">
</div>
```

<figure><img src="/files/2xffQH4JeYhPkShJ5PrO" alt=""><figcaption></figcaption></figure>

### 3. Add Block in Checkout Page

* Go to theme -> customize -> checkout page&#x20;

<figure><img src="/files/urIw1sL10H5j5madOwar" alt=""><figcaption></figcaption></figure>

* Add the "**Pareto - Payment Limit**" block to the position you want

<figure><img src="/files/AqyS9vZdfo63RMBxjhXd" alt=""><figcaption></figcaption></figure>


# Create limit rules

* Go to "**Limit rules**" from admin menu. Click the "**Create limit**" button.

<figure><img src="/files/babZpDlSW82rnCmN66gD" alt=""><figcaption></figcaption></figure>

1. **Select limit type**

We have 4 options:

* &#x20;Limit by quantity
* Limit by value
* Limit by weight (grams)
* Restrict by product (example: block adding  product A if product B is in the cart)

2. **Setup limit rule**

* Enter the desired **minimum, maximum** and **multiple** purchase limits for the product.
* If no maximum purchase limit is required, leave the field blank or enter "0".

<figure><img src="/files/Y1FF7vgdWqSRlU9ZBaL9" alt=""><figcaption></figcaption></figure>

* To set the maximum purchase limit equal to the product's available inventory, check the **"Set the maximum equal to the inventory"** option.

<figure><img src="/files/zYvw6oYCQQk4MBQid3cR" alt=""><figcaption></figcaption></figure>

2. **Select Products or Product Groups to Apply Limits**

Choose from 5 options to apply the limit rules:

* **All products:** Apply the limit rules to all products in your store
* **Specific collections:** Apply the limit rules to the selected collections.

<figure><img src="/files/ZYNb8pNkEC7bLMDFKO8V" alt=""><figcaption></figcaption></figure>

* **Group products**: Apply the limit rules to products that match specific conditions (e.g., tags, titles, or vendors).

<figure><img src="/files/tT5WNi77Rt2xCZaW8Kp6" alt=""><figcaption></figcaption></figure>

* **Specific products:** Apply the limit rules to the selected individual products.

<figure><img src="/files/TWlyMspRkDqz5SP44pdO" alt=""><figcaption></figcaption></figure>

* **Specific product variants**: Apply the limit rules to the selected product variants.

<figure><img src="/files/sm0udicbF9tKHuLst7fD" alt=""><figcaption></figcaption></figure>

3. **Set quantity condition**

Define how to calculate limit condition. There are 4 options:

* **Total quantity of all products:** Add the total quantity of products belonging to the selected collections and compare min/max
* **Total quantity of each collection:** Add the total quantity of products in each selected collection and compare min/max
* **Total quantity of each products:** Sum the quantities of each product to compare min/max
* **Total quantity of each variant:** the quantity of each variant to compare min/max

<figure><img src="/files/LInA0CgHJwUVT6oEmhkQ" alt=""><figcaption></figcaption></figure>

4. **Apply to markets**&#x20;

* Allows merchants to set personalized limit rules for each market or country, tailoring restrictions to regional needs.

<figure><img src="/files/H4VnlBPPcedtFMzLozDJ" alt=""><figcaption></figcaption></figure>

* Search and choose the countries/regions where you want the rule to apply.

5. **Target customer**

Select the customer segment to apply the limit rules. There are 5 options:

* **All visitors:** Apply the limit rules to all customers visiting your store.
* **Logged-in customers:** Apply the limit rules to all logged-in customers.
* **Logged-in customers with tag:** Apply the limit rules to logged-in customers with the selected tag.

<figure><img src="/files/vkEomqFQj2TuP6AJRxAE" alt=""><figcaption></figcaption></figure>

* **Customers without tag:** Apply the limit rules to customers who do not have the selected tag.

<figure><img src="/files/OuI7dcMFazuF2UH8WyWs" alt=""><figcaption></figcaption></figure>

* **Visitors with IP**: Apply the limit rules to visitors with the specified IP addresses from the list you selected

<figure><img src="/files/tvjgc9vAtqNkHRLc1Lbc" alt=""><figcaption></figcaption></figure>

5. **Schedule**

* You can set start and end times for limit rules, and the system will automatically follow the schedule, saving management time.

<figure><img src="/files/4UUU6tMi0U3SYxQi5eyl" alt=""><figcaption></figcaption></figure>


# Limit messaging

Customize notifications, styles, and multilingual texts to fit with your store.

1. **Check limit on product page**

<figure><img src="/files/YxUpGm7wQzKZJwAwzmhK" alt=""><figcaption></figcaption></figure>

Checked this option to block "**Add to cart**" button and display a notification on product page when the customer's quantity/value/weight doesn't meet the conditions.

2. **Check limit on collection page**

<figure><img src="/files/XyJfXIWdGGcvorqy8iEx" alt=""><figcaption></figcaption></figure>

Checked this option to block "**Add to cart**" button and display a notification on collection page when the customer's quantity/value/weight doesn't meet the conditions.

*Note: This is an advanced setting that requires adding code to your theme. Please contact us for assistance.*

3. **Customize notification, color, translate text**

* Checked "**Set default quantity to minimum**" option if you want the product's default quantity to be set to the minimum value of the limit rule when the product page loads&#x20;

<figure><img src="/files/2S6eAIECul6dfVpKj5qZ" alt=""><figcaption></figcaption></figure>

4. **Customize table layout**

<figure><img src="/files/0Mrp3aQBzp5hQYJm7ir2" alt=""><figcaption></figcaption></figure>

5. **Save your changes and check your storefront**

<figure><img src="/files/Dv8D8VMqb5hrDeTsOPGa" alt=""><figcaption></figcaption></figure>


# Checkout alerts

Block payments and display error messages directly on the checkout page for Shopify Plus stores

Unlike Shopify Functions, this extension isn't limited by line item quantity and offers better optimization.

* Go to "**Checkout alerts**" menu
* Add block "**Pareto - Limit Checkout**" in checkout page as [guide here](https://docs.paretodeals.com/pareto-limit-purchases/pages/aS4FBglD9AAMv278muN2#id-3.-add-block-in-checkout-page)
* Checked "**Show notification**" option to display an alert when the customer's order does not meet the limit rule.&#x20;

<figure><img src="/files/faAA6hyMXXPkq7DfZuXI" alt=""><figcaption></figcaption></figure>

* Checked "**Show product component**" option to display details of products that do not meet the limit rule. This allows customers to add or remove products to ensure their order complies with the rule.

<figure><img src="/files/ME5VTHOV2oMRRYMvhW40" alt=""><figcaption></figcaption></figure>


# Low stock counter

Set threshold to inventory alerts, creating a sense of urgency and scarcity

* Go to "**Low stock counter**" from admin menu. Click "**Create stock rule**" buton

<figure><img src="/files/8RqRQISxpK3AQJAUAZCz" alt=""><figcaption></figcaption></figure>

1. **Select conditions to display alerts.**&#x20;

There are two options

* **Always show inventory notification**: regardless of how much inventory the product has
* **Just show when actual inventory less than the number you want.**

<figure><img src="/files/RdSMZWSbQZl41ggnBkD6" alt=""><figcaption></figcaption></figure>

2. **Apply to products**

There are 4 options:

* **All products:** the alert rules will apply to all products on your store
* **Specific collections:** the alert rules will apply to specific collections you selected

<figure><img src="/files/fuuA2aLbvoNNz9zX0KF4" alt=""><figcaption></figcaption></figure>

* **Specific products:** the alert rules will apply to specific products you selected

<figure><img src="/files/i2KrIQMi9Vrvht1RtLRz" alt=""><figcaption></figcaption></figure>

* **Specific product variants:** the alert rules will apply to specific product variant you selected

<figure><img src="/files/QSQB1X6Y7UWtFg1FvlLU" alt=""><figcaption></figcaption></figure>

3. **Target customer**

There are 4 options:

* **All visitors:** All customers visit on your store will be apply the limit rules.
* **Logged-in customers:** The alert rules will apply to all logged-in customers on your store.
* **Logged-in customers with tag**: The alert rules will apply to customers with the tag you selected.

<figure><img src="/files/KSQaHu5hQJqKvaxbNfs3" alt=""><figcaption></figcaption></figure>

* **Customers without tag:** The alert rules will apply to customers without the tag you selected

<figure><img src="/files/OBc2STLoJUNK8S5jCp2r" alt=""><figcaption></figcaption></figure>

4. **Schedule**

* You can set start and end times for limit rules, and the system will automatically follow the schedule, saving management time

<figure><img src="/files/qVgYh4nDZ1F34Kj1zxS9" alt=""><figcaption></figcaption></figure>

5. **Customize display**

* Customize your alerts: text, color, background and position.

<figure><img src="/files/8ueIfr9GjrHPiidcchY3" alt=""><figcaption></figcaption></figure>

* Storefront display

<figure><img src="/files/QN0kkSvSbHRTs2y2Lw2f" alt=""><figcaption></figcaption></figure>

<figure><img src="/files/hs2lrjgXxwLYDHXfJzRi" alt=""><figcaption></figcaption></figure>


# Statistics page

The **Statistics** page provides key insights into how limit rules are being applied, giving you a clear overview of blocked actions and restricted items.

1. **Block "Add to cart" action:** show the number of times the "**Add to cart**" action was blocked due to limit rules
2. **Block "Checkout" action:** show the number of times the "**Checkout**" action was blocked due to limit rules
3. **Top IP Restricted:** the IP addresses that were most frequently blocked by limit rules
4. **Top Products Restricted:** the products most frequently restricted by limit rules

<figure><img src="/files/0IR4uycETMtVz3i4OCZn" alt=""><figcaption></figcaption></figure>


# App settings

### 1. Mix & Match limit rules

When a variant is added to the cart, it must meet the following rules in order

* Variant rule (If any)
* Product rule (If any)
* Collection rule (If any)
* All Product rule (If any)

Example, you have 2 limit rules

* Rule 1: Product A quantity must be between 1 and 3
* Rule 2: Total cart quantity must be greater than 5

**⇒ Customer must purchase 1 to 3 units of Product A and at least one additional product to ensure the total cart quantity exceeds 5 before thay can proceed to checkout**

* Admin setup: General settings -> Check "Mix & Match limit rules  &#x20;

<figure><img src="/files/P2akY7iHUgVQAxUknzmI" alt=""><figcaption></figcaption></figure>

### 2. Sync product data

* Click the "**Sync data**" button so the app can use data on your store

<figure><img src="/files/BLnEY6QBcsk6SSQVB0hK" alt=""><figcaption></figcaption></figure>


# Pricing plan

| Features                                  | Free                                    | Basic                                   | Advance                                            | Shopify Plus                            |
| ----------------------------------------- | --------------------------------------- | --------------------------------------- | -------------------------------------------------- | --------------------------------------- |
| Price/ month                              | **$0.00**                               | **$8.99**                               | **$13.99**                                         | **$25.99**                              |
| Number active rules                       | 1                                       | 5                                       | Unlimited                                          | Unlimited                               |
| Limit types                               | quantity/ amount/ weight/ block product | quantity/ amount/ weight/ block product | quantity/ amount/ weight/ block product            | quantity/ amount/ weight/ block product |
| Block actions per month                   | 200                                     | 2000                                    | Unlimited                                          | Unlimited                               |
| Block action in page                      | Product page, Cart page                 | Product page, Cart page                 | <p>Product page, Cart page,<br>Collection page</p> | All pages                               |
| Checkout Validation (Shopify Function)    | -                                       | ✔                                       | ✔                                                  | ✔                                       |
| Checkout Validate (Checkout UI Extension) | -                                       | -                                       | -                                                  | ✔                                       |
| Auto-translate messages                   | -                                       | -                                       | ✔                                                  | ✔                                       |
| Low Stock Counter                         | ✔                                       | ✔                                       | ✔                                                  | ✔                                       |
| Live chat support 24/7                    | ✔                                       | ✔                                       | ✔                                                  | ✔                                       |
| Technical support                         | -                                       | ✔                                       | ✔                                                  | ✔                                       |

* **Block actions:** Number of times the application blocks "Add to cart" button, "Checkout" button when limit rule is violated

## Charge policy

#### App prorating, upgrades, and downgrades <a href="#app-prorating-upgrades-and-downgrades" id="app-prorating-upgrades-and-downgrades"></a>

If you upgrade or downgrade your subscription with an app, then the app will prompt you to agree to a new recurring app charge. This is because Shopify allows each app only one recurring app charge to be enabled at a time. The existing recurring application charge will be canceled and replaced by the new charge.

Depending on the app, the new recurring app charge is either applied immediately, or after the app's current billing cycle ends.

If the new app charge is applied immediately, then when you upgrade your plan by moving from a less expensive charge to a more expensive charge, the charge is prorated based on the difference in price and the number of days remaining in the billing cycle. For example, if you begin a 30-day billing cycle on a $5.00 plan, and upgrade to a $15.00 plan on day 15 of the billing cycle, then you're charged $5.00 + ($15.00 - $5.00) \* (15/30) = $10.00 USD.

If the new app charge is applied immediately, then when you downgrade your plan by moving from a more expensive charge to a less expensive charge, you're automatically offered an application credit based on the difference in price and the number of days remaining in the billing cycle. This application credit can be used towards any future application purchase on Shopify.


