Skip to content

Instantly share code, notes, and snippets.

@BertHaine
BertHaine / shopifypreorder.liquid
Created May 24, 2021 06:50
Shopify - Order Status Page - Pre-Order Code - Product Detail Page - Version 3
{% assign preorder_count = 0 %}
{% assign line_item_count = 0 %}
{% for line_item in order.line_items %}
{% for tag in line_item.product.tags %}
{% if tag contains "pre-order[" or tag contains "preorder[" %}
{% assign preorder_count = preorder_count | plus: 1 %}
{% endif %}
{% endfor %}
{% endfor %}
@BertHaine
BertHaine / orderstatus.liquid
Created May 24, 2021 06:49
Shopify - Order Status Page - Pre-Order Code - Version 2
{% for line_item in order.line_items %}
{% for tag in line_item.product.tags %}
{% if tag contains "pre-order[" or tag contains "preorder[" %}
{% if tag contains "pre-order[" %}
{% assign release_date = tag | split: "pre-order[" %}
{% elsif tag contains "preorder[" %}
{% assign release_date = tag | split: "preorder[" %}
{% endif%}
{% assign release_date = release_date[1] | replace: "]", "" %}
@BertHaine
BertHaine / cloudSettings
Last active June 7, 2020 19:07
VS Code Settings
{"lastUpload":"2020-06-07T19:07:24.821Z","extensionVersion":"v3.4.3"}