Skip to content

Instantly share code, notes, and snippets.

@boldsupport
Last active October 11, 2017 16:58
Show Gist options
  • Save boldsupport/da607e97705a43bbc185 to your computer and use it in GitHub Desktop.
Save boldsupport/da607e97705a43bbc185 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 = 'article'%}
{% for bold_rule in blog.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 article.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 blog.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 %}
{% endif %}
{% if bold_rule.last == 'show' %}
{% assign bold_hide_item = false %}
{% endif %}
{% endif %}
{% endfor %}
{% endfor %}
{% for bold_rule in article.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