Adding an RSS feed from my own site into an activity page on my own site
Design and Skin Customization
Rss is more for bringing feeds in from other sites. Use jrCore_list for displaying things from your site.
jrCore_list is the first thing to learn:
https://www.jamroom.net/the-jamroom-network/documentation/development/89/jrcore-list
It's not complicated although it can do a lot once you start using search parameters and custom templates with it.
This will list all the audio files on the site:
{jrCore_list module="jrAudio"}
This will list all the audio files from the profile:
{jrCore_list module="jrAudio" profile_id=$_profile_id}
This will list up to 10 audio files from the profile:
{jrCore_list module="jrAudio" profile_id=$_profile_id limit=10}
To get that list to appear on your site you need to add the code to a template, which you can do under the templates tab in your skin or each module depending on which template you wnat to add it to.
It will help if you spend a little time to learn some basic css, html and jQuery. But even without that you can customize a lot.
Try something out, see what results you get, then try it out again and get better results. If you break something you can just restore the template (button in the ACP) and try it again.