A - Z Artist / Profiles page - Audio Pro
Design and Skin Customization
Make a template in your cloned skin:
/skins/(YOUR-SKIN)/archives.tpl
make it by copying the header and footer structure of the index.tpl template to get the upper and lower sections.
something like:
{jrCore_include template="header.tpl"}
{jrCore_include template="footer.tpl"}
Then put your jrCore_list call in the middle.
It will be something like I outlined above
This template is a bare minimum type structure to just get a jrCore_list call of some profiles, no searching, just anything
{jrCore_include template="header.tpl"}
{jrCore_list module="jrProfile"}
{jrCore_include template="footer.tpl"}
From there customize the jrCore_list. This jrCore_list call gets "any profile beginning with the letter 'a' "
{jrCore_include template="header.tpl"}
{jrCore_list module="jrProfile" search1="profile_name like a%"}
{jrCore_include template="footer.tpl"}
If that is coming out correctly, then adjust it to receive the variable:
{jrCore_include template="header.tpl"}
{jrCore_list module="jrProfile" search1="profile_name like `$_post['letter']`%"}
{jrCore_include template="footer.tpl"}
Then call the url:
yoursite.com/archives/letter=a
and see if the same thing comes out, if it does, try the other letters to
yoursite.com/archives/letter=a
yoursite.com/archives/letter=b
yoursite.com/archives/letter=c
yoursite.com/archives/letter=d
.......
If they all work, then setup some navigation
{jrCore_include template="header.tpl"}
<a href="{$jamroom_url}/archives/letter=a">a</a>
<a href="{$jamroom_url}/archives/letter=b">b</a>
<a href="{$jamroom_url}/archives/letter=c">c</a>
<a href="{$jamroom_url}/archives/letter=d">d</a>
<a href="{$jamroom_url}/archives/letter=e">e</a>
.....
{jrCore_list module="jrProfile" search1="profile_name like `$_post['letter']`%"}
{jrCore_include template="footer.tpl"}
Running with development mode on will mean you dont need to reset your caches each time:
ACP -> MODULES -> DEVELOPER -> DEVELOPER TOOLS -> GLOBAL CONFIG -> Run in developer mode