how to fix search results ?

Support for PhpBB3. Post here to get help with any phpBB3 related issue here
There is no support here! Only Read Access!
Forum rules
In order the get any support, you will have to do following:
1. Use a describing title!
2. Describe your problem and what happened when the problem occured
3. Tell us what version of phpBB3 you are currently using.
Else your topic may be ignored or locked!
Locked
altafali
BBCoder II
BBCoder II
Posts: 28
Joined: 03 Jun 2010, 20:16

how to fix search results ?

Post by altafali »

hi to all

plz look at my forum cap

i want to add forum column at top instead of show it with search item (it shows forum right below)

Image

i am using fisubice2 style and phpbb3.0.7 PLI
thanks in advance
Last edited by altafali on 11 Aug 2010, 17:34, edited 1 time in total.
altafali
BBCoder II
BBCoder II
Posts: 28
Joined: 03 Jun 2010, 20:16

Re: how to fix search results ?

Post by altafali »

anybody there??
cisco007
BBCoder VI
BBCoder VI
Posts: 1015
Joined: 16 Mar 2010, 18:14
Location: Don't really know!

Re: how to fix search results ?

Post by cisco007 »

no nobody here, we will when we know the answer, just hold on!
P.S. Read the PM i sent you!
altafali
BBCoder II
BBCoder II
Posts: 28
Joined: 03 Jun 2010, 20:16

Re: how to fix search results ?

Post by altafali »

plz delete plz post i got it
User avatar
Steve
BBCoder VI
BBCoder VI
Posts: 814
Joined: 05 Mar 2010, 01:10
BBCodes: 2000
Favourite BBCode: p**n tube
Favourite MOD: Non of Stokers

Re: how to fix search results ?

Post by Steve »

posts are not deleted here, if no one had time to respond im sorry for that we all have something todo ;)
And if you would you could post how you solved it it maybe usefull for other members :)
NAPWR wrote: Nice, Stoker is Hot
download/file.php?id=2327&mode=view
KukY13
BBCoder III
BBCoder III
Posts: 96
Joined: 26 Jun 2010, 16:23
Contact:

Re: how to fix search results ?

Post by KukY13 »

Steve© » 23 Aug 2010, 21:08 wrote:And if you would you could post how you solved it it maybe usefull for other members :)
I helped him with that on my forum :P
These are the edits for his style:
Open search_results.html:
Find:

Code: Select all

		<th width="4%" nowrap="nowrap">&nbsp;</th>
		<th colspan="2" nowrap="nowrap">&nbsp;{L_TOPICS}&nbsp;</th>
Replace with:

Code: Select all

		<th width="4%" nowrap="nowrap">&nbsp;</th>
		<th nowrap="nowrap">&nbsp;{L_FORUM}&nbsp;</th>
		<th nowrap="nowrap">&nbsp;{L_TOPICS}&nbsp;</th>

Find:

Code: Select all

			<td class="row1">
				<!-- IF searchresults.S_UNREAD_TOPIC --><a href="{searchresults.U_NEWEST_POST}">{NEWEST_POST_IMG}</a><!-- ENDIF -->
				{searchresults.ATTACH_ICON_IMG} <a href="{searchresults.U_VIEW_TOPIC}" class="topictitle">{searchresults.TOPIC_TITLE}</a>
				<!-- IF searchresults.S_TOPIC_UNAPPROVED or searchresults.S_POSTS_UNAPPROVED -->
					<a href="{searchresults.U_MCP_QUEUE}">{searchresults.UNAPPROVED_IMG}</a>&nbsp;
				<!-- ENDIF -->
				<!-- IF searchresults.S_TOPIC_REPORTED -->
					<a href="{searchresults.U_MCP_REPORT}">{REPORTED_IMG}</a>&nbsp;
				<!-- ENDIF -->
				<!-- IF searchresults.PAGINATION -->
					<p class="gensmall"> [ {GOTO_PAGE_IMG}{L_GOTO_PAGE}: {searchresults.PAGINATION} ] </p>
				<!-- ENDIF -->
				<!-- IF searchresults.S_TOPIC_GLOBAL -->
					<p class="gensmall">{L_GLOBAL}</p>
				<!-- ELSE -->
					<p class="gensmall">{L_IN} <a href="{searchresults.U_VIEW_FORUM}">{searchresults.FORUM_TITLE}</a></p>
				<!-- ENDIF -->
			</td>
Replace with:

Code: Select all

			<td class="row1">
				<!-- IF searchresults.S_TOPIC_GLOBAL -->
					{L_GLOBAL}
				<!-- ELSE -->
					<a href="{searchresults.U_VIEW_FORUM}">{searchresults.FORUM_TITLE}</a>
				<!-- ENDIF -->
			</td>
			<td class="row1">
				<!-- IF searchresults.S_UNREAD_TOPIC --><a href="{searchresults.U_NEWEST_POST}">{NEWEST_POST_IMG}</a><!-- ENDIF -->
				{searchresults.ATTACH_ICON_IMG} <a href="{searchresults.U_VIEW_TOPIC}" class="topictitle">{searchresults.TOPIC_TITLE}</a>
				<!-- IF searchresults.S_TOPIC_UNAPPROVED or searchresults.S_POSTS_UNAPPROVED -->
					<a href="{searchresults.U_MCP_QUEUE}">{searchresults.UNAPPROVED_IMG}</a>&nbsp;
				<!-- ENDIF -->
				<!-- IF searchresults.S_TOPIC_REPORTED -->
					<a href="{searchresults.U_MCP_REPORT}">{REPORTED_IMG}</a>&nbsp;
				<!-- ENDIF -->
				<!-- IF searchresults.PAGINATION -->
					<p class="gensmall"> [ {GOTO_PAGE_IMG}{L_GOTO_PAGE}: {searchresults.PAGINATION} ] </p>
				<!-- ENDIF -->
			</td>
Image
Locked