Skip to content

Instantly share code, notes, and snippets.

@Lysindr
Last active June 18, 2020 07:15
Show Gist options
  • Save Lysindr/d1551b370b5a075f99d248d220c518f2 to your computer and use it in GitHub Desktop.
Save Lysindr/d1551b370b5a075f99d248d220c518f2 to your computer and use it in GitHub Desktop.
Shopify Liquid RANDOM MIN MAX code example
{% comment %}
!!! IMPORTANT !!! - the date variables CACHED ON LIVE THEME and DON'T CHANGE AFTER PAGE RELOAD.
{% endcomment %}
{% assign min = 0 %}
{% assign max = try_collection.all_products_count %}
{% assign diff = max | minus: min %}
{% assign timestamp = "today" | date: "%s" | plus: 0 %}
{% assign randomNumber = timestamp | modulo: diff | plus: min %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment