Changing default image sizes in Home Page Galleries, Profiles
Ning To Jamroom
thechocolatelife:
Brian -
I was able to make the changes in skins/jrNingJa/jrGallery_index.tpl without any problems.
However, I don't see any similar mechanism inside "skins/jrNingja/jrProfile_index.tpl"
I did find a Col3 I could change to Col2 (and Col1 also works) in "skins/jrNingja/jrProfile_item_list.tpl" but there is no pagebreak call in this template. Where is that located? With thousands of members, I am sure one is needed.
In looking at the Image Galleries section on the home page I also don't see a way to change the sizes. However, I did notice what I think is a typo in the code. I am not sure how important it is but ....
defaul="All"} at the end of the clip below should probably be default="All"}. The HTML parser is stripping stuff so what follows is not an exact copy of what's in index.tpl.
{* BEGIN Latest Images Section *}
{if isset($_conf.jrNingja_latest_images) && $_conf.jrNingja_latest_images == 'on'}
{jrCore_lang skin=$_conf.jrCore_active_skin id="20" default="Latest"} {jrCore_lang module="jrGallery" id="25" default="Gallery"} {jrCore_lang skin=$_conf.jrCore_active_skin id="21" default="Images"} {jrCore_lang skin=$_conf.jrCore_active_skin id="30" defaul="All"}
The jrProfile_index.tpl uses the jrProfile_item_list.tpl by default, which is why you don't see a template parameter in the jrCore_list function in your jrProfile_index.tpl.
So you can change the page break in the jrProfile_index.tpl file, and the image size in the jrProfile_item_list.tpl for the Profile page.
I've also got the index.tpl typo fixed for the next release.
Hope this helps!