Remove Shop Pay installments block from product page - Refresh Theme

Topic summary

Issue: User wants to remove the Shop Pay installments block displayed below the product price on their product page.

Solution Provided:

  • Navigate to Shopify admin → Online Store → Themes
  • Click Actions → Edit code on the active theme
  • Open the CSS file in the Assets folder (base.css, style.css, or theme.css)
  • Add the following CSS code at the bottom of the file:
#form-product-template--1517511130_main {
  display: none;
}
  • Save the changes

Status: Solution was marked as helpful by the original poster. The CSS targets the specific Shop Pay installments form element and hides it from display.

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

Hello, I am wondering how to remove the Shop pay installments underneath my product price. Thank you in advance for your assistance.

URL: wavewash.us

Hi @HenryA

Try this one.

  • From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  • Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  • In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
form#product-form-installment-template--21590715171131__main {
    display: none;
}

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!