Only Continue if... - aareano/ifshop-wiki GitHub Wiki

https://github.com/aareano/ifshop-wiki/wiki/Only-Continue-if...#custom-conditions

This action is available for all event classes.

This action acts as a filter for an action sequence. Add filters to this action just as you would to any other action, the difference is that instead of just moving on to the next action if the filters don't all pass, the ifshop will stop moving down action sequence and no more actions will be executed. If all of the filters do pass, the ifshop will proceed down the action sequence as normal.

This effectively allows you to consolidate conditions that you would otherwise need to apply to every action individually.

Custom Conditions

This is a super cool feature. I'm glad you're here. Let's get started.

Part 1. Do you know how to use liquid?

  • No? Then get excited, because your shop is about to become extensibly flexible. Begin here.
  • Yes? Awesome, move on to part two.

Part 2: Examples

Take a look at the examples below - mold them to fit your purpose, or send me a question with the in-app chat feature.

an item product title equals

This filter iterates through an array of line_items, checking to see if any product title is equal to the value of my_title.

prelude

{% assign my_title = "Sample Title" | downcase %}

{% for item in line_items %}

  {% assign product_title = item.product.title | downcase %}

  {% if product_title == my_title %}
    {% assign result = true %}
  {% else %}
    {% assign result = false %}
  {% endif %}

  {% if result or results %}
    {% assign results = true %}
  {% else %}
    {% assign results = false %}
  {% endif %}

{% else %}

  {% assign results = true %}

{% endfor %}

condition

results

an item product title contains

This filter iterates through an array of line_items, checking to see if any product title contains the value of my_title.

prelude

{% assign my_title = "Sample Title" | downcase %}

{% for item in line_items %}

  {% assign product_title = item.product.title | downcase %}

  {% if product_title contains my_title %}
    {% assign result = true %}
  {% else %}
    {% assign result = false %}
  {% endif %}

  {% if result or results %}
    {% assign results = true %}
  {% else %}
    {% assign results = false %}
  {% endif %}

{% else %}

  {% assign results = true %}

{% endfor %}

condition

results

an item vendor name equals

This filter iterates through an array of line_items, checking to see if any product title is equal to the value of my_title.

prelude

{% assign my_vendor = "Sample Vendor" | downcase %}

{% for item in line_items %}

  {% assign product_vendor = item.product.vendor | downcase %}

  {% if product_vendor == my_vendor %}
    {% assign result = true %}
  {% else %}
    {% assign result = false %}
  {% endif %}

  {% if result or results %}
    {% assign results = true %}
  {% else %}
    {% assign results = false %}
  {% endif %}

{% else %}

  {% assign results = true %}

{% endfor %}

condition

results

an item vendor name contains

This filter iterates through an array of line_items, checking to see if any product title contains the value of my_title.

prelude

{% assign my_vendor = "Sample Vendor" | downcase %}

{% for item in line_items %}

  {% assign product_vendor = item.product.vendor | downcase %}

  {% if product_vendor contains my_vendor %}
    {% assign result = true %}
  {% else %}
    {% assign result = false %}
  {% endif %}

  {% if result or results %}
    {% assign results = true %}
  {% else %}
    {% assign results = false %}
  {% endif %}

{% else %}

  {% assign results = true %}

{% endfor %}

condition

results

an item price equals

This filter iterates through an array of line_items, checking to see if any variant price is equal to the value of my_price.

Note that a price of 10000 is the amount in cents, and so will be interpreted as $100.00. Prices will always be divided by 100 to get the dollar value.

prelude

{% assign my_price = 10000 | money_without_currency | times: 1 %}

{% for item in line_items %}

  {% assign variant_price = item.variant.price | money_without_currency | times: 1 %}

  {% if variant_price == my_price %}
    {% assign result = true %}
  {% else %}
    {% assign result = false %}
  {% endif %}

  {% if result or results %}
    {% assign results = true %}
  {% else %}
    {% assign results = false %}
  {% endif %}

{% else %}

  {% assign results = true %}

{% endfor %}

condition

results

an item price is greater than

This filter iterates through an array of line_items, checking to see if any variant price is greater than the value of my_price.

Note that a price of 10000 is the amount in cents, and so will be interpreted as $100.00. Prices will always be divided by 100 to get the dollar value.

prelude

{% assign my_price = 10000 | money_without_currency | times: 1 %}

{% for item in line_items %}

  {% assign variant_price = item.variant.price | money_without_currency | times: 1 %}

  {% if variant_price > my_price %}
    {% assign result = true %}
  {% else %}
    {% assign result = false %}
  {% endif %}

  {% if result or results %}
    {% assign results = true %}
  {% else %}
    {% assign results = false %}
  {% endif %}

