Thread Rating:
  • 1 Votes - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
 Contact Us System
Vapor Offline
Member
***
Posts: 115
Joined: Oct 2010
Post: #41
RE: Contact Us System
What did I miss here? Mine looks nothing like your demo rateu Frown

D3G Gaming Team - http://d3g.in

[Image: vapor_sig.png]
(This post was last modified: 08-18-2015 12:36 PM by Vapor.)
01-04-2011 02:38 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: #42
RE: Contact Us System
Could you post your contus_newthread template?

01-04-2011 02:45 AM
Find all posts by this user Quote this message in a reply
Vapor Offline
Member
***
Posts: 115
Joined: Oct 2010
Post: #43
RE: Contact Us System
Sure...here ya go...i just copied and pasted your example in 1st post:

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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<html>
<head>
<title>Contact Us</title>
{$headerinclude}
<script type="text/javascript" src="jscripts/post.js?ver=1400"></script>
</head>
<body>
{$header}
<form action="newthread.php?fid={$fid}&amp;processed=1" method="post" enctype="multipart/form-data" name="input">
	<input type="hidden" name="my_post_key" value="{$mybb->post_code}" />
	<table border="0" cellspacing="0" cellpadding="{$theme['tablespace']}" width="100%">
		<tr>
			<td></td>
			<td width="620">
				{$thread_errors}
				{$preview}
				<table border="0" cellspacing="0" cellpadding="{$theme['tablespace']}" width="100%">
					<thead>
						<tr>
							<td colspan="2" style="background: #D6ECA6; border-top: 2px solid #8DC93E; border-bottom: 2px solid #8DC93E;">
								<div class="expcolimage"><img src="{$theme['imgdir']}/collapse{$collapsedimg['quickthread']}.gif" id="quickthread_img" class="expander" alt="[-]" title="[-]" /></div>
								<div><strong>Contact Us</strong></div>
							</td>
						</tr>
					</thead>
					<tbody style="{$collapsed['quickthread_e']}" id="quickthread_e">
						<tr class="smalltext"><td colspan="2"></td></tr>
						<tr>
							<td width="22%">
								<strong>Subject</strong>
							</td>
							<td>
								<div style="width: 95%">
									<input type="text" class="textbox" name="subject" size="40" maxlength="85" value="{$subject}" tabindex="1" />
								</div>
							</td>
						</tr>
						{$extra_threadfields}
						<tr>
							<td colspan="2" style="border-bottom: 2px solid #8DC93E;"></td>
						</tr>
						<tr>
							<td colspan="2">&nbsp;</td>
						</tr>
						{$captcha}
						<tr>
							<td colspan="2" align="center" style="background: #ADCBE7; border-top: 2px solid #0F5C8E; border-bottom: 2px solid #0F5C8E;">
								<input type="submit" class="button" name="submit" value="Submit" tabindex="4" accesskey="s" />
								<input type="submit" class="button" name="previewpost" value="Preview" tabindex="5" />
							</td>
						</tr>
					</tbody>
				</table>
				<br />
				<table border="0" cellspacing="0" cellpadding="{$theme['tablespace']}" width="100%">
					<tr>
						<td valign="middle" align="center" class="smalltext">
							Contact Us
							<div>
								Powered By <a href="http://mybbhacks.zingaburga.com">XThreads</a> - <a href="http://mybbhacks.zingaburga.com">MyBB Hacks</a>
							</div>
						</td>
					</tr>
				</table>
			</td>
			<td></td>
		</tr>
	</table>
	<br />
	<input type="hidden" name="action" value="do_newthread" />
	<input type="hidden" name="posthash" value="{$posthash}" />
	<input type="hidden" name="xthreads_contus_status" value="New" />
	<input type="hidden" name="attachmentaid" value="" />
	<input type="hidden" name="attachmentact" value="" />
	<input type="hidden" name="quoted_ids" value="{$quoted_ids}" />
	<input type="hidden" name="tid" value="{$tid}" />
	{$editdraftpid}
