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

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!