Scenario:
"I would like to add the link to my "Main Index" but there is no way I'm able to find the name of the tag displaying such a url!"
Solution:
Put the following code in your skin somewhere:
<%if(loggedin)%> <a href="index.php?memberid=<%member(yourid)%>">Your profile</a> <%endif%>
Original forum thread:
http://forum.nucleuscms.org/viewtopic.php?t=11078
Walkthrough:
In this example, we are going to put our profile link in the sidebar of the default skin, just underneath the admin area link that is visible when the user is logged in.



<!-- admin link, only visible if logged in --> <%if(loggedin)%> <dd><a href="<%adminurl%>" title="Admin Area">Admin</a></dd> <%endif%> </dl> </div>
<dd><a href="index.php?memberid=<%member(yourid)%>" title="<%member(yourname)%>'s Profile"><%member(yourname)%>'s Profile</a></dd>

