Created
March 13, 2014 15:22
-
-
Save mdcpepper/9530482 to your computer and use it in GitHub Desktop.
This file contains 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
{% set excludedIds = [] %} | |
{% set allProducts = craft.entries.section('products') %} | |
{% for product in allProducts %} | |
{% if product.productCategories|length %} | |
{% set excludedIds = excludedIds|merge(['not '~product.id]) %} | |
{% endif %} | |
{% endfor %} | |
{% set products = craft.entries.section('products').id(excludedIds).limit(null) %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment