product page does not display Affirm installment payment information
-
Hello, why does the product page of woodmart theme not display Affirm installment payment information, resulting in a blank space between the price and attributes of the product page as shown in the screenshot? How can I make Affirm installment payment information display? Please help me
Attachments:
You must be
logged in to view attached files.
Hello,
Thank you so much for contacting our support center.
To better assist you, could you kindly test the functionality with default WordPress themes such as TwentyTwenty or WooCommerce Storefront? This will help us determine whether the issue stems from our theme or elsewhere.
Regards
I installed WooCommerce Storefront and it can indeed be displayed, as shown in the screenshot, so it may be the problem of your theme. Please help me fix it. Thank you
Attachments:
You must be
logged in to view attached files.
To fix this issue, try to add the following code snippet to the Custom CSS area in Theme Settings.
.cart .quantity {
font-size: revert-layer;
}
Hello, how do I hide the quantity selection box of a product? I added the original solution from your forum
.single-product .quantity{
display: none;
},
but it doesn’t work
Attachments:
You must be
logged in to view attached files.
It seems to be a conflict with some of the installed plugins. Try to use the following code snippet
.single-product div.quantity {
display: none!important;
}