Thread Rating:
  • 2 Votes - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
 Trading Forum
RateU Offline
Administrator
*******
Posts: 2,350
Joined: Mar 2010
Post: #11
RE: Trading Forum
Could you explain it more, please?
I can't test it in your forum because it seems guest doesn't have permission to view it Biggrin

10-27-2010 06:07 AM
Find all posts by this user Quote this message in a reply
Vapor Offline
Member
***
Posts: 115
Joined: Oct 2010
Post: #12
RE: Trading Forum
Oops...fixed permissions...go ahead and try now

D3G Gaming Team - http://d3g.in

[Image: vapor_sig.png]
(This post was last modified: 10-27-2010 06:16 AM by Vapor.)
10-27-2010 06:11 AM
Visit this user's website Find all posts by this user Quote this message in a reply
RateU Offline
Administrator
*******
Posts: 2,350
Joined: Mar 2010
Post: #13
RE: Trading Forum
Could you post the value list of your Product Category (settings #8: Listbox for product category).

10-27-2010 06:36 AM
Find all posts by this user Quote this message in a reply
Vapor Offline
Member
***
Posts: 115
Joined: Oct 2010
Post: #14
RE: Trading Forum
Sure here you go:

Code:
1
2
3
4
5
6
Pistols
Rifles
Shotguns
Accessories
Equipment
Miscellaneous


D3G Gaming Team - http://d3g.in

[Image: vapor_sig.png]
10-27-2010 06:41 AM
Visit this user's website Find all posts by this user Quote this message in a reply
RateU Offline
Administrator
*******
Posts: 2,350
Joined: Mar 2010
Post: #15
RE: Trading Forum
Are you sure it is Pistols? Not Pistol (without "s")?
Because there is only two thread there, I only know two value list:
Pistol - http://ohioguns.net/thread-26.html
Equipment - http://ohioguns.net/thread-19.html

Could you re-check it again, please.
Because the fix is very related to the value list.

And could you post the value list for the Payment Method too?

Edit:
This is templates part that have a relation to that value list:
trdf_forumdisplay_threadlist
For Product Category:

HTML Code
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<tr>
	<td class="trow1" colspan="2">
		<a href="{$forumurl_q}filtertf_trdfcat=Hardware"><span><strong>Hardware</strong></span></a>
	</td>
</tr>
<tr>
	<td class="trow1" colspan="2">
		<a href="{$forumurl_q}filtertf_trdfcat=Software"><span><strong>Software</strong></span></a>
	</td>
</tr>
<tr>
	<td class="trow1" colspan="2">
		<a href="{$forumurl_q}filtertf_trdfcat=Other"><span><strong>Other</strong></span></a>
	</td>
</tr>


For Payment Method:

HTML Code
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<tr>
	<td class="trow1" colspan="2">
		<a href="{$forumurl_q}filtertf_trdfpayment=PayPal"><span><strong>PayPal</strong></span></a>
	</td>
</tr>
<tr>
	<td class="trow1" colspan="2">
		<a href="{$forumurl_q}filtertf_trdfpayment=AlertPay"><span><strong>AlertPay</strong></span></a>
	</td>
</tr>
<tr>
	<td class="trow1" colspan="2">
		<a href="{$forumurl_q}filtertf_trdfpayment=Wire Transfer"><span><strong>Wire Transfer</strong></span></a>
	</td>
</tr>


trdf_forumdisplay_searchforum_inline
For Product Category:

HTML Code
<option value="Hardware">Hardware</option>
<option value="Software">Software</option>
<option value="Other">Other</option>


For Payment Method:

HTML Code
<option value="PayPal">PayPal</option>
<option value="AlertPay">AlertPay</option>
<option value="Wire Transfer">Wire Transfer</option>


(This post was last modified: 10-27-2010 07:31 AM by RateU.)
10-27-2010 06:48 AM
Find all posts by this user Quote this message in a reply
Vapor Offline
Member
***
Posts: 115
Joined: Oct 2010
Post: #16
RE: Trading Forum

Code:
1
2
3
4
5
6
PayPal
AlertPay
Wire Transfer
Check
Cash
Trade


D3G Gaming Team - http://d3g.in

[Image: vapor_sig.png]
10-27-2010 08:17 AM
Visit this user's website Find all posts by this user Quote this message in a reply
RateU Offline
Administrator
*******
Posts: 2,350
Joined: Mar 2010
Post: #17
RE: Trading Forum
Edit your trdf_forumdisplay_threadlist template.
Find:

HTML Code
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<tr>
	<td class="trow1" colspan="2">
		<a href="{$forumurl_q}filtertf_trdfpayment=PayPal"><span><strong>PayPal</strong></span></a>
	</td>
</tr>
<tr>
	<td class="trow1" colspan="2">
		<a href="{$forumurl_q}filtertf_trdfpayment=AlertPay"><span><strong>AlertPay</strong></span></a>
	</td>
</tr>
<tr>
	<td class="trow1" colspan="2">
		<a href="{$forumurl_q}filtertf_trdfpayment=Wire Transfer"><span><strong>Wire Transfer</strong></span></a>
	</td>
</tr>


Change to:

HTML 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
<tr>
	<td class="trow1" colspan="2">
		<a href="{$forumurl_q}filtertf_trdfpayment=PayPal"><span><strong>PayPal</strong></span></a>
	</td>
</tr>
<tr>
	<td class="trow1" colspan="2">
		<a href="{$forumurl_q}filtertf_trdfpayment=AlertPay"><span><strong>AlertPay</strong></span></a>
	</td>
</tr>
<tr>
	<td class="trow1" colspan="2">
		<a href="{$forumurl_q}filtertf_trdfpayment=Wire Transfer"><span><strong>Wire Transfer</strong></span></a>
	</td>
</tr>
<tr>
	<td class="trow1" colspan="2">
		<a href="{$forumurl_q}filtertf_trdfpayment=Check"><span><strong>Check</strong></span></a>
	</td>
</tr>
<tr>
	<td class="trow1" colspan="2">
		<a href="{$forumurl_q}filtertf_trdfpayment=Cash"><span><strong>Cash</strong></span></a>
	</td>
</tr>
<tr>
	<td class="trow1" colspan="2">
		<a href="{$forumurl_q}filtertf_trdfpayment=Trade"><span><strong>Trade</strong></span></a>
	</td>
</tr>


Edit your trdf_forumdisplay_searchforum_inline template.
Find:

HTML Code
<option value="PayPal">PayPal</option>
<option value="AlertPay">AlertPay</option>
<option value="Wire Transfer">Wire Transfer</option>


Change to:

HTML Code
1
2
3
4
5
6
<option value="PayPal">PayPal</option>
<option value="AlertPay">AlertPay</option>
<option value="Wire Transfer">Wire Transfer</option>
<option value="Check">Check</option>
<option value="Cash">Cash</option>
<option value="Trade">Trade</option>


For Product Category, the edit should be "similar" like the edit above.
Very depends on what our Product Category Value List.

Example:
If we put Pistol in the value list, we need this kinds of URL in our trdf_forumdisplay_threadlist template:

HTML Code
<a href="{$forumurl_q}filtertf_trdfcat=Pistol"><span><strong>Pistols</strong></span></a>


If we put Pistols in the value list, we need this kinds of URL:

HTML Code
<a href="{$forumurl_q}filtertf_trdfcat=Pistols"><span><strong>Pistols</strong></span></a>


Look at the difference after the filtertf_trdfcat=

And we need to edit our trdf_forumdisplay_searchforum_inline template too.


(This post was last modified: 10-27-2010 08:36 AM by RateU.)
10-27-2010 08:35 AM
Find all posts by this user Quote this message in a reply
Vapor Offline
Member
***
Posts: 115
Joined: Oct 2010
Post: #18
RE: Trading Forum
I have edited all those, but I still do not get any results....Frown

D3G Gaming Team - http://d3g.in

[Image: vapor_sig.png]
10-27-2010 09:31 AM
Visit this user's website Find all posts by this user Quote this message in a reply
RateU Offline
Administrator
*******
Posts: 2,350
Joined: Mar 2010
Post: #19
RE: Trading Forum
We still need to fix the product category.
Post here whatever the selection available for Product Category when you create a new thread in your trading forum.

10-28-2010 01:29 AM
Find all posts by this user Quote this message in a reply
Vapor Offline
Member
***
Posts: 115
Joined: Oct 2010
Post: #20
RE: Trading Forum
Pistols
Rifles
Shotguns
Accessories
Equipment
Miscellaneous

D3G Gaming Team - http://d3g.in

[Image: vapor_sig.png]
10-28-2010 01:36 AM
Visit this user's website Find all posts by this user Quote this message in a reply

« Next Oldest | Next Newest »

 Standard Tools
Forum Jump: