Remove Shop Pay installment text from product page (Refresh theme)

Topic summary

A user seeks to remove the Shop Pay installment text (“Pay over time for orders over $35.00 with Shop Pay. Learn more.”) from their product page in the Refresh theme.

Initial Solutions Attempted:

  • Adding CSS code to theme.liquid file above </head> tag - unsuccessful
  • Adding generic CSS selector #shopify-installments to base.css - unsuccessful

Working Solution:
Add the following CSS code to the bottom of the base.css file:

form#product-form-installment-template--17941474672829__main {
    display: none !important;
}

This solution uses a more specific CSS selector targeting the exact form element. The user confirmed this approach successfully removed the Shop Pay installment text from their product page.

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

How can I remove the Shop Pay installment text under the product price? I’m using the Refresh theme.

“Pay over time for orders over $35.00 with Shop Pay. Learn more.”

URL: sheetandprompt.myshopify.com

Thanks!

1 Like

@iveray

Please follow these Steps:

  1. Go to Online Store
  2. Edit Code
  3. Please find theme.liquid file
  4. Add the following code above tag

If any problem Let me know!

Thanks!

Hi @vm-web – Thanks for the quick response! It didn’t work. Did I do something incorrectly?

@iveray

No you have placed code correctly i will check your site again and send the solution again please wait!

Thanks!

1 Like

@iveray

Please follow these Steps:

  1. Go to Online Store
  2. Edit Code
  3. Please find assets/base.css and add the code bottom of the file.
#shopify-installments {
    display: none !important;
}

Hi Iveray

  • You can try to follow this step
    Step 1: Go to Edit code
    Step 2: Find file base.css and add this code at the end of the file
form#product-form-installment-template--17941474672829__main {
    display: none !important;
}

Result:

Best,

Liz

1 Like

@vm-web It still didn’t work. Any other ideas?

@iveray

add this code base.css file

form#product-form-installment-template--17941474672829__main {
    display: none !important;
}
1 Like

@LizHoang This worked. Thank you!