/public/checkout/hide-000-line-items-including-order-received-my-account.js
/******************************* CHECKOUT – ORDER RECEIVED – MY ACCOUNT – CHANGE BILLING FIELDS FUNCTIONS *******************************/ var bdiElems = Array.from(document.querySelectorAll(‘bdi’)); bdiElems.forEach(function(elem) { if (elem.textContent.includes(‘0.00’)) { elem.style.display = “none” } });Continue reading