Adding a menu the main menu of Projam5 Light
Design and Skin Customization
If you need to find the ID to a language string, and your skins/YOURSKIN/lang/en-US.php file doesn't have it, you can open the modules/MODULENAME/lang/en-US.php file to get the ID... this is from the skins/jrNingja/lang/en-US.php, the ID is in bold text.
$lang[47] = 'Forum';
so the jrCore_lang function would be:
{jrCore_lang skin=$_conf.jrCore_active_skin id="47" default="Forum"}
If your skins lang file does not have the text your looking for, you can either add it to your lang file or see if the module has the text.
From the jrForum modules lang file:
$lang[36] = 'Forum';
so the jrCore_lang function would be:
{jrCore_lang module="jrForum" id="36" default="Forum"}
Hope this helps!
updated by @douglas: 03/31/15 03:23:55AM