i wanna to edit this menu
Remove some of items from this menu
That for, you have to apply the listview js.
const docsUrl = "https://docs.erpnext.com/docs/";
frappe.help.help_links["List/Item"] = [
{
label: "Item",
url: docsUrl + "user/manual/en/item"
},
{
label: "Item Price",
url: docsUrl + "user/manual/en/item-price",
},
];
I removed the other option, and only two options were set.
Output:
2 Likes
can i change it From files like [help_links.js] ?
You can do it, but it’s easier to override it using the Client Script Doctype. There’s no need to modify the core files.
Solved Thank You