Advise on Creating a Custom Page
Using Jamroom
Create a jrAudio_index.tpl and add this code:
{jrCore_module_url module="jrAudio" assign="murl"}
{jrCore_include template="header.tpl"}
<div class="block">
<div class="title">
{jrSearch_module_form fields="audio_title,audio_album,audio_genre"}
<h1>{jrCore_lang module="jrAudio" id=41 default="Audio"}</h1>
</div>
<div class="block_content">
{if isset($_post.option) && strlen($_post.option) > 0}
{jrCore_list module="jrAudio" order_by="_item_id numerical_desc" search1="audio_category = `$_post.option`" pagebreak=10 page=$_post.p pager=true}
{else}
{jrCore_list module="jrAudio" order_by="_item_id numerical_desc" pagebreak=10 page=$_post.p pager=true}
{/if}
</div>
</div>
{jrCore_include template="footer.tpl"}
upload it to your active skin directory and then create the URL's that Paul posted and that should work.
Here is the jrVideo_index.tpl code:
{jrCore_module_url module="jrVideo" assign="murl"}
{jrCore_include template="header.tpl"}
<div class="block">
<div class="title">
{jrSearch_module_form fields="video_title,video_description"}
<h1>{jrCore_lang module="jrVideo" id=39 default="Videos"}</h1>
</div>
<div class="block_content">
{if isset($_post.option) && strlen($_post.option) > 0}
{jrCore_list module="jrVideo" order_by="_created numerical_desc" search1="video_category = `$_post.option`" pagebreak=10 page=$_post.p pager=true}
{else}
{jrCore_list module="jrVideo" order_by="_created numerical_desc" pagebreak=10 page=$_post.p pager=true}
{/if}
</div>
</div>
{jrCore_include template="footer.tpl"}
Hope this helps!