Laali

[woosw_list]

Shopping cart close
document.addEventListener("DOMContentLoaded", function () { const observer = new MutationObserver(function () { const dashboardLink = document.querySelector(".account-dropdown a[href$='my-account/']"); const isVendor = document.body.textContent.includes("Vendor Dashboard"); if (dashboardLink && isVendor) { dashboardLink.setAttribute("href", "/dashboard/"); dashboardLink.textContent = "Vendor Dashboard"; observer.disconnect(); } }); observer.observe(document.body, { childList: true, subtree: true }); });