This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{%- assign show_pdf_icon = false -%} | |
{%- for line_item in order.line_items -%} | |
{%- if line_item.product.type == "Pass" or line_item.product.type == "Firewood" or line_item.product.type == "Permit" -%} | |
{%- assign show_pdf_icon = true -%} | |
{%- break -%} | |
{%- endif -%} | |
{%- endfor -%} | |
{%- if show_pdf_icon -%} | |
<svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 512 512"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Start Passes --> | |
{% comment %} | |
Start Park Pass link generation - Check if the pass is within 1 year, wasn't cancelled, and if is a pass. | |
{% endcomment %} | |
{% if line_item.product.type == "Pass" and order.cancelled_at == blank %} | |
{% assign seconds_in_day = 86400 %} | |
{% assign seconds_in_weekend = 172800 %} | |
{% assign seconds_in_5days = 432000 %} |
OlderNewer