Subscription Profile Access
Using Jamroom
All it would be is three lines of code in the skin profile_header template.
Let me know when and I’ll tell you how to do it

{if isset($_items)}
{foreach $_items as $module => $entry}
{if $entry.active == '1'}
<a href="{$entry.target}" class="t{$module}"><div class="profile_menu_entry profile_menu_entry_active">{$entry.label}</div></a>
{else}
<a href="{$entry.target}" class="t{$module}"><div class="profile_menu_entry">{$entry.label}</div></a>
{/if}
{/foreach}
{/if}
{if $_post.module == 'myCustomModule'}
<a href="LINK TO MY MODULE PAGE"><div class="profile_menu_entry profile_menu_entry_active">MY MODULE TAB TEXT</div></a>
{else}
<a href="LINK TO MY MODULE PAGE"><div class="profile_menu_entry">MY MODULE TAB TEXT</div></a>
{/if}