How to rename "All-products" in webshop erpnext

Hello All,

I have installed webshop app from frappe cloud. I want to rename “All-products” displayed in my webshop as “All-services” in top menu, header and breadcrumbs.

Please advice, where can I change these settings.

Thanks,
Deepak

1 Like

Please apply the script in the website settings:

const elementsToChange = document.querySelectorAll('span[itemprop="name"], div.mb-6');

elementsToChange.forEach(element => {
    console.log(`Current text: "${element.textContent.trim()}"`);
    if (element.textContent.trim() === "All Products") {
        element.textContent = "XYZ";
    }
});

Output:

1 Like

Thank you very much @NCP . This worked.