Custom Products

{%- liquid assign rel_collection = product.collections | first -%} {%- if rel_collection and rel_collection.products_count > 1 -%}
    {%- assign shown = 0 -%} {%- for rel in rel_collection.products -%} {%- if rel.id != product.id -%}
  • {%- render 'card-product', card_product: rel, media_aspect_ratio: settings.card_image_ratio, image_shape: settings.card_image_shape, show_vendor: false, show_rating: false, extend_height: true, lazy_load: true -%}
  • {%- assign shown = shown | plus: 1 -%} {%- if shown >= 8 -%}{% break %}{%- endif -%} {%- endif -%} {%- endfor -%}
{%- endif -%}