Quick links

For support and discussion related to templates, themes, and imagesets in phpBB 3.2.
Post Reply
Affin
I've Been Banned!
Posts: 254
Joined: Fri May 25, 2018 9:52 pm

Quick links

Post by Affin »

Can it add active topic and new posts in the section I have marked with "text"?
Attachments
screenshot.png
User avatar
Lumpy Burgertushie
Registered User
Posts: 69224
Joined: Mon May 02, 2005 3:11 am
Contact:

Re: Quick links

Post by Lumpy Burgertushie »

they are already in the quick links drop down in the same area.

robert
Premium phpBB 3.3 Styles by PlanetStyles.net

I am pleased to announce that I have completed the first item on my bucket list. I have the bucket.
Affin
I've Been Banned!
Posts: 254
Joined: Fri May 25, 2018 9:52 pm

Re: Quick links

Post by Affin »

Lumpy Burgertushie wrote: Sat May 26, 2018 2:55 am they are already in the quick links drop down in the same area.

robert
I know if it is possible to have where I show?
User avatar
GanstaZ
Registered User
Posts: 1187
Joined: Wed Oct 11, 2017 10:29 pm
Location: GZOverse

Re: Quick links

Post by GanstaZ »

If you mean on the same line as board index, then yes, it is possible.
Usus est magister optimus! phpBB pre-Triton & latest php environment.
When answer lies in the question, question becomes redundant!
Affin
I've Been Banned!
Posts: 254
Joined: Fri May 25, 2018 9:52 pm

Re: Quick links

Post by Affin »

GanstaZ wrote: Sat May 26, 2018 10:16 pm If you mean on the same line as board index, then yes, it is possible.
How?
User avatar
GanstaZ
Registered User
Posts: 1187
Joined: Wed Oct 11, 2017 10:29 pm
Location: GZOverse

Re: Quick links

Post by GanstaZ »

Option number one is to make an extension (keep/remove those from quick links) and move those fields to a new place.
Option number two is to hard code, but it's not recommended.
Usus est magister optimus! phpBB pre-Triton & latest php environment.
When answer lies in the question, question becomes redundant!
Affin
I've Been Banned!
Posts: 254
Joined: Fri May 25, 2018 9:52 pm

Re: Quick links

Post by Affin »

GanstaZ wrote: Sat May 26, 2018 10:27 pm Option number one is to make an extension (keep/remove those from quick links) and move those fields to a new place.
Option number two is to hard code, but it's not recommended.
Both advice you provide requires encoding
User avatar
GanstaZ
Registered User
Posts: 1187
Joined: Wed Oct 11, 2017 10:29 pm
Location: GZOverse

Re: Quick links

Post by GanstaZ »

There's no other way. It's not something, that can be done by few clicks in acp or ucp.
Usus est magister optimus! phpBB pre-Triton & latest php environment.
When answer lies in the question, question becomes redundant!
Affin
I've Been Banned!
Posts: 254
Joined: Fri May 25, 2018 9:52 pm

Re: Quick links

Post by Affin »

GanstaZ wrote: Sat May 26, 2018 10:38 pm There's no other way. It's not something, that can be done by few clicks in acp or ucp.
Ok!
User avatar
Sniper_E
Registered User
Posts: 1142
Joined: Wed May 09, 2007 12:18 am
Location: Shreveport, Louisiana
Name: Ed Humphrey
Contact:

Re: Quick links

Post by Sniper_E »

Open styles/prosilver/template/navbar_header.html

Find and delete

Code: Select all

						<!-- IF S_USER_LOGGED_IN -->
							<li>
								<a href="{U_SEARCH_NEW}" role="menuitem">
									<i class="icon fa-file-o fa-fw icon-red" aria-hidden="true"></i><span>{L_SEARCH_NEW}</span>
								</a>
							</li>
						<!-- ENDIF -->
Find and delete

Code: Select all

							<li>
								<a href="{U_SEARCH_ACTIVE_TOPICS}" role="menuitem">
									<i class="icon fa-file-o fa-fw icon-blue" aria-hidden="true"></i><span>{L_SEARCH_ACTIVE_TOPICS}</span>
								</a>
							</li>
Find

Code: Select all

		<!-- EVENT overall_header_navigation_prepend -->
Add after

Code: Select all

		<!-- IF S_DISPLAY_SEARCH -->
			<!-- IF S_USER_LOGGED_IN -->
				<li data-last-responsive="true">
					<a href="{U_SEARCH_NEW}" role="menuitem">
						<i class="icon fa-file-o fa-fw icon-red" aria-hidden="true"></i><span>{L_SEARCH_NEW}</span>
					</a>
				</li>
			<!-- ENDIF -->
				<li data-last-responsive="true">
					<a href="{U_SEARCH_ACTIVE_TOPICS}" role="menuitem">
						<i class="icon fa-file-o fa-fw icon-blue" aria-hidden="true"></i><span>{L_SEARCH_ACTIVE_TOPICS}</span>
					</a>
				</li>
		<!-- ENDIF -->
Upload changes and clear server cache. This should put those links outside of the Quick links drop down with the FAQ link.
Image . -.. / .... ..- -- .--. .... .-. . -.--
No is NEVER an Option and NEVER is the only Option when it comes to Giving Up!

:!: Sniper_E Styles | phpbbmodders :!:
Post Reply

Return to “[3.2.x] Styles Support & Discussion”