my list of things ning migrators will mkiss
Ning To Jamroom
Cheers Ken. Yep, I did mid-interpret. Sure its possible.
The file your after is:
/skins/(YOUR SKIN)/profile_index.tpl
In the elastic skin it looks like this:
{* default index for profile *}
<div class="col9 last">
{jrCore_include module="jrAction" template="item_index.tpl"}
</div>
Which is just saying
"Show the latest actions on the main page".
But there is no reason you cant add a bit of each of whatever you want in there. You could add whatever you want. Perhaps:
* show 3 of the latest videos
* show 3 of the newest blog posts
* show 5 of the latest forum comments
.....
Whatever you want. Check out the jrCore_list function docs for info on how to get a list of whatever:
"{jrCore_list}"
http://www.jamroom.net/the-jamroom-network/documentation/development/89/jrcore-list
Then perhaps wrap it a check to make sure the module your after is active. eg: a list of this profiles videos:
{jrCore_list module="jrVideo" show="3" search="_profile_id = $_profile_id"}
I used the profile_id in there because you would only want to show videos belonging to this profile in that list.
updated by @michael: 12/29/14 09:23:54AM