Hi, I just need to add one more link under Useful Links on the Your Membership Information page. People are signing up and get to that page having completed signup and they need a link back to the front page of my site. So I guess I need a line in my templates/member.html Problem is I don't know how to code at all. All I need is 'mysitename' linked under the 'Logout' link. Anyone know what line of code to put in?
<table><tr><td> {foreach from=$left_member_links item=t key=u} <li> <a href="{$u|escape}">{$t}</a></li> {/foreach} </td></tr></table> change to: <table><tr><td> <li> <a href="/">Home</a></li> {foreach from=$left_member_links item=t key=u} <li> <a href="{$u|escape}">{$t}</a></li> {/foreach} </td></tr></table> David