Remove Profile Widget
Using Jamroom
Right, short answer: {jrCore_list}
Docs: "{jrCore_list}"
https://www.jamroom.net/the-jamroom-network/documentation/module-developer-guide/89/jrcore-list
--
Longer answer: There are 3 main sections to a jamroom system ( 4 if you consider Forms as a section ), those sections are
ACP - where the system is configured and modules set up
Profiles - your community members upload stuff to, like videos, activity, .....
Top section of the site - which includes the home page and any levels above profiles.
The
Top section of the site is the location users visit before getting into any specific profile. There can be as many pages as you like here. This is where Site Builder lives.
Site Builder is a GUI replacement/alternative for template files in the skin.
So you could use Site Builder to create pages, OR you could use the skins .tpl files to create pages, whichever you are more comfortable with.
eg: if you wanted another URL at
yoursite.com/information
You could go to that url as the admin user and Site Builder would ask "Do you want to create a page here?" and you could click that and create a page there via site builder.
The other way to get a page at that URL would be to add a new .tpl file to your skin
/skins/YOUR SKIN/information.tpl
Then add smarty/html code to that template. It would also create the same page there.
All depends on whether you want to build the pages via a web browser or and IDE.
So.....
If you want to display a list of things in a .tpl file you would use the listing function:
{jrCore_list module="?????"}
and that would display a list of whichever module you were after. In Site Builder there is a GUI to do it but its the same function.
Each of the "Latest Images" "Latest Activites" "Latest Discussions" will created using that {jrCore_list} or the Site Builder equivalent.
What you need to do is tweak that list to only include the quota that you are after. Its very versatile.
Take a look at the docs and ask if you have any questions.
--
If you take a look through the .tpl files in any skin you will find a TON of jrCore_list calls, eg:
{jrCore_list module="jrFlickr" profile_id=$_profile_id order_by="flickr_display_order numerical_asc" pagebreak="9" page=$_post.p pager=true}=
"Get me all the flicker items from profile id X order them with the oldest at the top and only show 9 before showing the pagination buttons"