Skip to content

Instantly share code, notes, and snippets.

@boldsupport
Created July 19, 2018 16:36
Show Gist options
  • Save boldsupport/47bfe7afb28e4d91c1cc17030daa45be to your computer and use it in GitHub Desktop.
Save boldsupport/47bfe7afb28e4d91c1cc17030daa45be to your computer and use it in GitHub Desktop.
{% comment %}This snippet is generated and updated by Bold Memberships.{% endcomment %}
{% assign bold_hide_item = false %}
{% assign bold_item_type = 'index'%}
{% for bold_rule in index.metafields.bold_mem %}
{% if bold_rule.last== 'hide' %}
{% assign bold_hide_item = false %}
{% endif %}
{% if bold_rule.last == 'show' %}
{% assign bold_hide_item = true %}
{% assign bold_noaccess_snippet = 'bold-memberships-noaccess-' | append: bold_rule.first %}
{% endif %}
{% endfor %}
{% for bold_rule in index.metafields.bold_mem %}
{% for customer_tag in customer.tags %}
{% if customer_tag == bold_rule.first %}
{% if bold_rule.last == 'hide' %}
{% assign bold_hide_item = true %}
{% assign bold_noaccess_snippet = 'bold-memberships-noaccess-' | append: customer_tag %}
{% endif %}
{% if bold_rule.last == 'show' %}
{% assign bold_hide_item = false %}
{% endif %}
{% endif %}
{% endfor %}
{% endfor %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment