Thread Rating:
  • 1 Votes - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
 Contact Us System
Vapor Offline
Member
***
Posts: 115
Joined: Oct 2010
Post: #51
RE: Contact Us System
I have quick thread installed but when I submit a "test" I do not have any content for the post...it's blank ?

D3G Gaming Team - http://d3g.in

[Image: vapor_sig.png]
01-04-2011 07:44 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: #52
RE: Contact Us System
Do you add/change some custom thread fields in your Contact Us form?

If you've changed the key of the custom thread fields, you need to change it in your template (eg: contus_postbit_first) too.
For example (not for file input type field):
We have a custom thread fields with key = my_key
Then we need to put {$GLOBALS['threadfields']['my_key']} variable in template to display it.

01-04-2011 08:32 AM
Find all posts by this user Quote this message in a reply
Vapor Offline
Member
***
Posts: 115
Joined: Oct 2010
Post: #53
RE: Contact Us System
Yeah, Im gonna have to go through it again....lol....I changed quite a few of them.

D3G Gaming Team - http://d3g.in

[Image: vapor_sig.png]
01-04-2011 10:52 AM
Visit this user's website Find all posts by this user Quote this message in a reply
Vapor Offline
Member
***
Posts: 115
Joined: Oct 2010
Post: #54
RE: Contact Us System
This is what I have for custom thread fields (image attached)

Im not sure where to make the changes to reflect what I changed, thanks for the help Yipi

   

D3G Gaming Team - http://d3g.in

