Thread Rating:
  • 1 Votes - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
 Contact Us System
RateU Offline
Administrator
*******
Posts: 2,350
Joined: Mar 2010
Post: #61
RE: Contact Us System
Try this:

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
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
57
58
{$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>
			<td class="post_content {$unapproved_shade}" style="border-bottom: 2px solid #0F5C8E;" colspan="2">
				<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>


And please make sure that you have the right name for the template:
contus_postbit_first


01-05-2011 03:31 AM
Find all posts by this user Quote this message in a reply
Vapor Offline
Member
***
Posts: 115
Joined: Oct 2010
Post: #62
RE: Contact Us System
template name is correct, but I am still not getting anything posted to new thread.

I can verify that when I "preview" a new form submission...you can see it.

D3G Gaming Team - http://d3g.in

[Image: vapor_sig.png]
01-05-2011 06:31 AM
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: #63
RE: Contact Us System
You've got the template saved in the Global templateset, correct?

My Blog
01-05-2011 09:24 AM
Find all posts by this user Quote this message in a reply
Vapor Offline
Member
***
Posts: 115
Joined: Oct 2010
Post: #64
RE: Contact Us System
Yes

D3G Gaming Team - http://d3g.in

[Image: vapor_sig.png]
01-05-2011 09:58 AM
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: #65
RE: Contact Us System
Do you have MyAdvertisements or any other plugins which might cause a conflict?

My Blog
01-05-2011 10:16 AM
Find all posts by this user Quote this message in a reply
Vapor Offline
Member
***
Posts: 115
Joined: Oct 2010
Post: #66
RE: Contact Us System
no...would you like to take a look at my admin area ? Check your pm's plz.

D3G Gaming Team - http://d3g.in

[Image: vapor_sig.png]
01-05-2011 10:27 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: #67
RE: Contact Us System
Thank you very much rateu for the look see....the conflict was "usergroup post css"...but now the only issue is the "games played" not showing a title?

http://antihack.us/forums/showthread.php?tid=2989

D3G Gaming Team - http://d3g.in

[Image: vapor_sig.png]
01-06-2011 05:39 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: #68
RE: Contact Us System
Try to change this line in your contus_postbit_first template (around line #41):

HTML Code
41
42
43
<tr>
	<td valign="top" colspan="3"><br />{$GLOBALS['threadfields']['contus_gamesplayed']}</td>
</tr>


Change it to:

HTML Code
41
42
43
44
45
<tr>
	<td width="75" valign="top">Games Played</td>
	<td width="1" valign="top">:</td>
	<td valign="top">{$GLOBALS['threadfields']['contus_gamesplayed']}</td>
</tr>


If you uninstalled the plugin, maybe you need to "clean" your database, because the plugin not uninstalled "properly".


01-06-2011 06:09 AM
Find all posts by this user Quote this message in a reply
Vapor Offline
Member
***
Posts: 115
Joined: Oct 2010
Post: #69
RE: Contact Us System
I got it fixed up...thanks rateu !

http://antihack.us/forums/showthread.php?tid=2992

D3G Gaming Team - http://d3g.in

[Image: vapor_sig.png]
01-06-2011 06: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: #70
RE: Contact Us System
Glad you can solve the problem, Vapor Smile

01-07-2011 05:59 AM
Find all posts by this user Quote this message in a reply

« Next Oldest | Next Newest »

 Standard Tools
Forum Jump: