How to move 'Recent Activity' to Forums tab?

glorify

Well-known member
I'd like to move the Recent Activity link from the Members tab to the Forums tab just to the left of the What's New link. Does this make sense to anyone else? Has anyone done it that could throw out a quick edit code? I have not dug around in the templates in that much detail yet.
 
Moved from Tips, Tricks and Guides to General Support.

Look for:
Code:
<li><a href="{xen:link recent-activity}">{xen:phrase recent_activity}</a></li>

Move it to before:
Code:
<li><a href="{xen:link 'find-new/threads'}">{xen:phrase whats_new}</a></li>

Like so:
Code:
<li><a href="{xen:link recent-activity}">{xen:phrase recent_activity}</a></li>
<li><a href="{xen:link 'find-new/threads'}">{xen:phrase whats_new}</a></li>
 
Moved from Tips, Tricks and Guides to General Support.

Look for:
Code:
<li><a href="{xen:link recent-activity}">{xen:phrase recent_activity}</a></li>

Move it to before:
Code:
<li><a href="{xen:link 'find-new/threads'}">{xen:phrase whats_new}</a></li>

Like so:
Code:
<li><a href="{xen:link recent-activity}">{xen:phrase recent_activity}</a></li>
<li><a href="{xen:link 'find-new/threads'}">{xen:phrase whats_new}</a></li>
Thanks, I'll see what I can do. :)

I originally posted in the Tips and Tricks thinking it would be a tip and trick ;)
 
You only post in tips and tricks if you have a tip or trick which others may find useful.

Asking how to do a template edit is just a general question.
 
would I also need to copy the Xen-IF statement in order to make this work properly?

Code:
<xen:if is="{$xenOptions.enableNewsFeed}"><li><a href="{xen:link recent-activity}">{xen:phrase recent_activity}</a></li></xen:if>

Many thanks!
 
Top Bottom