How can I remove 'Powered by Yotpo' from product pages?

Topic summary

Removing the “Powered by Yotpo” branding on product pages. Yotpo is a reviews app; the badge shows vendor branding.

Proposed fix:

  • Add CSS in the theme’s asset stylesheet to hide Yotpo’s logo elements:
    .yotpo-logo-title, .yotpo-icon-yotpo-logo { display: none !important; }
  • File location noted as Assets (styles.css.liquid).

Implementation issues:

  • Some themes don’t have styles.css.liquid (e.g., Venture) or styles.scss.liquid; users were unsure which file to edit.
  • A Shopify 2.0 user asked how to remove it in 2.0, with no guidance provided.

Side effects reported:

  • After applying the CSS, spacing/padding between product recommendations and reviews disappeared; no replacement spacing was added.

Outcomes and status:

  • The CSS snippet works for some, but file locations vary by theme, and spacing issues arise.
  • No confirmed method shared for themes lacking the noted stylesheet or for Shopify 2.0.
  • Discussion remains open with unresolved questions on proper file targets and preserving layout spacing.
Summarized with AI on February 13. AI used: gpt-5.

We are launching a new store later today and I cannot figure out how to remove the “Powered by Yotpo” flag on our product pages. We are using the Turbo theme. Does anyone know how to do this? I tried following the same steps that I’ve seen on how to remove Powered by Shopify but unfortunately, that did not get me very far.

Thanks in advance!

1 Like

Hey brother, pretty simple.

edit the code of your theme, in styles.css.liquid just add the following line:

.yotpo-logo-title, .yotpo-icon-yotpo-logo   {
 display : none !important; 
}
2 Likes

I can’t seem to find a styles.css.liquid in the code, do you mean theme.liquid in the layout section? Where do I add it in that section?

Thanks in advance for your help.

The styles.css tab is in the asset section.

2 Likes

Hi. I used your provided code and it worked. However I now have no padding/space in between my product recommendations and the reviews. So your code removed the “Powered by Yotpo” but it didn’t replace it with a space. Thoughts? Thanks!

i am using venture theme and i do not see any styles.scss.liquid in any folder.

Hello, Do you know how to remove in 2.0 theme?

Thank you,

RJ