</form>
{$footer}
</body>
</html>


D3G Gaming Team - http://d3g.in

[Image: vapor_sig.png]
01-04-2011 03:26 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: #44
RE: Contact Us System
And are you sure that you've set the forum setting like this?
(07-11-2010 12:55 PM)RateU Wrote:  Edit the selected forum with this XThreads Options settings:
  1. Template Prefix: contus_
  2. Show first post on every showthread page: Yes
  3. Hide Forum: Yes
    We need to put this forum url manually in our templates (e.g: header template). Or, we can put this forum url in Contact Us Link under Admin CP -> Configuration -> Settings -> General Configuration -> Contact Us Link.
  4. Allow Blank Post Message: Yes
  5. Force Postbit Layout: Force horizontal postbit layout
  6. Custom WOL Text:
    • Forum Display: Contact Us
    • New Thread: Using Contact Us Form


Then, we need this additional settings for that forum:
  1. Moderation Options: Yes, moderate new threads
  2. Forum Permissions:
    Don't use these settings for Administrator or user group which can manage the submitted forms (Unapproved Threads).

    Basically, we need these settings for Guest user group, so they can use the form.
    If we want registered user group has an ability to use this form, we need to set their permission like this too.

    Use these forum permissions settings for each user group which is allowed to use the Contact Us form. Only thick these options:
    • Use custom permissions (below)
    • Can view forum?
    • Can post threads?

Especially for the template prefix?

01-04-2011 03:38 AM
Find all posts by this user Quote this message in a reply
Vapor Offline
Member
***
Posts: 115
Joined: Oct 2010
Post: #45
RE: Contact Us System
I forgot that part but it is not showing up right....sigh

Would you like to take a look at it? I can pm you admin details ?

D3G Gaming Team - http://d3g.in

[Image: vapor_sig.png]
01-04-2011 04:23 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: #46
RE: Contact Us System
It's looked OK for me now, Vapor?


Attached File(s) Thumbnail(s)
   

01-04-2011 04:28 AM
Find all posts by this user Quote this message in a reply
Vapor Offline
Member
***
Posts: 115
Joined: Oct 2010
Post: #47
RE: Contact Us System
Crap...where did you find that url ? hahaha...ignore that pm then....thnks rateu ! !
I mean the url of my join us form....what is the URL ? How did you get to it?

D3G Gaming Team - http://d3g.in

[Image: vapor_sig.png]
(This post was last modified: 01-04-2011 04:43 AM by Vapor.)
01-04-2011 04: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: #48
RE: Contact Us System
(01-04-2011 04:31 AM)Vapor Wrote:  where did you find that url ?

From this post?

(01-04-2011 02:38 AM)Vapor Wrote:  Username: xxxxxxxxxxxx
Pass: xxxxxxxxxxxxxx

I've censored the Username and Password, if you want to edit the original post Biggrin

01-04-2011 04:46 AM
Find all posts by this user Quote this message in a reply
Vapor Offline
Member
***
Posts: 115
Joined: Oct 2010
Post: #49
RE: Contact Us System
No i mean what is the url to my form on my site? I cannot see it?

http://antihack.us/forums/my_form_url_is?

D3G Gaming Team - http://d3g.in

[Image: vapor_sig.png]
01-04-2011 04:56 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: #50
RE: Contact Us System
(01-04-2011 04:56 AM)Vapor Wrote:  No i mean what is the url to my form on my site? I cannot see it?

http://antihack.us/forums/my_form_url_is?

Do you mean this?

(01-04-2011 02:38 AM)Vapor Wrote:  Url: http://antihack.us/forums/newthread.php?fid=9

If you want it in forumdisplay, you need to install Quick Thread plugin.

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

« Next Oldest | Next Newest »

 Standard Tools
Forum Jump: