Guest User

Untitled

a guest
Oct 24th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. {% if craft.commerce.products.relatedTo({ sourceElement: product, field: 'productDesigner' })|length %}
  2. {% set relatedProducts = craft.commerce.products.relatedTo({
  3. sourceElement: product,
  4. field: 'productDesigner'
  5. }) %}
  6. {% elseif craft.commerce.products.relatedTo({ sourceElement: product, field: 'type' })|length %}
  7. {% set relatedProducts = craft.commerce.products.relatedTo({
  8. sourceElement: product,
  9. field: 'type'
  10. }) %}
  11. {% else %}
  12. {% set relatedProducts = craft.commerce.products.relatedTo(product) %}
  13. {% endif %}
  14.  
  15. {% for product in relatedProducts %}
  16. {% include "partials/_product-block" %}
  17. {% endfor %}
Add Comment
Please, Sign In to add comment