Just to make things even easier for the members (something that is needed on my boards, you can add a link to their profile on the main usercp page). This is what suited me best, but I thought it might be wortwhile posting it here so some of you guys could possibly make use of it.
Anyway, it's just a simple template edit. Go to the template USERCP. Then do the following.
Find
Code:
<!-- ############## SUBSCRIBED THREADS ############## -->
ABOVE add
Code:
<!-- Start modrewrite usercp add - by ed -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tbody id="collapseobj_usercp_proflink" style="$vbcollapse[collapseobj_usercp_proflink]">
<tr>
<td class="alt1"><strong>Link to profile: </strong><a href="$vboptions[bburl]/$bbuserinfo[username]">$vboptions[bburl]/$bbuserinfo[username]</a></td>
</tr>
</tbody>
</table>
<br />
<!-- End modrewrite usercp add - by ed -->
Note - edited it to add the $vboptions[bburl] suggested by nexialys. Thanks.
Also, it should be noted that the bit of code there only works when you do the username mod_rewrite. If you did the userid mod_rewrite then replace $bbuserinfo[username] with $bbuserinfo[userid]. I haven't tested that, but I'm pretty sure it should work.