Show vendor under product title on collection pages (Galleria theme)

Hi there,

I would like to display product vendor underneath product titles on collection pages and search results. I am using the Galleria theme.

I can see the vendor on product pages but need this on collection pages - there are no options for this in theme customizer.

Thanks in advance!

@piedpiper

Check first in your theme editor if you have already option or not for vendor.

  1. Open theme editor->go to collection page->open section from left side bar and check on

If not

  1. Open Section->product-grid.liquid or product-card.liquid->add bellow code where you want to show vendor:

{{ product.vendor }}

Thanks!

Hi @dmwwebartisan

Thanks for the suggestions! I have already tried both of these methods.

It is not an option to enable show vendor in theme editor, unfortunately.

I have also had a look at adding that bit of code, however, Section->product-grid.liquid and product-card.liquid do not exist in my theme code (Galleria theme). Below are the only templates, sections and snippets that I can see containing the word ‘product’:

Templates:

  • product.liquid

  • product.quickview.liquid

Sections:

  • featured-product.liquid

  • product-recommendations.liquid

  • product-template.liquid

  • related-products.liquid

Snippets

  • product-image.liquid

  • product-loop.liquid

  • product-quick-view.liquid

  • product-quick-view-btn.liquid

  • product-template.liquid

Thanks!

@piedpiper

Please share a screenshot of what do you want and also send your theme zip file.

Thanks!

@dmwwebartisan

Here is an example of what I am trying to achieve:

I have attached my theme zip file.

Thanks!

1 Like

@piedpiper

1] Find following code your Snippets\product-loop.liquid file .

##### {{ product.title | escape }}

2] After add this code

##### {{ product.vendor }}

Thanks!

1 Like

This worked! Thanks so much for your help! @dmwwebartisan