solved Changing "Most Viewed Artists" content heading

alt=
MisterG
@misterg
11 years ago
7 posts
For some odd reason, the content box on our Home page under the 'Most Viewed Artists' heading is displaying all profiles regardless of whether they are assigned to the designated 'Artists' quota (which is '1') or not.

We have decided to leave the displayed content as it is but change the content box heading to a more appropriate heading of "Most Viewed Profile".

We tried doing this by changing 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="48" default="profile"}

But this has not done the trick. We reset the cache done systems integrity checks to no avail.

Any help in resolving this would be greatly appreciated.

Module versions in use:
- Core: 5.1.27
- Skin: Flashback 1.1.7 (Cloned))

Thanks in anticipation.
updated by @misterg: 05/08/16 03:52:03PM
brian
@brian
11 years ago
10,149 posts
The "default" is only used in cases where the language string is not set - what you want to do is go into the ACP -> Skins and click on the "language" tab for your active skin - that's where you want to modify your language strings.

Once modified, reset your caches and you should be set.

Hope this helps!


--
Brian Johnson
Founder and Lead Developer - Jamroom
https://www.jamroom.net
alt=
MisterG
@misterg
11 years ago
7 posts
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.
brian
@brian
11 years ago
10,149 posts
Yep - that's perfect. You can always change the "id" to a different one if it works for you, or even remove the jrCore_lang function completely if you just need to "hard code" the word.

Thanks!


--
Brian Johnson
Founder and Lead Developer - Jamroom
https://www.jamroom.net

Tags