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.
that worked! Thank you!