Page Break Not Functioning
Installation and Configuration
^^ do what
@ultrajam said for the page break issue.
You've got a couple of concepts mixed up in that code, clarifying:
{jrCore_list module="jrAudio" template="jrAudio_item_list.tpl" .....}
What you're asking for there is an audio list, which is fine, but you're specifying the template of the default over-ride.
If you JUST put this
{jrCore_list module="jrAudio"}The template used for layout would be the default template which is:
/modules/jrAudio/templates/item_list.tpl
If you want to override item_list.tpl for the audio file, you copy that file to your skin at:
/skins/( YOUR SKIN )/jrAudio_item_list.tpl
and it will automatically override the default template with your skins template.
So in the code above, you dont need to have that template="" in there at all.
The time when you would want to use that tempate="" is when you don't want to override ALL the lists everywhere, but just want some different layout for one particular list, then you'd put in a template to use:
{jrCore_list module="jrAudio" template="my_special_audio_list.tpl" .....}
Just pointing that out.