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!
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:
.m-0 class (unsuccessful)shopify-payment-terms element (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.
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
You can follow this instruction:
Go to Shopify > Theme > Customize
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:
<style>
shopify-payment-terms {
display: none !important;
}
</style>
I added this too but unfortunately it’s still not working ![]()
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!