Solved

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

piedpiper
Tourist
6 0 1

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!

Accepted Solution (1)
dmwwebartisan
Shopify Partner
12280 2546 3694

This is an accepted solution.

@piedpiper 

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

<h5 class="product-thumb-caption-title">{{ product.title | escape }}</h5>

2] After add this code 

  <h5 class="product-thumb-caption-title">{{ product.vendor }}</h5>

Thanks!

If helpful then please Like and Accept Solution | Email: dmw.webartisan@gmail.com |  Instagram: @dmw.webartisan
Check here PageFly App to customize your pages | #1 Product Filter & Search app on Shopify | The most powerful Shopify page builder app

View solution in original post

Replies 6 (6)

dmwwebartisan
Shopify Partner
12280 2546 3694

@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:

<p>{{ product.vendor }}</p>

Thanks!

 

If helpful then please Like and Accept Solution | Email: dmw.webartisan@gmail.com |  Instagram: @dmw.webartisan
Check here PageFly App to customize your pages | #1 Product Filter & Search app on Shopify | The most powerful Shopify page builder app
piedpiper
Tourist
6 0 1

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!

dmwwebartisan
Shopify Partner
12280 2546 3694

@piedpiper 

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

Thanks!

 

If helpful then please Like and Accept Solution | Email: dmw.webartisan@gmail.com |  Instagram: @dmw.webartisan
Check here PageFly App to customize your pages | #1 Product Filter & Search app on Shopify | The most powerful Shopify page builder app
piedpiper
Tourist
6 0 1

@dmwwebartisan 

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

ExampleExample

I have attached my theme zip file.

Thanks!

dmwwebartisan
Shopify Partner
12280 2546 3694

This is an accepted solution.

@piedpiper 

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

<h5 class="product-thumb-caption-title">{{ product.title | escape }}</h5>

2] After add this code 

  <h5 class="product-thumb-caption-title">{{ product.vendor }}</h5>

Thanks!

If helpful then please Like and Accept Solution | Email: dmw.webartisan@gmail.com |  Instagram: @dmw.webartisan
Check here PageFly App to customize your pages | #1 Product Filter & Search app on Shopify | The most powerful Shopify page builder app
piedpiper
Tourist
6 0 1

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