Hi, I would like vendor names to appear above product titles in the collection pages.
You need to do on the snippets/product-card-grid.liquid file. Please check the following screenshot.
{% if section.settings.show_vendor and product %}
<dt>
{{ 'products.product.vendor' | t }}
</dt>
<dd>
{{ product.vendor }}
</dd>
{% endif %}
Hope this helps.
Thanks!
1 Like
Hey, thank you for taking your time to help out.It did move the vendor above the product title but the below one still is there.
Do you know a solution for this problem?
1 Like
I managed that out by myself but thank you. ![]()
1 Like
Hey @Juan786 ,
Please add this to the bottom of your theme.scss.liquid file.
.price__vendor {
margin: 5px 0 0px !important;
}
Thanks!
1 Like
Thank you!
1 Like