[Image: vapor_sig.png]
(This post was last modified: 01-04-2011 11:35 AM by Vapor.)
01-04-2011 11:32 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: #55
RE: Contact Us System
Mostly in contus_postbit_first (start from line #15):

HTML Code
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
<table border="0" width="100%">
	<tr>
		<td valign="top" colspan="3"><strong>{$GLOBALS['threadfields']['contus_status']}</strong></td>
	</tr>
	<tr>
		<td width="75" valign="top">Subject</td>
		<td width="1" valign="top">:</td>
		<td valign="top">{$post['subject']} {$post['subject_extra']}</td>
	</tr>
	<tr>
		<td width="75" valign="top">Name</td>
		<td width="1" valign="top">:</td>
		<td valign="top">{$GLOBALS['threadfields']['contus_name']}</td>
	</tr>
	<tr>
		<td width="75" valign="top">E-Mail</td>
		<td width="1" valign="top">:</td>
		<td valign="top">{$GLOBALS['threadfields']['contus_email']}</td>
	</tr>
	<tr>
		<td width="75" valign="top">Category</td>
		<td width="1" valign="top">:</td>
		<td valign="top">{$GLOBALS['threadfields']['contus_cat']}</td>
	</tr>
	<tr>
		<td valign="top" colspan="3"><br />{$GLOBALS['threadfields']['contus_msg']}</td>
	</tr>
</table>


Try to change it in that template first.
For example:

HTML Code
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
44
<table border="0" width="100%">
	<tr>
		<td width="75" valign="top">Subject</td>
		<td width="1" valign="top">:</td>
		<td valign="top">{$post['subject']} {$post['subject_extra']}</td>
	</tr>
	<tr>
		<td width="75" valign="top">Steam ID</td>
		<td width="1" valign="top">:</td>
		<td valign="top">{$GLOBALS['threadfields']['contus_steamid']}</td>
	</tr>
	<tr>
		<td width="75" valign="top">Age</td>
		<td width="1" valign="top">:</td>
		<td valign="top">{$GLOBALS['threadfields']['contus_age']}</td>
	</tr>
	<tr>
		<td width="75" valign="top">E-Mail</td>
		<td width="1" valign="top">:</td>
		<td valign="top">{$GLOBALS['threadfields']['contus_email']}</td>
	</tr>
	<tr>
		<td width="75" valign="top">Time Zone</td>
		<td width="1" valign="top">:</td>
		<td valign="top">{$GLOBALS['threadfields']['contus_timezone']}</td>
	</tr>
	<tr>
		<td valign="top" colspan="3"><br />{$GLOBALS['threadfields']['contus_gamesplayed']}</td>
	</tr>
</table>


Later, we will try to change it in other template too.


(This post was last modified: 01-04-2011 11:56 AM by RateU.)
01-04-2011 11:51 AM
Find all posts by this user Quote this message in a reply
Vapor Offline
Member
***
Posts: 115
Joined: Oct 2010
Post: #56
RE: Contact Us System
Ok...that's done. And also just to throw this out there...the captcha is not working either Frown

D3G Gaming Team - http://d3g.in

[Image: vapor_sig.png]
(This post was last modified: 01-04-2011 04:10 PM by Vapor.)
01-04-2011 04:09 PM
Visit this user's website Find all posts by this user Quote this message in a reply
ZiNgA BuRgA Offline
Fag
*******
Posts: 3,357
Joined: Jan 2008
Post: #57
RE: Contact Us System
On new thread or forum display?
The board doesn't seem to allow guest posting, so I can't test it.  Obviously, non-guests don't need to enter a captcha, so ensure you're testing as guest.

My Blog
01-04-2011 05:43 PM
Find all posts by this user Quote this message in a reply
Vapor Offline
Member
***
Posts: 115
Joined: Oct 2010
Post: #58
RE: Contact Us System
Ok...fixed the captcha, permissions problem. I'm always logged in as admin so I have to juggle browsers to see it as guest...D'oh.

On forum display it does not show (image attached)

   

D3G Gaming Team - http://d3g.in

[Image: vapor_sig.png]
01-05-2011 12:46 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: #59
RE: Contact Us System
(01-05-2011 12:46 AM)Vapor Wrote:  On forum display it does not show (image attached)

Do you mean showthread?
If so, could you post your contus_postbit_first template here, Vapor?

01-05-2011 02:55 AM
Find all posts by this user Quote this message in a reply
Vapor Offline
Member
***
Posts: 115
Joined: Oct 2010
Post: #60
RE: Contact Us System
Sure...here ya go:

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
44
45
46
47
48
49
50
51
52
53
54
55
56
{$ignore_bit}
<a name="pid{$post['pid']}" id="pid{$post['pid']}"></a>
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" width="100%" style="{$post_extra_style} {$post_visibility}" id="post_{$post['pid']}">
	<tbody>
		<tr>
			<td>
				<div class="float_left smalltext">
					{$post['postdate']}, {$post['posttime']} <span id="edited_by_{$post['pid']}">{$post['editedmsg']}</span>
				</div>
				{$post['posturl']}
			</td>
		</tr>
		<tr>
			
<table border="0" width="100%">
	<tr>
		<td width="75" valign="top">Subject</td>
		<td width="1" valign="top">:</td>
		<td valign="top">{$post['subject']} {$post['subject_extra']}</td>
	</tr>
	<tr>
		<td width="75" valign="top">Steam ID</td>
		<td width="1" valign="top">:</td>
		<td valign="top">{$GLOBALS['threadfields']['contus_steamid']}</td>
	</tr>
	<tr>
		<td width="75" valign="top">Age</td>
		<td width="1" valign="top">:</td>
		<td valign="top">{$GLOBALS['threadfields']['contus_age']}</td>
	</tr>
	<tr>
		<td width="75" valign="top">E-Mail</td>
		<td width="1" valign="top">:</td>
		<td valign="top">{$GLOBALS['threadfields']['contus_email']}</td>
	</tr>
	<tr>
		<td width="75" valign="top">Time Zone</td>
		<td width="1" valign="top">:</td>
		<td valign="top">{$GLOBALS['threadfields']['contus_timezone']}</td>
	</tr>
	<tr>
		<td valign="top" colspan="3"><br />{$GLOBALS['threadfields']['contus_gamesplayed']}</td>
	</tr>
</table>			<div class="post_meta" id="post_meta_{$post['pid']}">
					{$post['iplogged']}
				</div>
				<br class="clear" />
				<div class="author_buttons float_left">
					{$post['button_email']}{$post['button_pm']}{$post['button_www']}{$post['button_find']}
				</div>
				<div class="post_management_buttons float_right">{$post['button_edit']}{$post['button_quickdelete']}{$post['button_quote']}{$post['button_multiquote']}{$post['button_report']}{$post['button_warn']}{$post['button_reply_pm']}{$post['button_replyall_pm']}{$post['button_forward_pm']}{$post['button_delete_pm']}
				</div>
			</td>
		</tr>
	</tbody>
</table>


D3G Gaming Team - http://d3g.in

[Image: vapor_sig.png]
01-05-2011 03:07 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: