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…
Thanks!
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…
Thanks!
Try adding this rule at the bottom of theme.scss
.shopify-installments{
display: none;
}
I did but it’s not working! maybe I did something wrong?
hmm, try adding !important in front
.shopify-installments {
display: none !important;
}
Try replacing the other code with this one:
shopify-payment-terms {
display: none !important;
}
Perfect thanks!
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!