Adding a clickable link on home page
Design and Skin Customization
Your link would look something like this:
{if jrUser_is_logged_in()}
<li><a href="{$jamroom_url}/packages"{if isset($selected) && $selected == 'packages'} style="color: {$active_color};"{/if}>Purchasable Packages</a></li>
{/if}
You would then start by creating a template named packages.tpl so your new link has some where to land. Note that you can change the name of the template to whatever you want it to be, just make sure to change the link in the header.tpl too. In that template, to get it to look like the rest of MediaPro, you'll want to start with this:
{assign var="selected" value="packages"}
{assign var="no_inner_div" value="true"}
{jrCore_page_title title=$page_title}
{jrCore_include template="header.tpl"}
<div class="container">
<div class="row">
<div class="col12 last">
<div class="title">
<h1>Packages</h1>
</div>
<div class="body_1">
YOUR jrCore_list FUNCTION GOES HERE.
</div>
</div>
</div>
</div>
{jrCore_include template="footer.tpl"}
You can checkout this doc to see how the jrCore_list function is used.
https://www.jamroom.net/the-jamroom-network/documentation/howto/1080/howto-using-jrcore-list-in-a-template-step-by-step
Hope this helps,
Douglas