{% else %}

  {% assign results = true %}

{% endfor %}

condition

results

an item quantity equals

This filter iterates through an array of line_items, checking to see if any line item quantity is equal to the value of my_quantity.

prelude

{% assign my_quantity = "5" | times: 1 %}

{% for item in line_items %}

  {% assign variant_quantity = item.quantity | times: 1 %}

  {% if variant_quantity == my_quantity %}
    {% assign result = true %}
  {% else %}
    {% assign result = false %}
  {% endif %}

  {% if result or results %}
    {% assign results = true %}
  {% else %}
    {% assign results = false %}
  {% endif %}

{% else %}

  {% assign results = true %}

{% endfor %}

condition

results

an item quantity is greater than

This filter iterates through an array of line_items, checking to see if any line item quantity is greater than the value of my_quantity.

prelude

{% assign my_quantity = "5" | times: 1 %}

{% for item in line_items %}

  {% assign variant_quantity = item.quantity | times: 1 %}

  {% if variant_quantity > my_quantity %}
    {% assign result = true %}
  {% else %}
    {% assign result = false %}
  {% endif %}

  {% if result or results %}
    {% assign results = true %}
  {% else %}
    {% assign results = false %}
  {% endif %}

{% else %}

  {% assign results = true %}

{% endfor %}

condition

results

all item product titles equal

This filter iterates through an array of line_items, checking to see if all product titles are equal to the value of my_title.

prelude

{% assign my_title = "Sample Title" | downcase %}

{% assign results = true %}

{% for item in line_items %}

  {% assign product_title = item.product.title | downcase %}

  {% if product_title == my_title %}
    {% assign result = true %}
  {% else %}
    {% assign result = false %}
  {% endif %}

  {% if result and results %}
    {% assign results = true %}
  {% else %}
    {% assign results = false %}
  {% endif %}

{% else %}

  {% assign results = true %}

{% endfor %}

condition

results

the total price equals

This filter checks to see if the total price of an order is equal to the value of my_price.

Note that a price of 10000 is the amount in cents, and so will be interpreted as $100.00. Prices will always be divided by 100.

prelude

{% assign my_price = 10000 | money_without_currency %}
{% assign my_price = my_price | times: 1 %}

{% assign total_price = total_price | money_without_currency %}
{% assign total_price = total_price | times: 1 %}

condition

total_price == my_price

the total price is greater than

This filter checks to see if the total price of an order is greater than the value of my_price.

Note that a price of 10000 is the amount in cents, and so will be interpreted as $100.00. Prices will always be divided by 100.

prelude

{% assign my_price = 10000 | money_without_currency %}
{% assign my_price = my_price | times: 1 %}

{% assign total_price = total_price | money_without_currency %}
{% assign total_price = total_price | times: 1 %}

condition

total_price > my_price

the product tags contain all of these tags (case sensitive)

This filter iterates through a array of tags (strings), checking to see if all of the tags held in my_tags are present.

prelude

{% assign my_tags = "comma-separated, tags" | split: ', ' %}

{% assign results = true %}

{% for tag in my_tags %}

  {% if product.tags contains tag %}
    {% assign result = true %}
  {% else %}
    {% assign result = false %}
  {% endif %}

  {% if result and results %}
    {% assign results = true %}
  {% else %}
    {% assign results = false %}
  {% endif %}

{% else %}

  {% assign results = true %}

{% endfor %}

condition

results

the product tags contain any of these tags (case sensitive)

This filter iterates through a array of tags (strings), checking to see if any of the tags held in my_tags are present.

prelude

{% assign my_tags = "comma-separated, tags" | split: ', ' %}

{% for tag in my_tags %}

  {% if product.tags contains tag %}
    {% assign result = true %}
  {% else %}
    {% assign result = false %}
  {% endif %}

  {% if result or results %}
    {% assign results = true %}
  {% else %}
    {% assign results = false %}
  {% endif %}

{% else %}

  {% assign results = true %}

{% endfor %}

condition

results

the title equals

This filter checks to see if the title of a product is equal to the value of my_title.

prelude

{% assign my_title = "Sample Title" %}

{% assign title = title | downcase %}
{% assign my_title = my_title | downcase %}

condition

title == my_title

the title contains

This filter checks to see if the title of a product contains the value of my_title.

prelude

{% assign my_title = "Sample Title" %}

{% assign exposed_title = title | downcase %}
{% assign my_title = my_title | downcase %}

condition

exposed_title contains my_title