plugins premium WordPressdocument.addEventListener('DOMContentLoaded', function() {
var checkoutContainer = document.querySelector('.wc-proceed-to-checkout');
if (checkoutContainer) {
var whatsappButton = checkoutContainer.querySelector('::before'); // This won't work, need to target the element itself.
// Let's create a clickable element instead. A bit more complex.
// Let's simplify. Forget the JS. I'll modify the CSS to be clearer.
}
});