Hello! My site is AvilaEvlyn.com - it is currently password protected because it is under construction…
On my product page I would like users to be able to select the vendor and view all products provided by them. I am using Wokiee theme and I currently am using Vendor, Collections, & Tags to categorize the Vendors name. I have looked at other people asking this question but other responses haven’t solved this problem for me.
When I inspect the link on the live page it shows this:
If the link were "https://avilaevlyn.com/collections/monica-vinader" instead it would work..
In my theme under product-template.liquid the only area where it talks about “vendor” is this:
{% assign current_variant = product.selected_or_first_available_variant %}
{%- if product.featured_image -%}
{%- assign image_size = product.featured_image.width | append: 'x' -%}
{%- endif -%}
{%- if current_variant.sku != blank -%}
{%- endif -%}
{%- for variant in product.variants -%}
{%- if variant.sku != blank -%}
{%- endif -%}
{%- endfor -%}
Thank you in advance for your help! I am a beginner so excuse me if this is something simple I am not understanding.
