How to create a page where all member profiles can be seen and browsed?
Ning To Jamroom
The default template for the /profile URL is the modules/jrProfile/templates/index.tpl, inside that template is the search from and by default is setup to search the profile_name and profile_url fields.
{jrCore_include template="header.tpl"}
<div class="block">
<div class="title">
{jrSearch_module_form fields="profile_name,profile_url"}
<h1>{jrCore_lang module="jrProfile" id="26" default="Profiles"}</h1>
</div>
<div class="block_content">
{jrCore_list module="jrProfile" order_by="_item_id desc" pagebreak="10" page=$_post.p pager=true}
</div>
</div>
{jrCore_include template="footer.tpl"}
You could create a template in your skin named jrProfile_index.tpl and it will override the modules template... then you could add more fields to search... ie.
{jrSearch_module_form fields="profile_name,profile_url,profile_bio"}
https://www.jamroom.net/the-jamroom-network/documentation/modules/950/search
Hope this helps!