Your phpBB Type: Standard phpBB3
MODs installed: No
Your knowledge: Basic Knowledge
Boardlink: http://pwndclan.jamesdwilson.net
What have you done before the problem was there?
What have you already tryed to solve the problem?
Tried editing breadcrumbs.html. When I created link: <a href="portal.php">Portal</a>, it worked but users were logged out when they clicked. I tried adding <a href="{U_PORTAL}">{L_PORTAL}</a>, but the link just directs to the index page.
Description and Message
I want to add a perma link to the breadcrumbs bar that points to the portal page. I'm having troubles getting it to work correctly. Here's my breadcrumbs.html file:
Code: Select all
<table class="tablebg breadcrumb" width="100%" cellspacing="{$CA_SPACING}" cellpadding="0" style="margin-top: 5px;">
<tr>
<td class="row1">
<p class="breadcrumbs"><a href="{U_PORTAL}">{L_PORTAL}</a> || <a href="{U_INDEX}">{L_INDEX}</a><!-- BEGIN navlinks --> » <a href="{navlinks.U_VIEW_FORUM}">{navlinks.FORUM_NAME}</a><!-- END navlinks --></p>
<p class="datetime">{S_TIMEZONE}</p>
</td>
</tr>
</table>