• Resolved denmBK

    (@denmbk)


    Our theme has a sticky Add To Cart in the footer.
    On iPhone/iPad the Apple Pay button is appearing there. Is there a way to remove it from that?

    Thanks!

Viewing 1 replies (of 1 total)
  • Plugin Author Clayton R

    (@mrclayton)

    Hello @denmbk,

    Thanks for contacting us. The reason the Apple Pay button is showing in the footer is because your sticky cart is triggering the same cart page action that the Stripe plugin listens to in order to render the Apple Pay button on the cart page.

    You would need to add some custom css to hide the button for all pages other than the cart page. Something like the following:

    
    body:not(.woocommerce-cart) .wc-stripe-cart-checkout-container{
        display: none !important;
    }
    

    Kind Regards,

Viewing 1 replies (of 1 total)

The topic ‘Apple Pay Logo on iPhone – Centered’ is closed to new replies.