How can i remove the vendor/provider from the product page?

Topic summary

A user running a Shopify store with the Crave theme wants to hide the vendor/provider text from product pages, as the field cannot be left empty when creating products.

Solution Provided:

  • Navigate to Shopify admin → Online Store → Themes → Actions → Edit code
  • Open the Assets folder and locate base.css, style.css, or theme.css
  • Add the following CSS at the bottom of the file:
p.product__text.text-caption-with-letter-spacing {
  display: none;
}

Current Status:

  • The CSS successfully removed the vendor name from the product page
  • A follow-up issue emerged: the vendor name still appears on the product listing page (below products)
  • The user is seeking an additional CSS solution to hide it from listing pages as well

The discussion remains open, awaiting a solution for the second location where the vendor name displays.

Summarized with AI on November 18. AI used: claude-sonnet-4-5-20250929.

Hello,

I would like to remove a text element in the front end of my store. I am using the Crave theme. On the product pages you can see the vendor. I would like to make this text element not visible. Unfortunately, there is no way to leave this field blank when I create a new product. It then always shows the message “There is 1 error with this product: Vendor must not be empty”.

How can I remove this text element? Is there maybe a way to do this in the code of the theme?
Thanks and best regards
Rudi Rühl

1 Like

Hi @Rudi_from_BLN ,

Would you mind to share your URL website? with password if its protected. Thanks!

Hi @Rudi_from_BLN
Can you kindly share your store link (with the password, if any) with us? We will check it and suggest you a solution if possible.

Hello @Made4uo-Ribe and hi @BSS-Commerce ,

the url of the shop: https://dufdd.com/

password: dewbeu

I am so sorry for the delayed answer. Hope this message find s you well. Best regards.

1 Like

Thank you for the information. No worries at all I check my notification all the time.

Try this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
  4. And Save.
p.product__text.caption-with-letter-spacing {
    display: none;
}

Result:

I hope it help.

Hi Ribe_Dagandarfa,

so far i understood most of it. But where exactly do i have to implement the code in the base.css part? I mean, you did say it has to go at the bottom but where exactly? The base.css exists. Thank you. I would be very thankful about antother quick advice regarding this.

1 Like

At the very bottom in the file. Dont forget to save. Thanks!

1 Like

Hey, this actually worked. Awesome, thank you for the help i really appreciate it.

1 Like

Hey @Made4uo-Ribe , at the moment the sellers name is displayed on two areas. 1.) On the product page. We talked about that element already .

2.) On the product listing page. So the sellers name is visible there, right below the product

Do you know a piece of code, that shows the sellers name on the product listing page, but not on the product page?

Maybe you know a solution. Thank you