Inserting button in mini cart which is loaded by a javascript code
I need to add button in mini cart just below the “Proceed to checkout” button. And the button is loaded using this javascript code: let sourceUrl = “{some_url/index.js}”; let scriptEle = document.createElement(“script”); scriptEle.setAttribute(“src”, sourceUrl); scriptEle.setAttribute(“type”, “module”); document.head.append(scriptEle); const buttonHolder =… Read More »Inserting button in mini cart which is loaded by a javascript code