Issue with cart button controls
-
After the latest update to woodmart 2.5 (it’s possible that the new theme update is blocking certain Woocommerce functionality):
– The Amazon pay “Cart login button display” is set to “Button” (in woocommerce) but is only showing as a “banner” on the woodmart cart page (see image).
– Woocommerce Amazon “Hide standard checkout button on cart page” is also not working
– Woocommerce Stripe “Enable Payment Request Buttons” also not working
– Also, needed to disable the “Terms and Conditions” link on the cart page because the new drop down text box that opened would display code (see image attached).
Attachments:
You must be
logged in to view attached files.
Hi,
Please, send us some screenshots of how each of these functions is working with default WordPress theme. Provide us your admin access so we can test them as well.
Thank you in advance
– Two images of the cart page and checkout page with the default Twenty Seventeen theme.
– It does say in the woocommerce display option that the button is for showing in the cart (not the checkout page).
– It is showing as an ugly button in Woodmart cart (as expected but ugly)
Attachments:
You must be
logged in to view attached files.
Try to add the following code snippet to the Custom CSS area in Theme Settings to fix this issue
div#pay_with_amazon {
float: none;
margin: 0;
margin-top: 15px;
display: block;
text-align: center;
}
div#pay_with_amazon img {
display: inline-block;
}
.wc-amazon-checkout-message > div {
position: relative;
top: auto;
bottom: auto;
left: auto;
right: auto;
padding-right: 30px;
z-index: auto;
cursor: default;
transform: none;
-webkit-transform: none;
animation: none;
-webkit-animation: none;
margin-bottom: 20px;
}
.wc-amazon-checkout-message > div.hidden-notice {
animation: none;
}
.wc-amazon-checkout-message > div:after {
content:none;
}
.wc-amazon-checkout-message #pay_with_amazon {
margin-right:15px;
}