2 music tpl pages
Jamroom Help
I would do it like this:
Copy music.tpl to 2 other files
* music1.tpl
* music2.tpl
or whatever you want to name them.
The in music.tpl delete the entire contents of that page and just put in an included determined by what quota the user is in.
{if $_user.profile_quota_id == "3"}
{* this is quota 3 *}
{jrCore_include template="music1.tpl"}
{else}
{* This is NOT quota 3 *}
{jrCore_include template="music2.tpl"}
{/if}
That code reads: "If the user looking at this page is in quota 3, then show them the music1.tpl page, otherwise show them the music2.tpl page."
