I am building the product navigation within the Hybris CMS, but the top level links won't work without being assigned to link to a page.
I only want the top level to reveal sub-nav items when clicked or hovered over.
Is there a way to achieve this?
Go into the Hybris WCMS, go to the 'Navigation' menu in the top,left of the wcms. Than just remove all targets that are assigned to the Navigation Nodes on the top level.
BR
Related
I have created some new categories and added my screen under that category, do we have an option to put these newly created categories and sitemap structure into customization project or else we need to recreate manually in each instance.
Group 1 and Group 2 are the new categories I have created and linked some screen under it.
The steps are:
Add the page to the classic SiteMap (SM200520)
Add classic sitemap entry to your customization project sitemap section and publish it
Add your page to modern UI
In customization project editor SiteMap section click 'Reload from Database'
The Reload from Database step should add the Modern UI sitemap entry.
You can check if the modern UI were packaged in the customization project items (Menu->File->Edit Items). Project items of type SiteMapNode that deploy to modern UI will have XML elements/attributes prefixed with 'MUI' (ModernUI).
if we uncheck entry screen checkbox for GI screens, we are able to get the entry form in both Title Menu and as well as in Menu Item also. But, as these default Acumatica GI screens are in Hidden folder, they are not exposing in Add Menu Item popup, so I moved to Help folder
A combination of John's answer and HB_ACUMATICA's answer seems to be the more complete answer. The steps in HB_ACUMATICA's answer works, except if the classic Sitemap item is contained in certain folders (in my case, Finance/AR/Configuration/Manage), then it won't show up on the modern UI in the list of items to choose. If I moved it to the Help folder, then I could choose it. Anyone know what the criteria is for including an item in the modern UI item choice list?
I am new at hybris6.x development.
I have created a new category with some products in power tools site but now I want to add that category and removing all the remaining categories in the site's category navigation bar.
How to do that? Any help will be appreciated.
Login /cmscockpit and select navigation tab from left top corner. Don't miss synchronization after modification.
The navigation bar is a cms component. It uses navigation nodes to display a navigation. Navigation nodes define a tree structure of navigation nodes. Each navigation node can have multiple link components. Link components can point to either a category, a product, a content page or a static URL. As mkysoft already said, there is a perspective in cmscockpit for defining this structure.
I added a new page in the main menu, e.g. Products. Now I want to add a subpage e.g. Sub Products below a Products page. I tried all possible options in the dashboard but it didn't work for me. Any ideas how to handle this?
Thanks.
here is a quick solution for this
Go to your dash board -->Gallery -->Modules
search for Hierarchical menu and install it
after installing then go to Configuration -->Features and enable it.
Go go to Navigation .give position like 2 for "Products" and 2.1 for "Sub products".
you will see Sub products appear under Products page.
As of Orchard CMS 1.5 this is supported by the core navigation module. Now you can simply drag and drop menu items under one another in the Admin -> Navigation view. You can then control level rendering under the widget settings for the menu by setting the "Start level" and "Levels to display" properties.
See release notes for further details.
The navigation documentation doesn't seem to be up to date though :(
Take a look at: http://orchard.codeplex.com/Thread/View.aspx?ThreadId=242327
The module to support this (along with many other modules) is available in Orchard's module gallery.
I'm attempting to structure multiple levels of site navigation by using the "Modify Navigation" setting (Site Actions > Site Settings > Modify Navigation)
But it seems the UI on that page doesn't let me create pages which are children of other pages, or create folders which are children of other folders.
Basically, I need to create not just first level/second level nesting, but also 3rd and 4th level nesting of pages
I understand the parameters to so in the default.master to control if other levels are displayed, but I can't figure out how to create such a structure in sharepoint?
Am I completely missing the point?
Out of the box, there are no "sub-pages" in navigation in MOSS. The nested navigation which Heather Solomon describes in this article is about how you create multi-level navigation of a known site/subsite hierarchy.
If you need pages and sub-pages in your navigation, you will have to create a custom editor which allows you to define the needed hierarchy, as well as you will have to create a custom "navigation provider" which knows how to navigate the hierarchy.
How can I customise the Site Actions menu to remove or rename 'standard' menu items? Where are the site actions menu items defined?
The site actions menu is defined in the Siteaction.xml in Template\layouts\editingMenu under the 12 hive. The following link shows how to manually remove items.
Customize Site Actions Menu
I have added options to the menu using features, but have never tried to hide OTB option in code. I would be interested in your results.
Good luck!
I was able to hide the menu item I wanted to hide by using ConfigMenu="Delete" in the relevant XML node of SiteActions.xml. e.g.
<ConsoleNode ConfigMenu="Delete" ChangedNodeID="wsaCreateSite" />
The valid values for ConfigMenu are documented at http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.publishing.webcontrols.configmenuoptions.aspx
I have used a control that runs javascript to hide the entire site actions menu for users of a certain privelege level.
That approach may be an option if you need to remove items for particular users.
It is not the worlds classiest approach however.