How can I hide a specific word from the vendor section on my web store?

Hello everyone,

This is my first post on this forum.

I would need a simple solution, perhaps a code script for hiding one word showing up from my web store. This word is only shown in vendor section (on collection page and on product page) The word is BigBuy and it should be hidden / removed by script. An example of product which has that word: https://gigastore.fi/products/ovikiila-koira-teksiili - so there should read only “Home” in vendor after script added that hides word BigBuy.

Could anyone help with that please? Any help would be appreciated.

(PS. It’s not the solution to re-name the vendor not having this word BigBuy as their stock app updates products regularly and even if I change the vendors manually, after some days it would be updated back to original.. so only way would be a script if that is possible)

Hi @GigaS ,

Please go to theme.liquid file, find ‘’ and add code here:

Code:


Hope it helps!

Hello LitCommerce,

Thanks for your time! I tried this, but it didn’t help.

This template is Warehouse.

Hi @GigaS ,

Go to Assets > custom.js and paste this at the bottom of the file:

document.querySelectorAll('.product-meta__vendor').forEach((vendor) => {
        vendor.innerHTML = vendor.innerHTML.replace('BigBuy ','');
      });
      document.querySelectorAll('.product-item__vendor').forEach((vendor) => {
        vendor.innerHTML = vendor.innerHTML.replace('BigBuy ','');
      });

Hope it helps!

1 Like

Thank you so very much for your help! This worked, very happy upcoming summer to you with many blessings! :folded_hands: :blush:

1 Like

Hi,
I got the same issue using prestige theme, the solution isn’t working for me could you please help me to? Thanks so much :folded_hands:

Hi @HO4 ,

You can create a question on the community and send me the link. I will check it.
Because this will help build a better community.
Thank you.