Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
 X-Threads Capability Vs. Plugin Capability
MasterZuFu Offline
Member
***
Posts: 97
Joined: Dec 2010
Post: #7
RE: X-Threads Capability Vs. Plugin Capability
Lol, you took my analogy of emulation a little too literal Tongue lol, but it's ok because your first statement kind of ruled it out. I kind of though "Plugin Emulation" would be a little too over the top to be possible, oh well lol.

Thread fields can be applied to multiple forums, yes, but XThread Options can NOT be applied to multiple forums and are punched in directly when going to "Edit Forum Settings".

I didn't think about the template conditionals. Please tell me if this will work with template conditionals:


I have on my site two versions of the Trading Forum. Each has different categories. Here are their separate templates:


Trading Forum:

Code:
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
27
28
29
30
31
32
33
34
35
36
37
38
<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="Hardware">Hardware</option>
					<option value="Software">Software</option>
					<option value="Other">Other</option>
				</select>
				<select name="filtertf_trdftnt">
					<option value="Buy">Buy</option>
					<option value="Sell">Sale</option>
				</select>
				<select name="filtertf_trdfcond">
					<option value="New">New</option>
					<option value="Used">Used</option>
				</select>
				<select name="filtertf_trdfpayment">
					<option value="PayPal">PayPal</option>
					<option value="AlertPay">AlertPay</option>
					<option value="Wire Transfer">Wire Transfer</option>
				</select>
				<select name="filtertf_trdfstatus">
					<option value="Open">Open</option>
					<option value="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 />


Training Forum

Code:
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<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="Certification">Certification</option>
					<option value="Programming">Programming</option>
					<option value="Networking">Networking</option>
					<option value="Security">Security</option>
					<option value="Web Design">Web Design</option>
					<option value="Penetration Testing">Penetration Testing</option>
					<option value="Server Management">Server Management</option>
					<option value="Malware/Virus">Malware/Virus</option>
				</select>
				<select name="filtertf_trdftnt">
					<option value="Buy">Buy</option>
					<option value="Sell">Sale</option>
				</select>
				<select name="filtertf_trdfcond">
					<option value="New">New</option>
					<option value="Used">Used</option>
				</select>
				<select name="filtertf_trdfpayment">
					<option value="PayPal">PayPal</option>
					<option value="AlertPay">AlertPay</option>
					<option value="Wire Transfer">Wire Transfer</option>
				</select>
				<select name="filtertf_trdfstatus">
					<option value="Open">Open</option>
					<option value="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 />



How can I use template conditionals to combine both of these templates into one so that they can be used by either the Trading or the Training forum?


12-17-2010 01:44 PM
Visit this user's website Find all posts by this user Quote this message in a reply

« Next Oldest | Next Newest »

Messages In This Thread
RE: X-Threads Capability Vs. Plugin Capability - MasterZuFu - 12-17-2010 01:44 PM

 Standard Tools
Forum Jump: