Removing Shop pay installments message on home page featured product

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!