Instead of creating a new thread, I thought I'd ask the following in here
Below is a copy and past of the Navigation template code for the members tab:
Code:
<!-- members -->
<xen:if is="{$tabs.members}">
<li class="navTab members {xen:if $tabs.members.selected, 'selected', 'Popup PopupControl PopupClosed'}">
<a href="{$tabs.members.href}" class="navLink">{$tabs.members.title}</a>
<a href="{$tabs.members.href}" class="SplitCtrl" rel="Menu"></a>
<div class="{xen:if {$tabs.members.selected}, 'tabLinks', 'Menu JsOnly tabMenu'}">
<div class="primaryContent menuHeader">
<h3>{$tabs.members.title}</h3>
<div class="muted">{xen:phrase quick_links}</div>
</div>
<ul class="secondaryContent blockLinksList">
<xen:hook name="navigation_tabs_members">
<li><a href="{xen:link members}">{xen:phrase registered_members}</a></li>
<li><a href="{xen:link online}">{xen:phrase current_visitors}</a></li>
<li><a href="{xen:link recent-activity}">{xen:phrase recent_activity}</a></li>
</xen:hook>
</ul>
</div>
</li>
</xen:if>
I want to make this tab accessible to members signed in only.
The believe the code I need to make this happen is:
Code:
<ul class="secondaryContent blockLinksList">
I've tried entering it into the above menu coding, but each attempt messes up the navigation
Can you tell me where to insert it pls, if it is even the correct code?
Also by doing this - will it effect search engines/seo results ?