We are here again, another day of total awesomeness where every bite counts.

document.addEventListener('DOMContentLoaded', function() { // Find all WooCommerce "Add to Cart" buttons const addToCartButtons = document.querySelectorAll('.woocommerce-LoopProduct-link'); // Loop through each button and change the text to "Book Now" addToCartButtons.forEach(function(button) { button.innerHTML = 'Book Now'; }); });