In Admin system/configuration, in the left configuration panel it lists all the installed modules under the heading JOOMLART. I want to rename this heading to JOOMLART-MODS . Where can I do this?
1 answer
Hi maz001,
For example, you are having JM products extension and you want to display this module under the tab of JOOMLART-MODS you can try as following
Open the xml file app\code\local\JoomlArt\JmProducts\etc\system.xml you would see this xml defined
HTML Code:
<tabs> <joomlart translate="label" module="joomlart_jmproducts"> <label>JoomlArt</label> <sort_order>210</sort_order> </joomlart> </tabs>
change it to
HTML Code:
<tabs> <joomlart-mods translate="label" module="joomlart_jmproducts"> <label>JoomlArt-Mods</label> <sort_order>211</sort_order> </joomlart-mods> </tabs>
and under that tag you would see a tag like this
HTML Code:
<tab>joomlart</tab>
change it to
HTML Code:
<tab>joomlart-mods</tab>
That’s all, try it out and let me know if it helps