resources sub nav links

davs

Member
Is there an easy way to remove some sub nav links like " watched categories" , "watched resources", "latest reviews"?

I figured out a way for "most active authors" by removing some code but the similar didn't work for "latest reviews" and as I am not a coder, I don't want to mess around too much.

For the forums page, I got some add-ons to remove some of those sub links but I haven't seen any for resources.
 
I see this, if I want say "watched resources" gone what should I do?

<ul class="secondaryContent blockLinksList">
<xen:if is="{$canSearch}"><li><a href="{xen:link search, '', 'type=resource_update'}">{xen:phrase search_resources}</a></li></xen:if>
<li><a href="{xen:link resources/authors}">{xen:phrase most_active_authors}</a></li>
<li><a href="{xen:link resources/reviews}">{xen:phrase latest_reviews}</a></li>
<xen:if is="{$visitor.user_id} && {$visitor.resource_count}"><li><a href="{xen:link resources/authors, $visitor}">{xen:phrase your_resources}</a></li></xen:if>
<xen:if is="{$visitor.user_id}"><li><a href="{xen:link resources/watched-categories}">{xen:phrase watched_categories}</a></li></xen:if>
<xen:if is="{$visitor.user_id}"><li><a href="{xen:link resources/watched}">{xen:phrase watched_resources}</a></li></xen:if>
</ul>
 
This is whats left now

<ul class="secondaryContent blockLinksList">
<xen:if is="{$canSearch}"><li><a href="{xen:link search, '', 'type=resource_update'}">{xen:phrase search_resources}</a></li></xen:if>


<xen:if is="{$visitor.user_id} && {$visitor.resource_count}"><li><a href="{xen:link resources/authors, $visitor}">{xen:phrase your_resources}</a></li></xen:if>

</ul>
 
Top Bottom