Hide some items in a sub-menu
Hi,
I would like to hide only the Google items in the 'New' context sub-menu but can't seem to figure out how to reference the sub-menu items. I would appreciate your assistance if this could be achieved.
Many thanks in advance

Currently only top level menu items are customized, I'll try to target other levels later.
Thank you, that will be great.
Hi @wolive-20,
Modification of sub-items is supported by this command
static
{
item(find='google' in='/new' vis=remove)
item(find='rar|cab' in='/7-zip/open archive' vis=disabled)
}
You can use this feature in the next update
Hi @moudey, thank you so much for this! Is it possible to move sub-items to the main menu? For example, moving '/7-zip/open archive' to the main menu. Thanks again.
Hi @zilpe This feature will be added later
@wolive-20 Please test this build
add this code to static items
static
{
item(find='google' in='/new' vis=remove)
item(find='rar|cab' in='/7-zip/open archive' vis=disabled)
}
Hi @moudey - I've downloaded the test build and added the static entries below to the shell.nss file. Unfortunately it does not work.
static { item(find='Shortcut' in='/new' vis=remove) item(find='Google Docs' in='/new' vis=disabled) item(find='Google Sheets' in='/new' vis=remove) }

@wolive-20 Sorry try this
Hi @moudey - The latest version works perfectly, thank you very much.
static { item(find='Shortcut' in='/new' vis=disabled) item(find='Google*' in='/new' vis=remove) }
