Remove vendor designation everywhere

Solved

Remove vendor designation everywhere

nadaemm
Visitor
2 0 0

Hello everyone,

 

is it possible to completely remove the vendor name from the shop frontend, especially from the source code, without affecting the functionality of the shop? Does anyone here have any experience? We are not only interested in hiding the vendor via CSS. It should no longer be visible in the entire source code.

 

Thank you 🙂

Accepted Solution (1)

MandasaTech
Shopify Partner
790 154 166

This is an accepted solution.

Hello @nadaemm 

Yes, it's absolutely possible to remove the vendor name entirely from the storefront and source code in Shopify without affecting your store’s core functionality.

To do this properly (not just hide it with CSS), you’ll need to:

Edit your theme files:

  1. Go to Online Store > Themes > Edit code.

  2. Search for {{ product.vendor }} — it’s typically found in:

    • product-card.liquid

    • product-template.liquid

    • collection-product-grid.liquid or similar snippet files

  3. Remove or comment out each instance of {{ product.vendor }}.

    {%- comment -%} {{ product.vendor }} {%- endcomment -%}

Notes:

  • This completely removes vendor output from the frontend HTML, so it won’t appear in the source code at all.

  • It won’t affect your admin-side vendor data or shop functionality.

  • Double-check mobile and collection pages too.

If you need help locating the exact files or safely removing the code, feel free to share your theme name or a preview link.

Let me know if you have any issues!

☞ Helpful or Question answered? Please Click Like & Mark it Accepted Solution
☞ Want to modify or custom changes on store for affordable price? Click on Contact button here
☞ Email at experts@mandasa.in
☞ Whatsapp at +918989609120 | Hire us at: Website Support Page
☞ Selling Shopify Fundamentals: Verified Skill Badge

View solution in original post

Replies 2 (2)

MandasaTech
Shopify Partner
790 154 166

This is an accepted solution.

Hello @nadaemm 

Yes, it's absolutely possible to remove the vendor name entirely from the storefront and source code in Shopify without affecting your store’s core functionality.

To do this properly (not just hide it with CSS), you’ll need to:

Edit your theme files:

  1. Go to Online Store > Themes > Edit code.

  2. Search for {{ product.vendor }} — it’s typically found in:

    • product-card.liquid

    • product-template.liquid

    • collection-product-grid.liquid or similar snippet files

  3. Remove or comment out each instance of {{ product.vendor }}.

    {%- comment -%} {{ product.vendor }} {%- endcomment -%}

Notes:

  • This completely removes vendor output from the frontend HTML, so it won’t appear in the source code at all.

  • It won’t affect your admin-side vendor data or shop functionality.

  • Double-check mobile and collection pages too.

If you need help locating the exact files or safely removing the code, feel free to share your theme name or a preview link.

Let me know if you have any issues!

☞ Helpful or Question answered? Please Click Like & Mark it Accepted Solution
☞ Want to modify or custom changes on store for affordable price? Click on Contact button here
☞ Email at experts@mandasa.in
☞ Whatsapp at +918989609120 | Hire us at: Website Support Page
☞ Selling Shopify Fundamentals: Verified Skill Badge
nadaemm
Visitor
2 0 0

Thank you a lot 🙂