Remove the "Pay in 4 installments..." line of text

How do I remove the “Pay in 4 interest-free installments for orders over $50.00 with Shop Pay” and the “Learn More” link that follows it? I was able to use the below code when I was using the Dawn theme but it’s not working for my current theme (Broadcast).

https://jazeena.com/

These are the steps I’ve taken and no luck:

  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

<style>
shopify-payment-terms {
    display: none !important;
}
</style>
1 Like

Hi @Jazb

Dawn and broadcast may have a different selector for this pay interest. TRy this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. 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[id^="product-form-installment-template--"] {
    display: none;
}

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

Unfortunately, this didn’t work. I even tried:

form[id^=“product-form-installment-template–”] {
display: none; !important;
}

I tried the first option with no luck. I’m not sure how to do number 2? Where do I place that code? And for the 3rd option, I couldn’t find anything under snippets or sections that said “shopify-payment-terms”

Replace the code on this one, let see if it works.

Add to your theme.liquid file before the tag.


And Save.

Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!

1 Like

This worked! Thank you so much :slightly_smiling_face: