I have the following configuration for an admin menu item. I would like the menu item link to include a hash to directly go to the appropriate group.
<adminhtml>
<menu>
<theme module="theme" translate="title">
<title>Theme</title>
<sort_order>71</sort_order>
<children>
<configuration module="theme" translate="title">
<title>Configuration</title>
<sort_order>3</sort_order>
<action>adminhtml/system_config/edit/section/design</action>
</configuration>
</children>
</theme>
</menu>
<adminhtml>
E.g. I would like to have a link to
adminhtml/system_config/edit/section/design#theme
Is this possible using config.xml? If not, what would be the easiest way to do it?
The top menu URL’s are built using this code:
This means it is not possible to add additional parameters or a anchor to the generated URL.
Possible solutions would include rewriting the block class
adminhtml/page_menuand evaluating an additional tag, e.g. called<params>.Another possibility would be to use JavaScript to rewrite the URL for that link.