My Daily Pack Backup

{% if customer %} {% assign total_packs = customer.metafields.custom.total_packs.value | default: 1 %} {% assign pack_names_raw = customer.metafields.custom.pack_names.value | default: '' %} {% assign current_raw = customer.metafields.custom.current_pack.value | default: '' %} {% assign stored_raw = customer.metafields.custom.stored_products.value | default: '' %} {% assign previous_raw = customer.metafields.custom.previous_pack.value | default: '' %}

My Daily Pack

Your supplements are organized into daily foil packs based on your active membership and selected pack assignments.

Subscription Summary

{% if customer.metafields.custom.membership_active.value == 'yes' %} ● Active {% else %} ● Inactive {% endif %}
Total Active Packs
{{ total_packs }}
Packs Per Shipment
30 foil packs each
Subscription Type
Monthly
{% for i in (1..total_packs) %} {% assign pack_key = 'Pack ' | append: i %} {% assign pack_display_name = pack_key %} {% assign name_lines = pack_names_raw | newline_to_br | split: '
' %} {% for name_line in name_lines %} {% assign name_parts = name_line | split: '|' %} {% assign name_key = name_parts[0] | strip %} {% assign name_value = name_parts[1] | strip %} {% if name_key == pack_key and name_value != blank %} {% assign pack_display_name = name_value %} {% endif %} {% endfor %}

{{ pack_display_name }}

{{ pack_key }}
{% assign has_items = false %} {% assign current_items = current_raw | split: '•' %} {% for item in current_items %} {% assign clean_item = item | strip %} {% if clean_item contains pack_key and clean_item contains 'Product:' %} {% assign has_items = true %}
{{ clean_item | replace: 'Pack:', 'Pack:' | replace: 'Product:', '
Product:' | replace: 'Bottle Servings:', '
Bottle Servings:' | replace: 'Packed This Month:', '
Packed This Month:' | replace: 'Stored For Next Month:', '
Stored For Next Month:' }}
{% endif %} {% endfor %} {% unless has_items %}

No products assigned to this pack yet.

{% endunless %}
{% endfor %}

Products Being Stored For Me

{% if stored_raw != blank %} {% assign stored_items = stored_raw | split: '•' %} {% for item in stored_items %} {% assign clean_item = item | strip %} {% if clean_item contains 'Product:' %}
{{ clean_item | replace: 'Pack:', 'Pack:' | replace: 'Product:', '
Product:' | replace: 'Stored For Next Month:', '
Stored For Next Month:' }}
{% endif %} {% endfor %} {% else %}

No stored products currently.

{% endif %}

Previous Pack

{% if previous_raw != blank %} {% assign previous_items = previous_raw | split: '•' %} {% for item in previous_items %} {% assign clean_item = item | strip %} {% if clean_item contains 'Product:' %}
{{ clean_item | replace: 'Pack:', 'Pack:' | replace: 'Product:', '
Product:' | replace: 'Bottle Servings:', '
Bottle Servings:' | replace: 'Packed Last Month:', '
Packed Last Month:' | replace: 'Previously Stored:', '
Previously Stored:' }}
{% endif %} {% endfor %} {% else %}

No previous pack available yet.

{% endif %}

Manage Subscription

Update your shipment schedule, billing method, or subscription preferences.

Manage Subscription
{% else %}

Access Your Daily Pack

Your Daily Pack is where you can manage your personalized supplement packs, view your active memberships, and organize your monthly shipments.

Please log in to access your account, or create a new account if you're new to SuppLovin.

{% endif %}