Hi,
I have some custom liquid to display variant brand, sku, barcode. Is there a way I can make the vendor name a link to the vendor collection?
Thanks ![]()
{%- assign current_variant = product.selected_or_first_available_variant -%}
**Brand:**
{{product.vendor}}
**SKU:**
{{current_variant.sku}}
**GTIN:**{{current_variant.barcode}}
{% if current_variant.available %}
**Availability:** In Stock
{% else %}
**Availability:** Out of Stock
{% endif %}