Stefan Leemans Thank you so much for your help with the code 🙏 It worked perfectly on the cart page. However, when I tried applying the same change to the checkout page button, unfortunately it didn’t work. I’m not sure what I did wrong — do you have any idea what might be causing it?
marianf Ye it's a different class on the checkout page. I'm using a custom template for checkout, so I'm not sure if we have the same class setup, but could you try this (I also lowered the z-index, because it was causing the button to be over the fly out panels) .wc-proceed-to-checkout, .form-row.place-order { position: fixed; bottom: 0; left: 0; width: 100%; z-index: 251; background: white; padding: 15px 10px; box-shadow: 0px -1px 10px rgba(0, 0, 0, 0.1); }
Stefan Leemans Thank you so much again — I really appreciate you taking the time to look into it. I’ll give this a try as soon as I get a chance and let you know how it goes!
marianf you're welcome :)
This is default behaviour when using the blocks cart. Hopefully Xtemos will enhance support for this soon.
You can try something like this (add media-query for tablet/mobile only) .wc-proceed-to-checkout { position: fixed; bottom: 0; width: 100%; left: 0px; z-index: 999999; background: white; padding: 15px 10px; box-shadow: 0px -1px 10px rgba(0, 0, 0, 0.1); }