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
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
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: