How to expand watched threads by default

nguy3ndai

Member
Hi guys,

I'm trying to find a way to have the "watched threads" list expanded by default. Is there a setting somewhere?
 
By expand you mean show the full listing?

You can edit the navigation template and change this:
Code:
<xen:if is="{$visitor.user_id}"><li><a href="{xen:link 'watched/threads'}">{xen:phrase watched_threads}</a></li></xen:if>
to this:
Code:
<xen:if is="{$visitor.user_id}"><li><a href="{xen:link 'watched/threads/all'}">{xen:phrase watched_threads}</a></li></xen:if>
 
Top Bottom