Product Vendor Description in Product Pages

Hey all. I’m curious if anyone here has implemented a solution to adding vendor information/descriptions within a product itself. Would love to see a few examples. Thank you!

I got this working and thought I’d share what I did.

I used the app “Tabs by Station” app. Then I created a tab for brand info and selected HTML type tab. From there I simply added the following HTML

{{ product.vendor }}

{% for c in product.collections %} {% if c.title == product.vendor %} {{ c.description }} {% endif %} {% endfor %}

Note that you’ll need to create collections for each vendor.