MyBB Hacks

Full Version: Trading Forum
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
(05-19-2011 01:41 AM)RateU Wrote: [ -> ]The demo forum is using MyBB 1.6 now. So, yes, I think it should works for MyBB 1.6.

that's great Yipi
A little update:
Adding All to each filter in search forum inline, and use selected variable.

trdf_forumdisplay_searchforum_inline template:

HTML Code
<table border="0" cellspacing="{$GLOBALS['theme']['borderwidth']}" cellpadding="{$GLOBALS['theme']['tablespace']}" class="tborder" style="clear: both;">
	<tr><td class="thead"><strong>Filter &amp; Search Trade</strong></td></tr>
	<tr>
		<td class="trow1" align="center">
			<form action="forumdisplay.php" method="get">
				<select name="filtertf_trdfcat">
					<option value="">All</option>
					<option value="Hardware"{$GLOBALS['filters_set']['trdfcat']['selected']['Hardware']}>Hardware</option>
					<option value="Software"{$GLOBALS['filters_set']['trdfcat']['selected']['Software']}>Software</option>
					<option value="Other"{$GLOBALS['filters_set']['trdfcat']['selected']['Other']}>Other</option>
				</select>
				<select name="filtertf_trdftnt">
					<option value="">All</option>
					<option value="Buy"{$GLOBALS['filters_set']['trdftnt']['selected']['Buy']}>Buy</option>
					<option value="Sell"{$GLOBALS['filters_set']['trdftnt']['selected']['Sell']}>Sale</option>
				</select>
				<select name="filtertf_trdfcond">
					<option value="">All</option>
					<option value="New"{$GLOBALS['filters_set']['trdfcond']['selected']['New']}>New</option>
					<option value="Used"{$GLOBALS['filters_set']['trdfcond']['selected']['Used']}>Used</option>
				</select>
				<select name="filtertf_trdfpayment">
					<option value="">All</option>
					<option value="PayPal"{$GLOBALS['filters_set']['trdfpayment']['selected']['PayPal']}>PayPal</option>
					<option value="AlertPay"{$GLOBALS['filters_set']['trdfpayment']['selected']['AlertPay']}>AlertPay</option>
					<option value="Wire Transfer"{$GLOBALS['filters_set']['trdfpayment']['selected']['Wire Transfer']}>Wire Transfer</option>
				</select>
				<select name="filtertf_trdfstatus">
					<option value="">All</option>
					<option value="Open"{$GLOBALS['filters_set']['trdfstatus']['selected']['Open']}>Open</option>
					<option value="Closed"{$GLOBALS['filters_set']['trdfstatus']['selected']['Closed']}>Closed</option>
				</select>
				<input type="text" class="textbox" name="search" size="35" value="{$searchval}" /> {$gobutton}
				<input type="hidden" name="fid" value="{$fid}" />
				<input type="hidden" name="sortby" value="{$sortby}" />
				<input type="hidden" name="order" value="{$sortordernow}" />
				<input type="hidden" name="datecut" value="{$datecut}" />
			</form>
		</td>
	</tr>
</table>
<br />

I've updated the first post.
Modify it as our needs.

Thanks for the updates RateU Smile
Biggrin Thanks, Yumi.
Hi, does it support Google Seo 1.6.1 ?

Cause i will want it to implement in a category forum Smile

Can you make with X-Threads a Trade Forum something like a I.P board ?

Here is an example

The category is Bursa (Trade forum) with Auto , Domains, and so long .

Regards ~ !
(08-27-2011 05:48 PM)Raoul Wrote: [ -> ]Hi, does it support Google Seo 1.6.1 ?
Google SEO will naturally work with XThreads.

(08-27-2011 05:48 PM)Raoul Wrote: [ -> ]Can you make with X-Threads a Trade Forum something like a I.P board ?
Have you read the first post of this thread?
(08-27-2011 08:12 PM)ZiNgA BuRgA Wrote: [ -> ]
(08-27-2011 05:48 PM)Raoul Wrote: [ -> ]Hi, does it support Google Seo 1.6.1 ?
Google SEO will naturally work with XThreads.

(08-27-2011 05:48 PM)Raoul Wrote: [ -> ]Can you make with X-Threads a Trade Forum something like a I.P board ?
Have you read the first post of this thread?

Yes, but i'm beginner in web domain ( CSS and others )
I'm not quite sure what you mean. Do you mean the layout?
(08-27-2011 08:46 PM)Raoul Wrote: [ -> ]Yes, but i'm beginner in web domain ( CSS and others )
Fortunately, following instructions should be very easy for you then.
After following them, it will be the perfect opportunity to polish your HTML/CSS Tongue
Just what I have been looking for, thank you!!!

One issue, I can't seem to get the categories I add trdf_forumdisplay_threadlist and trdf_forumdisplay_searchforum_inline

trdf_forumdisplay_threadlist

Code:
<tr>
	<td class="trow1 {$filters_set['trdfcat']['active']['Books']}" colspan="2">
		<a href="{$forumurl_q}filtertf_trdfcat=Books"><span><strong>Books</strong></span></a>
	</td>
</tr>
<tr>
	<td class="trow1 {$filters_set['trdfcat']['active']['Hardware']}" colspan="2">
		<a href="{$forumurl_q}filtertf_trdfcat=Hardware"><span><strong>Hardware</strong></span></a>
	</td>
</tr>                            


trdf_forumdisplay_searchforum_inline

Code:
<select name="filtertf_trdfcat">
	<option value="">All</option>
        <option value="Books"{$GLOBALS['filters_set']['trdfcat']['selected']['Books']}>Books</option> 
	<option value="Hardware"{$GLOBALS['filters_set']['trdfcat']['selected']['Hardware']}>Hardware</option>
	<option value="Software"{$GLOBALS['filters_set']['trdfcat']['selected']['Software']}>Software</option>
        <option value="Other"{$GLOBALS['filters_set']['trdfcat']['selected']['Other']}>Other</option>
</select> 


I don't see an option in the new thread editor to post under the Book category I have created.  Is there another template relating to the tables and options above?

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
Reference URL's