Eliminate this section of text on my product page?

Topic summary

A user seeks to remove a subscription-related text section from their Shopify product page that displays “more payment options” and takes up excessive space.

Solutions Provided:

Three different CSS-based approaches were offered:

  • Option 1: Add buyer-consent { display: none !important; } to the end of base.css file
  • Option 2: Insert custom CSS targeting the buyer consent element in theme.liquid file above the </body> tag
  • Option 3: Add similar code before the </head> tag in theme.liquid

Implementation Path:

All solutions follow similar steps:

  1. Navigate to Online Store → Themes → Edit Code
  2. Locate either base.css or theme.liquid file
  3. Insert the provided CSS code at specified location
  4. Save changes

The issue appears resolved based on screenshot confirmations showing the text section successfully hidden from the product page.

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

Here’s a link to my product page: https://empiricalwater.com/products/empirical-water-glacial?selling_plan=3483042043

That section of text appears on all products with a subscription option. I need it removed completely, as it simply takes up way too much space.

Bonus, if you can un-sticky the part that says “more payment options”, just above it.

Hello @empiricalarby

Go to online store ---------> themes --------------> actions ------> edit code------->base.css
at the end of the file and save.

buyer-consent {
  display: none !important;
}

result

If this was helpful, hit the like button and accept the solution.
Thanks

1 Like

Hey @empiricalarby

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. Add the following code in the bottom of the file above tag


RESULT:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

1 Like

@empiricalarby ,

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

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid


Result:

1 Like