How to remove "Pay In 4 Interest Free Installments" In Reformation theme

Hello, I am looking to get rid of the “Pay in 4 interest-free installments…” on the product page. (Reformation theme)
Thank you.

1 Like

Hello @Kateryna1

  1. Log in to your Shopify admin panel and navigate to “Online Store” and then “Themes.”

  2. Find the Reformation theme and click on the “Actions” dropdown menu, then select “Edit code.” This will open the theme code editor.

  3. In the theme code editor, locate the “product-template.liquid” file under the “Sections” or “Snippets” directory. If it’s not present there, you can also look for it in the “Templates” directory.

  4. Open the “product-template.liquid” file and search for the code related to the “Pay in 4 interest-free installments” section. It might look something like this:

{% if product.compare_at_price_max > product.price %}
  
    

Pay in 4 interest-free installments of {{ product.price | divided_by: 4 | money }}

  

{% endif %}
  1. Remove the code block mentioned above entirely. It should look like this after removal:

  1. Save the changes you made to the file.

  2. Visit your Shopify store and navigate to a product page. The “Pay in 4 interest-free installments” section should no longer be visible.

By following these steps and removing the relevant code from the “product-template.liquid” file, you can remove the “Pay in 4 interest-free installments” section from the product page in the Reformation theme on Shopify.