Changing "Most Viewed Artists" content heading
Using Jamroom
Ah, thanks @brian for the assistance on this, it does help.
However, of note is that whilst in the process of doing the changes it occurred to me that if I changed the language string no 48 from 'Artists' to 'Profile' on the ACP->Skins->Language it would have a global effect and would change other content headings which are already appropriately stated and linked to that string (eg. 'Artists' on the artists.tpl).
So armed with your note, what I ended up doing is changed the following code line in the index.tpl
from:
{jrCore_lang skin=$_conf.jrCore_active_skin id="46" default="most"} {jrCore_lang skin=$_conf.jrCore_active_skin id="47" default="viewed"} {jrCore_lang skin=$_conf.jrCore_active_skin id="48" default="artists"}
to:
{jrCore_lang skin=$_conf.jrCore_active_skin id="46" default="most"} {jrCore_lang skin=$_conf.jrCore_active_skin id="47" default="viewed"} {jrCore_lang skin=$_conf.jrCore_active_skin id="12" default="profiles"}
Did a reset of caches and it worked as desired.
Thanks once again for the help, much appreciated.