How can i hide a specific vendor on product page?

Hello, i have many branded items and they have their own vendor/brand. I activated in the theme settings to show the brand/vendor. But i want to hide one specific vendor. Can anyone tell how can i do this?

Thanks!

1 Like

@x264

Sorry you are facing this issue, it would be my pleasure to help you.

Welcome to the Shopify community! :blush:
Thanks for your good question.

Please share your site URL,
I will check out the issue and provide you a solution here.

Hi there @x264 ,

You’ll need to add an “If” condition/rule in the code where it displays the vendor name

e.g

if ({% vendor.name == "Specific Vendor Name" %}) {
// Don't display
}
else {
//display the name
}

For this you’ll need some knowledge of Liquid (Shopify backend programming language)

1 Like