Home Forums WoodMart support forum Issue with cart button controls

Issue with cart button controls

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #60058

    YND
    Participant

    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.
    #60075

    Artem Temos
    Keymaster

    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

    #60091

    YND
    Participant

    – 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.
    #60156

    Artem Temos
    Keymaster

    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;
    }
Viewing 4 posts - 1 through 4 (of 4 total)