Removing Shop pay installments message on home page featured product

Topic summary

A user sought to remove the Shop Pay installments message from their homepage featured product and all product pages on their Crave theme store.

Initial Solutions Attempted:

  • Custom CSS targeting .m-0 class (unsuccessful)
  • CSS code in theme.liquid targeting shopify-payment-terms element (unsuccessful)
  • CSS targeting specific product form ID (unsuccessful)

Successful Resolution:
The issue was resolved by editing the featured-product.liquid file and removing the code {{ form | payment_terms }}. This Liquid template code was directly rendering the payment terms message.

Key Insight:
While multiple CSS-based solutions were suggested, the root cause required a template-level fix rather than styling changes. One responder also suggested checking the theme customizer for a Shop Pay installments block that could be toggled off, though this approach wasn’t confirmed as the final solution.

The discussion demonstrates that payment messaging can be controlled either through theme customization settings, CSS hiding, or direct template editing, with template modification proving most effective in this case.

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

Hi,

I’d like to remove the Shop Pay installments message on a featured product on my site homepage, and across all product pages. I’ve tried adding a few code snippets and none of them are working. The theme is Crave. Thank you!

Hi @iw2

Can you share with me yur store URL to check further?

Thank you

https://molimojewelry.com/collections/studio-molimo

Hi @iw2

You can follow this instruction:

  1. Go to Shopify > Theme > Customize

  2. Copy and paste this code on Theme settings > Custom CSS section

.m-0 {
    margin: 0px;
    display: none !important;
}

result:

I added the code, but the text still appears.

Hi @iw2

You can try this way instead:

  1. Go to Online Store > Edit Code
    2.Please find theme.liquid file > Add the following code above tag
<style>
shopify-payment-terms {
    display: none !important;
}
</style>

I added this too but unfortunately it’s still not working :disappointed_face:

Hello @iw2
Go to online store ----> themes ----> actions ----> edit code ----> base.css
add this code at the end of the file and save.

#product_form_8342288793756 {
display: none !important;
}

result

Thanks

Hello @iw2 ,

When you open the product in the customize area, there should be a block in the main product section which renders this text. Please check all the blocks added to this section and remove/hide the Shop pay installments block, if you find it.

I hope this is helpful.

Follow This Steps

1.Go to Edit tab
2.Find This file: featured-product.liquid

3.Remove Following code: {{ form | payment_terms }}

4.Click on save

LIke And Accept Solution!

that worked! Thank you!