How can I remove "pay in 4 installments" in Supply theme?

How can I remove “pay in 4 instalments” in Supply theme and move the Quantity UP to be right below the variant sizes?

The description is way too far at the bottom away from the photos…

www.egyptiful.com

Thanks!

Try adding this rule at the bottom of theme.scss

.shopify-installments{
display: none;
}
1 Like

@Nick_Marketing

I did but it’s not working! maybe I did something wrong?

https://egyptiful.com/products/short-sleeve-unisex-t-shirt

hmm, try adding !important in front

.shopify-installments {
display: none !important;
}
1 Like

@Nick_Marketing

Still there!

Try replacing the other code with this one:

shopify-payment-terms {
  display: none !important;
}
2 Likes

Perfect thanks!

1 Like

After searching through multiple threads, this last code is the ONLY code that worked for the Dawn Theme 10.0.0, under base.css

Thank you so much!