MyBB Hacks

Full Version: Contact Us System
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7 8 9 10
Try this:

HTML Code
{$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

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.
You've got the template saved in the Global templateset, correct?
Yes
Do you have MyAdvertisements or any other plugins which might cause a conflict?
no...would you like to take a look at my admin area ? Check your pm's plz.
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
Try to change this line in your contus_postbit_first template (around line #41):

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


Change it to:

HTML Code
<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".

I got it fixed up...thanks rateu !

http://antihack.us/forums/showthread.php?tid=2992
Glad you can solve the problem, Vapor Smile
Pages: 1 2 3 4 5 6 7 8 9 10
Reference URL's