XF 1.5 Add Link To Forum Tab

Ariel Schnee

Active member
How can I add a link to the forum tab? I know it's possible since so many addons add their own stuff under there. So I must be able to too.

What I mean by 'link' is that list that appears when you hover over the 'Forum' tab. What I want to do is add one to it called 'All' that, when clicked, will lead to a specific url. How do I do that right now?

Let me know. Thanks!:) Have a good night/day now!:)
 
There is only one template called “navigation “

Oh. It was the one with 'Navigation' by itself. Why didn't you say so. There are many with 'navigation' somewhere in them there. I didn't know which one you were talking about.

I went to ACP > Appearance > Styles > FP Default Black Background >

FP Default Black Background: Templates

.

Ok. I used your link https://xenforo.com/community/resources/add-a-recent-posts-link-to-the-navigation-bar.2141/ . Then I searched for
Code:
'watched/threads'
until I found it.

Then I made this adjustment.

I changed

Code:
							<li><a href="{xen:link 'watched/forums'}">{xen:phrase watched_forums}</a></li>
							<li><a href="{xen:link 'watched/threads'}">{xen:phrase watched_threads}</a></li>
						</xen:if>

to

Code:
							<li><a href="{xen:link 'watched/forums'}">{xen:phrase watched_forums}</a></li>
							<li><a href="{xen:link 'watched/threads'}">{xen:phrase watched_threads}</a></li>
							<li><a href="https://www.fanficparadise.com/index.htm">Fanfic Paradise</a></li>
						</xen:if>

. It worked. Now I know where to add this.

Now for my next question... Is there a way to apply this to all the styles I have at once? Because I have a lot of styles. And I don't feel like manually editing each one.

Thanks for all your help!:)
 
Top Bottom