Hide Vendors Card on My Own Products

Topic summary

Goal: Hide the vendor info card on the store owner’s own products, while keeping it visible on third‑party vendor products in a Shopify multi‑vendor rental marketplace (vendors use the Multi Vendor Marketplace app; owner’s products do not).

Attempted fix: A CSS snippet was suggested to add in theme.liquid before :

  • .bls__template-main-product .card { display: none !important; }

Outcome: This hides the card on all product pages, including vendor products, which is not desired.

Current guidance: The responder notes both the owner and vendor cards share the same CSS classes, so a unique class or identifier must be added to distinguish the owner’s product cards, then target that in CSS to hide only those.

Assets: Screenshots are provided showing the vendor card on a vendor product and the pink card box on the owner’s product, which clarifies the UI element in question.

Status: Unresolved/ongoing. Next step required: introduce a differentiating class or condition for owner products and update CSS (or theme logic) accordingly; no specific implementation details yet.

Summarized with AI on December 21. AI used: gpt-5.

Hi,

I run a multi vendor dress rental marketplace, but I also rent my own products that don’t go through the ‘Multi Vendor Marketplace App’.

I have a vendor card that shows on each product, but for my own products I don’t want the card to be shown.

My website is momentarywardrobe.com.au

A vendors product which shows the vendor card correctly.

My own product. Which I want the pink box to be removed.

Hello @Courtneybrb

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

.bls__template-main-product .card { display: none !important; }

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

It hides it on all products. I still need it to be visible on my vendors products.

You have both same classes in your card, so to hide them you will have to add class to them.