<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[Gidenler.Me | Yazınsal Sorunlar - xThreads]]></title>
		<link>https://gidenler.me/</link>
		<description><![CDATA[Gidenler.Me | Yazınsal Sorunlar - https://gidenler.me]]></description>
		<pubDate>Sat, 13 Jun 2026 07:23:49 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[Template Conditionals]]></title>
			<link>https://gidenler.me/thread-694.html</link>
			<pubDate>Tue, 09 Dec 2025 18:51:30 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://gidenler.me/member.php?action=profile&uid=2">Hasan</a>]]></dc:creator>
			<guid isPermaLink="false">https://gidenler.me/thread-694.html</guid>
			<description><![CDATA[This is essentially a more restrictive version of my <a href="http://mybbhacks.zingaburga.com/showthread.php?tid=260" target="_blank" rel="noopener" class="mycode_url">PHP in Templates</a> plugin.  The restrictions aim to make this a "safe" plugin to use, that is, doesn't allow arbitrary PHP execution, but still gives the benefits of template conditionals.<br />
<br />
You may notice that this still uses the "phptpl" name, and thus, is incompatible with the PHP in Templates plugin.  Both plugins are very similar though.  The differences between this and the other plugin are:<ul class="mycode_list"><li>Admins cannot enter PHP code using &lt;?php ?&gt; tags<br />
</li>
<li>Conditionals in &lt;if&gt; and &lt;elseif&gt; tags are checked to ensure that they are "safe" (see below)<br />
</li>
<li><span style="font-style: italic;" class="mycode_i">file_get_contents</span> function has been removed from the allowable &lt;func ...&gt;...&lt;/func&gt; shortcuts<br />
</li>
<li>There's a new &lt;?=...?&gt; tag to print out the result of a "safe" PHP expression; although this is a tag, only PHP expressions may exist inside (do not terminate expressions with a semicolon), so you cannot nest other tags inside this<br />
Example (prints <span style="font-style: italic;" class="mycode_i">123654321</span>):<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>123&lt;?=substr("987654321", 3)?&gt;</code></div></div>
</li>
<li>There's also a new &lt;setvar <span style="font-style: italic;" class="mycode_i">name</span>&gt;...&lt;/setvar&gt; tag which can set variables; for safety reasons, these are actually stored in a &#36;tplvars array.  Examples:<br />
(just prints <span style="font-style: italic;" class="mycode_i">some text</span>)<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;setvar uselesstext&gt;"some text"&lt;/setvar&gt;<br />
{&#36;tplvars['uselesstext']}</code></div></div>
(prints out the username of the user with UID of 2)<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;setvar user2&gt;get_user(2)&lt;/setvar&gt;<br />
&lt;func htmlspecialchars_uni&gt;{&#36;tplvars['user2']['username']}&lt;/func&gt;</code></div></div>
</li>
</ul>
<br />
v1.0-1.3 of this plugin is based off v1.7 of PHP in Templates.<br />
As of v1.8, PHP 5.3 or later is required.<br />
This plugin can be used with the <a href="http://mybbhacks.zingaburga.com/showthread.php?tid=312" target="_blank" rel="noopener" class="mycode_url">Admin Security</a> plugin.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">"Safe expressions"</span><br />
This plugin implements "<a href="http://zingaburga.com/2010/09/safe-php-expressions-in-templates/" target="_blank" rel="noopener" class="mycode_url">safe expression</a>" checking; essentially, this does impose a bit of a performance hit, but, on the other hand, tries to ensure no "bad PHP" gets executed.<br />
For more information on what I consider to be a "safe expression", <a href="http://zingaburga.com/2010/09/safe-php-expressions-in-templates/" target="_blank" rel="noopener" class="mycode_url">see my blog post here</a>.<br />
For the purposes of this plugin, all valid PHP expressions are allowed, as long as they don't infringe on any of the following conditions:<ul class="mycode_list"><li>no assignment/modification operators (=, +=, |=, ++ etc) allowed<br />
</li>
<li>no statements such as include, exit, eval etc are allowed<br />
</li>
<li>no special constants such as PHP_OS, PHP_LIBDIR etc are allowed<br />
</li>
<li>backtick (`) operator not allowed<br />
</li>
<li>heredoc type strings not allowed (takes too much effort to handle) - use double quoted strings instead<br />
</li>
<li>double quoted strings may not contain the "{" character (takes too much effort to handle) - use string concatenation instead<br />
</li>
<li>array and object typecasting not allowed<br />
</li>
<li>no variable functions or method calls allowed<br />
</li>
<li>single line comments (//, #) not allowed<br />
</li>
<li>only some functions are allowed - see inc/plugins/phptpl_allowed_funcs.txt for a list of allowed functions<br />
</li>
</ul>
<br />
Source: <a href="https://mybbhacks.zingaburga.com/showthread.php?tid=464" target="_blank" rel="noopener" class="mycode_url">https://mybbhacks.zingaburga.com/showthread.php?tid=464</a><br /><!-- start: postbit_attachments_attachment -->
<!-- start: attachment_icon -->
<img src="https://gidenler.me/images/attachtypes/tar.png" title="7z Compressed File" border="0" alt=".7z" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=972" target="_blank" title="tplcond-1.9.7z">tplcond-1.9.7z</a>
<img src="/images/v2/link_icon.png" alt="link" height="10" width="10" /> (Dosya Boyutu: 6.35 KB / İndirme Sayısı: 0)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[This is essentially a more restrictive version of my <a href="http://mybbhacks.zingaburga.com/showthread.php?tid=260" target="_blank" rel="noopener" class="mycode_url">PHP in Templates</a> plugin.  The restrictions aim to make this a "safe" plugin to use, that is, doesn't allow arbitrary PHP execution, but still gives the benefits of template conditionals.<br />
<br />
You may notice that this still uses the "phptpl" name, and thus, is incompatible with the PHP in Templates plugin.  Both plugins are very similar though.  The differences between this and the other plugin are:<ul class="mycode_list"><li>Admins cannot enter PHP code using &lt;?php ?&gt; tags<br />
</li>
<li>Conditionals in &lt;if&gt; and &lt;elseif&gt; tags are checked to ensure that they are "safe" (see below)<br />
</li>
<li><span style="font-style: italic;" class="mycode_i">file_get_contents</span> function has been removed from the allowable &lt;func ...&gt;...&lt;/func&gt; shortcuts<br />
</li>
<li>There's a new &lt;?=...?&gt; tag to print out the result of a "safe" PHP expression; although this is a tag, only PHP expressions may exist inside (do not terminate expressions with a semicolon), so you cannot nest other tags inside this<br />
Example (prints <span style="font-style: italic;" class="mycode_i">123654321</span>):<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>123&lt;?=substr("987654321", 3)?&gt;</code></div></div>
</li>
<li>There's also a new &lt;setvar <span style="font-style: italic;" class="mycode_i">name</span>&gt;...&lt;/setvar&gt; tag which can set variables; for safety reasons, these are actually stored in a &#36;tplvars array.  Examples:<br />
(just prints <span style="font-style: italic;" class="mycode_i">some text</span>)<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;setvar uselesstext&gt;"some text"&lt;/setvar&gt;<br />
{&#36;tplvars['uselesstext']}</code></div></div>
(prints out the username of the user with UID of 2)<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;setvar user2&gt;get_user(2)&lt;/setvar&gt;<br />
&lt;func htmlspecialchars_uni&gt;{&#36;tplvars['user2']['username']}&lt;/func&gt;</code></div></div>
</li>
</ul>
<br />
v1.0-1.3 of this plugin is based off v1.7 of PHP in Templates.<br />
As of v1.8, PHP 5.3 or later is required.<br />
This plugin can be used with the <a href="http://mybbhacks.zingaburga.com/showthread.php?tid=312" target="_blank" rel="noopener" class="mycode_url">Admin Security</a> plugin.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">"Safe expressions"</span><br />
This plugin implements "<a href="http://zingaburga.com/2010/09/safe-php-expressions-in-templates/" target="_blank" rel="noopener" class="mycode_url">safe expression</a>" checking; essentially, this does impose a bit of a performance hit, but, on the other hand, tries to ensure no "bad PHP" gets executed.<br />
For more information on what I consider to be a "safe expression", <a href="http://zingaburga.com/2010/09/safe-php-expressions-in-templates/" target="_blank" rel="noopener" class="mycode_url">see my blog post here</a>.<br />
For the purposes of this plugin, all valid PHP expressions are allowed, as long as they don't infringe on any of the following conditions:<ul class="mycode_list"><li>no assignment/modification operators (=, +=, |=, ++ etc) allowed<br />
</li>
<li>no statements such as include, exit, eval etc are allowed<br />
</li>
<li>no special constants such as PHP_OS, PHP_LIBDIR etc are allowed<br />
</li>
<li>backtick (`) operator not allowed<br />
</li>
<li>heredoc type strings not allowed (takes too much effort to handle) - use double quoted strings instead<br />
</li>
<li>double quoted strings may not contain the "{" character (takes too much effort to handle) - use string concatenation instead<br />
</li>
<li>array and object typecasting not allowed<br />
</li>
<li>no variable functions or method calls allowed<br />
</li>
<li>single line comments (//, #) not allowed<br />
</li>
<li>only some functions are allowed - see inc/plugins/phptpl_allowed_funcs.txt for a list of allowed functions<br />
</li>
</ul>
<br />
Source: <a href="https://mybbhacks.zingaburga.com/showthread.php?tid=464" target="_blank" rel="noopener" class="mycode_url">https://mybbhacks.zingaburga.com/showthread.php?tid=464</a><br /><!-- start: postbit_attachments_attachment -->
<!-- start: attachment_icon -->
<img src="https://gidenler.me/images/attachtypes/tar.png" title="7z Compressed File" border="0" alt=".7z" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=972" target="_blank" title="tplcond-1.9.7z">tplcond-1.9.7z</a>
<img src="/images/v2/link_icon.png" alt="link" height="10" width="10" /> (Dosya Boyutu: 6.35 KB / İndirme Sayısı: 0)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Postbit Tabs]]></title>
			<link>https://gidenler.me/thread-681.html</link>
			<pubDate>Tue, 18 Nov 2025 15:36:01 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://gidenler.me/member.php?action=profile&uid=2">Hasan</a>]]></dc:creator>
			<guid isPermaLink="false">https://gidenler.me/thread-681.html</guid>
			<description><![CDATA[This is a simple example how to use tabs in our postbit.<br />
Basically, we need Tabs Title and Tabs Contents.<br />
<br />
Textbox for Tabs Title:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Tabs 2 Title<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> tc2<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">select forum that we want to apply the tabs</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Textbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Maximum Text Length:</span> 20<br />
Modify it as our needs. Max chars for tabs title.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Blank Replacement Value:</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;if &#36;GLOBALS['threadfields']['tc2c'] then&gt;<br />
	&lt;td class="tcat tab" title="Second Contents" style="cursor: pointer; text-align: center;" abbr="tc2"&gt;<br />
		&lt;strong&gt;Second Contents&lt;/strong&gt;<br />
	&lt;/td&gt;<br />
&lt;/if&gt;<br />
</code></div></div>
Because this field isn't a required field, and the additional tabs contents isn't a required field as well, so we need to set the default tabs title. This is the default tabs title for contents 2. This default tabs title will be displayed if user didn't fill tabs 2 title, but they filled tabs 2 contents. Modify it as our needs.<br />
The reason why we put the conditional there is, this tabs shouldn't be displayed if there is no contents for this tabs.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format :</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;if &#36;GLOBALS['threadfields']['tc2c'] then&gt;<br />
	&lt;td class="tcat tab" title="{VALUE}" style="cursor: pointer; text-align: center;" abbr="tc2"&gt;<br />
		&lt;strong&gt;{VALUE}&lt;/strong&gt;<br />
	&lt;/td&gt;<br />
&lt;/if&gt;<br />
</code></div></div>
</li>
</ul>
<br />
Multiline Textbox for Tabs Contents:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Contents 2<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> tc2c<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">select forum that we want to apply the tabs</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Multiline Textbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Parsing :</span> Use MyBB Parser (MyCode)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">MyBB Parser Options :</span> Check all except Allow HTML.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format :</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;div id="tc2" class="content"&gt;{VALUE}&lt;/div&gt;<br />
</code></div></div>
</li>
</ul>
Repeat the two steps above as our needs. Use different key.<br />
<br />
In this example, we will use the jQuery tabs. If we have another tabs system, just use it.<br />
<br />
There is at least two template we need to edit for this:<br />
<br />
<ol type="1" class="mycode_list"><li><span style="font-style: italic;" class="mycode_i">showthread</span> template or <span style="font-style: italic;" class="mycode_i">template_prefix_showthread</span> template.<br />
Add this in the header of the template:<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;script type="text/javascript" src="{&#36;mybb-&gt;settings['bburl']}/jscripts/jquery-1.3.2.min.js"&gt;&lt;/script&gt;<br />
&lt;script type="text/javascript"&gt;<br />
	&#36;.noConflict();<br />
&lt;/script&gt;<br />
&lt;script type="text/javascript"&gt;<br />
	jQuery(document).ready(function(&#36;){<br />
		&#36;('.tab').click(function(){<br />
			&#36;('.at').removeClass('at');<br />
			&#36;(this).addClass('at');<br />
			&#36;('.content').slideUp();<br />
			var catshow = &#36;(this).attr('abbr');<br />
			&#36;('#'+ catshow).slideDown();<br />
		});<br />
	});<br />
&lt;/script&gt;<br />
&lt;style type="text/css"&gt;<br />
#tc2, #tc3 {<br />
	display: none;<br />
}<br />
.at {<br />
	background: #026CB1 url(images/thead_bg.gif) top left repeat-x;<br />
	color: #ffffff;<br />
}<br />
&lt;/style&gt;<br />
</code></div></div>
If we already have jQuery attached to all pages, remove line #1. Or, edit it if we have a different location for our jQuery.<br />
In this example, we have the jQuery in our <span style="font-style: italic;" class="mycode_i">jscripts</span> folder. Maybe we can use a newest jQuery version.<br />
For the ID in line #17, maybe we need to modify it, depends on what ID we use for our tabs contents.<br />
</li>
<li><span style="font-style: italic;" class="mycode_i">postbit_first</span> or <span style="font-style: italic;" class="mycode_i">template_prefix_postbit_first</span> template.<br />
An example how to apply the tabs title and tabs contents in this template.<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
{&#36;ignore_bit}<br />
&lt;a name="pid{&#36;post['pid']}" id="pid{&#36;post['pid']}"&gt;&lt;/a&gt;<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="{&#36;post_extra_style} {&#36;post_visibility}" id="post_{&#36;post['pid']}"&gt;<br />
	&lt;tbody&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="tcat" colspan="3"&gt;<br />
				&lt;div class="float_left smalltext"&gt;<br />
					{&#36;post['postdate']}, {&#36;post['posttime']} &lt;span id="edited_by_{&#36;post['pid']}"&gt;{&#36;post['editedmsg']}&lt;/span&gt;<br />
				&lt;/div&gt;<br />
				{&#36;post['posturl']}<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1 {&#36;unapproved_shade}" colspan="3"&gt;<br />
				&lt;table cellspacing="0" cellpadding="0" border="0" style="width: 100%;"&gt;<br />
					&lt;tr&gt;<br />
						&lt;td class="post_avatar" width="1" style="{&#36;post['avatar_padding']}"&gt;<br />
							{&#36;post['useravatar']}<br />
						&lt;/td&gt;<br />
						&lt;td class="post_author"&gt;<br />
							&lt;strong&gt;&lt;span class="largetext"&gt;{&#36;post['profilelink']}&lt;/span&gt;&lt;/strong&gt; {&#36;post['onlinestatus']}&lt;br /&gt;<br />
							&lt;span class="smalltext"&gt;<br />
								{&#36;post['usertitle']}&lt;br /&gt;<br />
								{&#36;post['userstars']}<br />
								{&#36;post['groupimage']}<br />
							&lt;/span&gt;<br />
						&lt;/td&gt;<br />
						&lt;td class="smalltext post_author_info" width="165"&gt;<br />
							{&#36;post['user_details']}<br />
						&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
				&lt;/table&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="tcat at tab" title="Main" style="cursor: pointer; text-align: center; width: 33%;" abbr="tc1"&gt;<br />
				&lt;strong&gt;Main&lt;/strong&gt;<br />
			&lt;/td&gt;<br />
			{&#36;GLOBALS['threadfields']['tc2']}<br />
			{&#36;GLOBALS['threadfields']['tc3']}<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow2 post_content {&#36;unapproved_shade}" colspan="3"&gt;<br />
				&lt;span class="smalltext"&gt;&lt;strong&gt;{&#36;post['icon']}{&#36;post['subject']} {&#36;post['subject_extra']}&lt;/strong&gt;&lt;/span&gt;<br />
				&lt;div id="tc1" class="content"&gt;<br />
					&lt;div class="post_body" id="pid_{&#36;post['pid']}"&gt;<br />
						{&#36;post['message']}<br />
					&lt;/div&gt;<br />
				&lt;/div&gt;<br />
				{&#36;GLOBALS['threadfields']['tc2c']}<br />
				{&#36;GLOBALS['threadfields']['tc3c']}<br />
				{&#36;post['attachments']}<br />
				{&#36;post['signature']}<br />
<br />
				&lt;div class="post_meta" id="post_meta_{&#36;post['pid']}"&gt;<br />
				{&#36;post['iplogged']}<br />
				&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1 post_buttons {&#36;unapproved_shade}" colspan="3"&gt;<br />
				&lt;div class="author_buttons float_left"&gt;<br />
					{&#36;post['button_email']}{&#36;post['button_pm']}{&#36;post['button_www']}{&#36;post['button_find']}<br />
				&lt;/div&gt;<br />
				&lt;div class="post_management_buttons float_right"&gt;{&#36;post['button_edit']}{&#36;post['button_quickdelete']}{&#36;post['button_quote']}{&#36;post['button_multiquote']}{&#36;post['button_report']}{&#36;post['button_warn']}{&#36;post['button_reply_pm']}{&#36;post['button_replyall_pm']}{&#36;post['button_forward_pm']}{&#36;post['button_delete_pm']}<br />
				&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/tbody&gt;<br />
&lt;/table&gt;<br />
</code></div></div>
</li>
</ol>
In the example above, we add two tabs title and tabs contents.<br />
<br />
Screenshots:<br />
Tabs 1 (Main Tab) - Tabs 2 - Tabs 3<br />
  <br />
<br />
Live Demo:<br />
<a href="http://www.14.mynie.co.cc/forumdisplay.php?fid=33&amp;filtertf_prefix=Postbit%20Tabs" target="_blank" rel="noopener" class="mycode_url">http://www.14.mynie.co.cc/forumdisplay.p...bit%20Tabs</a><br />
<br />
Try it yourself:<br />
<a href="http://www.14.mynie.co.cc/newthread.php?fid=33" target="_blank" rel="noopener" class="mycode_url">http://www.14.mynie.co.cc/newthread.php?fid=33</a>]]></description>
			<content:encoded><![CDATA[This is a simple example how to use tabs in our postbit.<br />
Basically, we need Tabs Title and Tabs Contents.<br />
<br />
Textbox for Tabs Title:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Tabs 2 Title<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> tc2<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">select forum that we want to apply the tabs</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Textbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Maximum Text Length:</span> 20<br />
Modify it as our needs. Max chars for tabs title.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Blank Replacement Value:</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;if &#36;GLOBALS['threadfields']['tc2c'] then&gt;<br />
	&lt;td class="tcat tab" title="Second Contents" style="cursor: pointer; text-align: center;" abbr="tc2"&gt;<br />
		&lt;strong&gt;Second Contents&lt;/strong&gt;<br />
	&lt;/td&gt;<br />
&lt;/if&gt;<br />
</code></div></div>
Because this field isn't a required field, and the additional tabs contents isn't a required field as well, so we need to set the default tabs title. This is the default tabs title for contents 2. This default tabs title will be displayed if user didn't fill tabs 2 title, but they filled tabs 2 contents. Modify it as our needs.<br />
The reason why we put the conditional there is, this tabs shouldn't be displayed if there is no contents for this tabs.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format :</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;if &#36;GLOBALS['threadfields']['tc2c'] then&gt;<br />
	&lt;td class="tcat tab" title="{VALUE}" style="cursor: pointer; text-align: center;" abbr="tc2"&gt;<br />
		&lt;strong&gt;{VALUE}&lt;/strong&gt;<br />
	&lt;/td&gt;<br />
&lt;/if&gt;<br />
</code></div></div>
</li>
</ul>
<br />
Multiline Textbox for Tabs Contents:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Contents 2<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> tc2c<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">select forum that we want to apply the tabs</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Multiline Textbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Parsing :</span> Use MyBB Parser (MyCode)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">MyBB Parser Options :</span> Check all except Allow HTML.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format :</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;div id="tc2" class="content"&gt;{VALUE}&lt;/div&gt;<br />
</code></div></div>
</li>
</ul>
Repeat the two steps above as our needs. Use different key.<br />
<br />
In this example, we will use the jQuery tabs. If we have another tabs system, just use it.<br />
<br />
There is at least two template we need to edit for this:<br />
<br />
<ol type="1" class="mycode_list"><li><span style="font-style: italic;" class="mycode_i">showthread</span> template or <span style="font-style: italic;" class="mycode_i">template_prefix_showthread</span> template.<br />
Add this in the header of the template:<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;script type="text/javascript" src="{&#36;mybb-&gt;settings['bburl']}/jscripts/jquery-1.3.2.min.js"&gt;&lt;/script&gt;<br />
&lt;script type="text/javascript"&gt;<br />
	&#36;.noConflict();<br />
&lt;/script&gt;<br />
&lt;script type="text/javascript"&gt;<br />
	jQuery(document).ready(function(&#36;){<br />
		&#36;('.tab').click(function(){<br />
			&#36;('.at').removeClass('at');<br />
			&#36;(this).addClass('at');<br />
			&#36;('.content').slideUp();<br />
			var catshow = &#36;(this).attr('abbr');<br />
			&#36;('#'+ catshow).slideDown();<br />
		});<br />
	});<br />
&lt;/script&gt;<br />
&lt;style type="text/css"&gt;<br />
#tc2, #tc3 {<br />
	display: none;<br />
}<br />
.at {<br />
	background: #026CB1 url(images/thead_bg.gif) top left repeat-x;<br />
	color: #ffffff;<br />
}<br />
&lt;/style&gt;<br />
</code></div></div>
If we already have jQuery attached to all pages, remove line #1. Or, edit it if we have a different location for our jQuery.<br />
In this example, we have the jQuery in our <span style="font-style: italic;" class="mycode_i">jscripts</span> folder. Maybe we can use a newest jQuery version.<br />
For the ID in line #17, maybe we need to modify it, depends on what ID we use for our tabs contents.<br />
</li>
<li><span style="font-style: italic;" class="mycode_i">postbit_first</span> or <span style="font-style: italic;" class="mycode_i">template_prefix_postbit_first</span> template.<br />
An example how to apply the tabs title and tabs contents in this template.<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
{&#36;ignore_bit}<br />
&lt;a name="pid{&#36;post['pid']}" id="pid{&#36;post['pid']}"&gt;&lt;/a&gt;<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="{&#36;post_extra_style} {&#36;post_visibility}" id="post_{&#36;post['pid']}"&gt;<br />
	&lt;tbody&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="tcat" colspan="3"&gt;<br />
				&lt;div class="float_left smalltext"&gt;<br />
					{&#36;post['postdate']}, {&#36;post['posttime']} &lt;span id="edited_by_{&#36;post['pid']}"&gt;{&#36;post['editedmsg']}&lt;/span&gt;<br />
				&lt;/div&gt;<br />
				{&#36;post['posturl']}<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1 {&#36;unapproved_shade}" colspan="3"&gt;<br />
				&lt;table cellspacing="0" cellpadding="0" border="0" style="width: 100%;"&gt;<br />
					&lt;tr&gt;<br />
						&lt;td class="post_avatar" width="1" style="{&#36;post['avatar_padding']}"&gt;<br />
							{&#36;post['useravatar']}<br />
						&lt;/td&gt;<br />
						&lt;td class="post_author"&gt;<br />
							&lt;strong&gt;&lt;span class="largetext"&gt;{&#36;post['profilelink']}&lt;/span&gt;&lt;/strong&gt; {&#36;post['onlinestatus']}&lt;br /&gt;<br />
							&lt;span class="smalltext"&gt;<br />
								{&#36;post['usertitle']}&lt;br /&gt;<br />
								{&#36;post['userstars']}<br />
								{&#36;post['groupimage']}<br />
							&lt;/span&gt;<br />
						&lt;/td&gt;<br />
						&lt;td class="smalltext post_author_info" width="165"&gt;<br />
							{&#36;post['user_details']}<br />
						&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
				&lt;/table&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="tcat at tab" title="Main" style="cursor: pointer; text-align: center; width: 33%;" abbr="tc1"&gt;<br />
				&lt;strong&gt;Main&lt;/strong&gt;<br />
			&lt;/td&gt;<br />
			{&#36;GLOBALS['threadfields']['tc2']}<br />
			{&#36;GLOBALS['threadfields']['tc3']}<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow2 post_content {&#36;unapproved_shade}" colspan="3"&gt;<br />
				&lt;span class="smalltext"&gt;&lt;strong&gt;{&#36;post['icon']}{&#36;post['subject']} {&#36;post['subject_extra']}&lt;/strong&gt;&lt;/span&gt;<br />
				&lt;div id="tc1" class="content"&gt;<br />
					&lt;div class="post_body" id="pid_{&#36;post['pid']}"&gt;<br />
						{&#36;post['message']}<br />
					&lt;/div&gt;<br />
				&lt;/div&gt;<br />
				{&#36;GLOBALS['threadfields']['tc2c']}<br />
				{&#36;GLOBALS['threadfields']['tc3c']}<br />
				{&#36;post['attachments']}<br />
				{&#36;post['signature']}<br />
<br />
				&lt;div class="post_meta" id="post_meta_{&#36;post['pid']}"&gt;<br />
				{&#36;post['iplogged']}<br />
				&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1 post_buttons {&#36;unapproved_shade}" colspan="3"&gt;<br />
				&lt;div class="author_buttons float_left"&gt;<br />
					{&#36;post['button_email']}{&#36;post['button_pm']}{&#36;post['button_www']}{&#36;post['button_find']}<br />
				&lt;/div&gt;<br />
				&lt;div class="post_management_buttons float_right"&gt;{&#36;post['button_edit']}{&#36;post['button_quickdelete']}{&#36;post['button_quote']}{&#36;post['button_multiquote']}{&#36;post['button_report']}{&#36;post['button_warn']}{&#36;post['button_reply_pm']}{&#36;post['button_replyall_pm']}{&#36;post['button_forward_pm']}{&#36;post['button_delete_pm']}<br />
				&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/tbody&gt;<br />
&lt;/table&gt;<br />
</code></div></div>
</li>
</ol>
In the example above, we add two tabs title and tabs contents.<br />
<br />
Screenshots:<br />
Tabs 1 (Main Tab) - Tabs 2 - Tabs 3<br />
  <br />
<br />
Live Demo:<br />
<a href="http://www.14.mynie.co.cc/forumdisplay.php?fid=33&amp;filtertf_prefix=Postbit%20Tabs" target="_blank" rel="noopener" class="mycode_url">http://www.14.mynie.co.cc/forumdisplay.p...bit%20Tabs</a><br />
<br />
Try it yourself:<br />
<a href="http://www.14.mynie.co.cc/newthread.php?fid=33" target="_blank" rel="noopener" class="mycode_url">http://www.14.mynie.co.cc/newthread.php?fid=33</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Garage Forum]]></title>
			<link>https://gidenler.me/thread-680.html</link>
			<pubDate>Tue, 18 Nov 2025 15:34:13 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://gidenler.me/member.php?action=profile&uid=2">Hasan</a>]]></dc:creator>
			<guid isPermaLink="false">https://gidenler.me/thread-680.html</guid>
			<description><![CDATA[<span style="font-weight: bold;" class="mycode_b">Update: <a href="http://mybbhacks.zingaburga.com/showthread.php?tid=456&amp;pid=9288#pid9288" target="_blank" rel="noopener" class="mycode_url">23 Oct 2011</a></span><br />
Maybe you can modify this example:<br />
<br />
Edit/create a forum. XThreads settings:<br />
<ol type="1" class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Prefix:</span> gf_ <span style="font-style: italic;" class="mycode_i">(Ooops! It is not Guardian Force in FF VIII though <img src="https://gidenler.me/images/v2/smile/=D.gif" alt="Big Grin" title="Big Grin" class="smilie smilie_4" />)</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Show first post on every showthread page:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Enable XThreads' Inline Forum Search:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Allow Blank Post Message:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Hide Forum:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
We need to put this forum url manually in our templates (e.g: <span style="font-style: italic;" class="mycode_i">header</span> template).<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Custom WOL Text:</span><ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Forum Display:</span> Viewing Garage<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">New Thread:</span> Submit A New Vehicle<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">New Reply:</span> Commenting &lt;a href="{1}"&gt;{2}&lt;/a&gt; Vehicle<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Show Thread:</span> Viewing &lt;a href="{1}"&gt;{2}&lt;/a&gt; Vehicle<br />
</li>
</ul>
</li>
</ol>
<br />
Custom Thread Fields Setting:<br />
<ol type="1" class="mycode_list"><li>Listbox for vehicles details layout:<br />
We will create two thread list layout. So, we need this to get the second layout. The only filtering fields here.<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Browse Vehicle<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> gfbv<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select our garage forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Listbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Height:</span> 1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Values List:</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>Browse Vehicle</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Allow Filtering:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
</ul>
<br />
</li>
<li>File Input for Vehicle Image:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Vehicle Image<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> gfvimg<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select our garage forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> File<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Valid File Extensions:</span> gif|png|jpg|jpeg<br />
Modify it as our needs. It is the extensions of image that can be uploaded.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Maximum File Size:</span> 102400<br />
Modify it as our needs. It is a maximum file size (in bytes) that can be uploaded.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 2<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Only accept uploaded images:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Image Thumbnail Generation:</span> 80x60|120x90|160x120<br />
Modify it as our needs. Depends on what thumbnails dimension we want to display for the image.<br />
</li>
</ul>
<br />
</li>
<li>Textbox for Price:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Price<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> gfprice<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select our garage forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Width:</span> 10<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 3<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Blank Replacement Value :</span> -<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format  :</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&#36; &lt;?=number_format({VALUE},2)?&gt;</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Text Mask Filter:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>^&#92;d+(&#92;.&#92;d{2})?&#36;</code></div></div>Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['gfprice']}</span>.<br />
</li>
</ul>
<br />
</li>
<li>Textbox for Odometer:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Odometer<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> gfodometer<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select our garage forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Width:</span> 20<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 4<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Blank Replacement Value :</span> -<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format  :</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;?=number_format({VALUE})?&gt; Miles</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Text Mask Filter:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>^&#92;d+&#36;</code></div></div>Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['gfodometer']}</span>.<br />
</li>
</ul>
<br />
</li>
<li>Listbox for vehicles color:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Color<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> gfcolor<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select our garage forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Listbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Height:</span> 1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Values List:</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>Blue<br />
Black<br />
White<br />
Silver<br />
Custom</code></div></div>Modify it as our needs.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 5<br />
Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['gfcolor']}</span>.<br />
</li>
</ul>
<br />
</li>
<li>File Input for additional vehicle image:<br />
Repeat this step as our needs. Use different key. e.g: gfvimg3, gfvimg4 and etc....<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Vehicle Image #2<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> gfvimg2<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select our garage forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> File<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Valid File Extensions:</span> gif|png|jpg|jpeg<br />
Modify it as our needs. It is the extensions of image that can be uploaded.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Maximum File Size:</span> 102400<br />
Modify it as our needs. It is a maximum file size (in bytes) that can be uploaded.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Only accept uploaded images:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Image Thumbnail Generation:</span> 160x120<br />
Modify it as our needs. Depends on what thumbnails dimension we want to display for the image.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format :</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;div class="float_left" style="margin: 5px; width: 180px; height: 140px;"&gt;&lt;div align="center"&gt;&lt;a href="{URL}" target="_blank"&gt;&lt;img src="{URL}/thumb160x120" alt="Image 2" title="{&#36;thread['subject']} Image 2" style="padding: 3px; border: 1px solid #CCCCCC;" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;<br />
</code></div></div>
Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['gfvimg2']['value']}</span>. If we repeat this step, we need to change the variable too, and place it in our <span style="font-style: italic;" class="mycode_i">gf_showthread</span> template.<br />
In this example, we only use two additional vehicle images. So, the variable is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['gfvimg2']['value']}</span> and <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['gfvimg3']['value']}</span>.<br />
</li>
</ul>
<br />
</li>
<li>File Input for modification image:<br />
Repeat this step as our needs. Use different key. e.g: gfmimg2, gfmimg3 and etc....<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Modification Image #1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> gfmimg1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select our garage forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> File<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Valid File Extensions:</span> gif|png|jpg|jpeg<br />
Modify it as our needs. It is the extensions of image that can be uploaded.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Maximum File Size:</span> 102400<br />
Modify it as our needs. It is a maximum file size (in bytes) that can be uploaded.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Only accept uploaded images:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Image Thumbnail Generation:</span> 160x120<br />
Modify it as our needs. Depends on what thumbnails dimension we want to display for the image.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format :</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;div class="float_left" style="margin: 5px; width: 180px; height: 140px;"&gt;&lt;div align="center"&gt;&lt;a href="{URL}" target="_blank"&gt;&lt;img src="{URL}/thumb160x120" alt="Modification 1" title="{&#36;thread['subject']} Modification 1" style="padding: 3px; border: 1px solid #CCCCCC;" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;<br />
</code></div></div>
Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['gfmimg1']['value']}</span>. If we repeat this step, we need to change the variable too, and place it in our <span style="font-style: italic;" class="mycode_i">gf_showthread</span> template.<br />
In this example, we only use two modification images. So, the variable is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['gfmimg1']['value']}</span> and <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['gfmimg2']['value']}</span>.<br />
</li>
</ul>
</li>
</ol>
<br />
Now, we need to create new templates in Global Template.<br />
Admin CP -&gt; Templates &amp; Style -&gt; Templates -&gt; Global Templates:<br />
<ol type="1" class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> gf_forumdisplay_nothreads<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;div&gt;&lt;strong&gt;&lt;em&gt;{&#36;lang-&gt;nothreads}&lt;/em&gt;&lt;/strong&gt;&lt;/div&gt;<br />
</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> gf_forumdisplay_searchforum_inline<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;br class="clear" /&gt;<br />
&lt;table border="0" cellspacing="{&#36;GLOBALS['theme']['borderwidth']}" cellpadding="{&#36;GLOBALS['theme']['tablespace']}" class="tborder"&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="thead" colspan="{&#36;colspan}"&gt;<br />
			&lt;strong&gt;Search Vehicles&lt;/strong&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="trow1" align="center"&gt;<br />
			&lt;form action="forumdisplay.php" method="get"&gt;<br />
				&lt;input type="text" class="textbox" name="search" value="{&#36;searchval}" /&gt;&lt;br /&gt;{&#36;gobutton}<br />
				&lt;input type="hidden" name="fid" value="{&#36;fid}" /&gt;<br />
				&lt;input type="hidden" name="sortby" value="{&#36;sortby}" /&gt;<br />
				&lt;input type="hidden" name="order" value="{&#36;sortordernow}" /&gt;<br />
				&lt;input type="hidden" name="datecut" value="{&#36;datecut}" /&gt;<br />
			&lt;/form&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
&lt;/table&gt;<br />
</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> gf_forumdisplay_sticky_sep<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;div style="display: none;"&gt;&lt;/div&gt;<br />
</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> gf_forumdisplay_thread<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;div class="float_left" style="width: 49%;{&#36;filters_set['__all']['hiddencss']}"&gt;<br />
<br />
	&lt;div style="text-align: center; width: 80%; margin: auto auto;"&gt;<br />
		&lt;div style="height: 100px; vertical align: middle;"&gt;<br />
			&lt;a href="{&#36;threadurl}"&gt;&lt;img src="&lt;img src="&lt;img src="{&#36;GLOBALS['threadfields']['gfvimg']['thumbs']['120x90']['url']}" alt="View {&#36;thread['subject']}" title="View {&#36;thread['subject']}" /&gt;&lt;/a&gt;<br />
		&lt;/div&gt;<br />
		&lt;span&gt;&lt;a href="{&#36;thread['threadlink']}"&gt;{&#36;thread['subject']}&lt;/a&gt;{&#36;thread['multipage']}&lt;/span&gt;<br />
		&lt;div class="author smalltext"&gt;Owner: {&#36;thread['profilelink']}&lt;/div&gt;<br />
		&lt;div class="author smalltext"&gt;Added: {&#36;thread['threaddate']} &amp;ndash; {&#36;thread['threadtime']}&lt;/div&gt;<br />
	&lt;/div&gt;<br />
&lt;/div&gt;<br />
&lt;div style="{&#36;filters_set['__all']['visiblecss']}"&gt;<br />
	&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="border: 0px;"&gt;<br />
		&lt;tr&gt;<br />
			{&#36;rating}<br />
			&lt;td class="tcat smalltext" align="center" colspan="{&#36;colspan}"&gt;<br />
				&lt;strong&gt;&lt;a href="{&#36;thread['threadlink']}" class="{&#36;inline_edit_class} {&#36;new_class}" id="tid_{&#36;inline_edit_tid}"&gt;{&#36;thread['subject']}&lt;/a&gt;&lt;/strong&gt;<br />
			&lt;/td&gt;<br />
			{&#36;modbit}<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="{&#36;bgcolor} smalltext" rowspan="2" width="1" align="center" valign="middle"&gt;<br />
				&lt;a href="{&#36;threadurl}"&gt;&lt;img src="{&#36;GLOBALS['threadfields']['gfvimg']['thumbs']['120x90']['url']}" alt="View {&#36;thread['subject']}" title="View {&#36;thread['subject']}" /&gt;&lt;/a&gt;<br />
			&lt;/td&gt;<br />
			&lt;td class="{&#36;bgcolor}" colspan="4"&gt;<br />
				&lt;div&gt;Owner: {&#36;thread['profilelink']}&lt;/div&gt;<br />
				&lt;div&gt;Added: {&#36;thread['threaddate']} &amp;ndash; {&#36;thread['threadtime']}&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="{&#36;bgcolor} smalltext" align="center" height="25"&gt;<br />
				Comments: &lt;a href="javascript:MyBB.whoPosted({&#36;thread['tid']});"&gt;{&#36;thread['replies']}&lt;/a&gt;{&#36;unapproved_posts}<br />
			&lt;/td&gt;<br />
			&lt;td class="{&#36;bgcolor} smalltext" align="center" width="25%"&gt;<br />
				Odometer: {&#36;GLOBALS['threadfields']['gfodometer']}<br />
			&lt;/td&gt;<br />
			&lt;td class="{&#36;bgcolor} smalltext" align="center" width="15%"&gt;<br />
				Views: {&#36;thread['views']}<br />
			&lt;/td&gt;<br />
			&lt;td class="{&#36;bgcolor} smalltext" align="center" width="15%"&gt;<br />
				Price: {&#36;GLOBALS['threadfields']['gfprice']}<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/table&gt;<br />
&lt;/div&gt;<br />
</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> gf_forumdisplay_threadlist<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;div class="float_left"&gt;<br />
	{&#36;multipage}<br />
&lt;/div&gt;<br />
&lt;div class="float_right"&gt;<br />
	{&#36;newthread}<br />
&lt;/div&gt;<br />
&lt;table width="100%" border="0"&gt;<br />
	&lt;tr&gt;<br />
		&lt;td width="200" valign="top"&gt;<br />
			&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="thead" colspan="{&#36;colspan}"&gt;<br />
						&lt;strong&gt;{&#36;foruminfo['name']}&lt;/strong&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="tcat"&gt;<br />
						&lt;strong&gt;{&#36;GLOBALS['threadcount']} Vehicles&lt;/strong&gt;<br />
					&lt;/td&gt;<br />
					{&#36;inlinemodcol}<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="trow1" colspan="{&#36;colspan}"&gt;<br />
						&lt;strong&gt;&lt;a href="{&#36;forumurl}"&gt;Garage Home&lt;/a&gt;&lt;/strong&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="trow1" colspan="{&#36;colspan}"&gt;<br />
						&lt;strong&gt;&lt;a href="{&#36;forumurl_q}filtertf_gfbv=Browse Vehicle"&gt;Vehicles Details&lt;/a&gt;&lt;/strong&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
			&lt;/table&gt;<br />
			&lt;br /&gt;<br />
			&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="thead"&gt;<br />
						&lt;strong&gt;Sort By&lt;/strong&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="trow1"&gt;<br />
						&lt;strong&gt;&lt;a href="{&#36;sorturl}&amp;amp;sortby=subject&amp;amp;order=asc"&gt;{&#36;lang-&gt;thread}&lt;/a&gt; {&#36;orderarrow['subject']}&lt;/strong&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="trow1"&gt;<br />
						&lt;strong&gt;&lt;a href="{&#36;sorturl}&amp;amp;sortby=starter&amp;amp;order=asc"&gt;{&#36;lang-&gt;author}&lt;/a&gt; {&#36;orderarrow['starter']}&lt;/strong&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="trow1"&gt;<br />
						&lt;strong&gt;&lt;a href="{&#36;sorturl}&amp;amp;sortby=replies&amp;amp;order=desc"&gt;{&#36;lang-&gt;replies}&lt;/a&gt; {&#36;orderarrow['replies']}&lt;/strong&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="trow1"&gt;<br />
						&lt;strong&gt;&lt;a href="{&#36;sorturl}&amp;amp;sortby=views&amp;amp;order=desc"&gt;{&#36;lang-&gt;views}&lt;/a&gt; {&#36;orderarrow['views']}&lt;/strong&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				{&#36;ratingcol}<br />
				&lt;tr&gt;<br />
					&lt;td class="trow1"&gt;<br />
						&lt;strong&gt;&lt;a href="{&#36;sorturl}&amp;amp;sortby=lastpost&amp;amp;order=desc"&gt;{&#36;lang-&gt;lastpost}&lt;/a&gt; {&#36;orderarrow['lastpost']}&lt;/strong&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
			&lt;/table&gt;<br />
			{&#36;searchforum}<br />
		&lt;/td&gt;<br />
		&lt;td valign="top"&gt;<br />
			&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="{&#36;filters_set['__all']['visiblecss']}"&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="thead"&gt;<br />
						&lt;strong&gt;{&#36;foruminfo['name']} &amp;ndash; Vehicles Details&lt;/strong&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
			&lt;/table&gt;<br />
			{&#36;threads}{&#36;nullthreads}<br />
			&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="{&#36;filters_set['__all']['visiblecss']}"&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="tfoot" align="right" colspan="{&#36;colspan}"&gt;<br />
						&lt;form action="forumdisplay.php" method="get"&gt;<br />
							&lt;input type="hidden" name="fid" value="{&#36;fid}" /&gt;<br />
							&lt;select name="sortby"&gt;<br />
								&lt;option value="subject" {&#36;sortsel['subject']}&gt;{&#36;lang-&gt;sort_by_subject}&lt;/option&gt;<br />
								&lt;option value="lastpost" {&#36;sortsel['lastpost']}&gt;{&#36;lang-&gt;sort_by_lastpost}&lt;/option&gt;<br />
								&lt;option value="starter" {&#36;sortsel['starter']}&gt;{&#36;lang-&gt;sort_by_starter}&lt;/option&gt;<br />
								&lt;option value="started" {&#36;sortsel['started']}&gt;{&#36;lang-&gt;sort_by_started}&lt;/option&gt;<br />
								{&#36;ratingsort}<br />
								&lt;option value="replies" {&#36;sortsel['replies']}&gt;{&#36;lang-&gt;sort_by_replies}&lt;/option&gt;<br />
								&lt;option value="views" {&#36;sortsel['views']}&gt;{&#36;lang-&gt;sort_by_views}&lt;/option&gt;<br />
							&lt;/select&gt;<br />
							&lt;select name="order"&gt;<br />
								&lt;option value="asc" {&#36;ordersel['asc']}&gt;{&#36;lang-&gt;sort_order_asc}&lt;/option&gt;<br />
								&lt;option value="desc" {&#36;ordersel['desc']}&gt;{&#36;lang-&gt;sort_order_desc}&lt;/option&gt;<br />
							&lt;/select&gt;<br />
							&lt;select name="datecut"&gt;<br />
								&lt;option value="1" {&#36;datecutsel['1']}&gt;{&#36;lang-&gt;datelimit_1day}&lt;/option&gt;<br />
								&lt;option value="5" {&#36;datecutsel['5']}&gt;{&#36;lang-&gt;datelimit_5days}&lt;/option&gt;<br />
								&lt;option value="10" {&#36;datecutsel['10']}&gt;{&#36;lang-&gt;datelimit_10days}&lt;/option&gt;<br />
								&lt;option value="20" {&#36;datecutsel['20']}&gt;{&#36;lang-&gt;datelimit_20days}&lt;/option&gt;<br />
								&lt;option value="50" {&#36;datecutsel['50']}&gt;{&#36;lang-&gt;datelimit_50days}&lt;/option&gt;<br />
								&lt;option value="75" {&#36;datecutsel['75']}&gt;{&#36;lang-&gt;datelimit_75days}&lt;/option&gt;<br />
								&lt;option value="100" {&#36;datecutsel['100']}&gt;{&#36;lang-&gt;datelimit_100days}&lt;/option&gt;<br />
								&lt;option value="365" {&#36;datecutsel['365']}&gt;{&#36;lang-&gt;datelimit_lastyear}&lt;/option&gt;<br />
								&lt;option value="9999" {&#36;datecutsel['9999']}&gt;{&#36;lang-&gt;datelimit_beginning}&lt;/option&gt;<br />
							&lt;/select&gt;<br />
							{&#36;gobutton}<br />
						&lt;/form&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
			&lt;/table&gt;<br />
			&lt;div class="float_right" style="margin-top: 4px;{&#36;filters_set['__all']['visiblecss']}"&gt;<br />
				{&#36;newthread}<br />
			&lt;/div&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;div class="float_left"&gt;<br />
	{&#36;multipage}<br />
&lt;/div&gt;<br />
&lt;br style="clear: both;" /&gt;<br />
&lt;br /&gt;<br />
&lt;div class="float_right" style="text-align: right;"&gt;<br />
	{&#36;inlinemod}<br />
	{&#36;forumjump}<br />
&lt;/div&gt;<br />
&lt;br style="clear: both" /&gt;<br />
&lt;div class="smalltext" align="center"&gt;<br />
Garage Forum&lt;br /&gt;<br />
Powered By &lt;a href="http://mybbhacks.zingaburga.com"&gt;XThreads&lt;/a&gt; - &lt;a href="http://mybbhacks.zingaburga.com"&gt;MyBB Hacks&lt;/a&gt;<br />
&lt;/div&gt;<br />
{&#36;inline_edit_js}<br />
</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> gf_forumdisplay_threadlist_rating<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;tr&gt;<br />
	&lt;td class="trow1"&gt;<br />
		&lt;strong&gt;&lt;a href="{&#36;sorturl}&amp;amp;sortby=rating&amp;amp;order=desc"&gt;{&#36;lang-&gt;rating}&lt;/a&gt; {&#36;orderarrow['rating']}&lt;/strong&gt;<br />
		&lt;script type="text/javascript" src="jscripts/rating.js?ver=1400"&gt;&lt;/script&gt;<br />
		&lt;script type="text/javascript"&gt;<br />
		&lt;!--<br />
			lang.stars = new Array();<br />
			lang.stars[1] = "{&#36;lang-&gt;one_star}";<br />
			lang.stars[2] = "{&#36;lang-&gt;two_stars}";<br />
			lang.stars[3] = "{&#36;lang-&gt;three_stars}";<br />
			lang.stars[4] = "{&#36;lang-&gt;four_stars}";<br />
			lang.stars[5] = "{&#36;lang-&gt;five_stars}";<br />
		// <img src="https://gidenler.me/images/smilies/sag_ok.png" alt="Sağ ok" title="Sağ ok" class="smilie smilie_54" /><br />
		&lt;/script&gt;<br />
	&lt;/td&gt;<br />
&lt;/tr&gt;<br />
</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> gf_forumdisplay_threads_sep<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;div style="display: none;"&gt;&lt;/div&gt;<br />
</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> gf_forumdisplay_thread_modbit<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;td class="{&#36;bgcolor}" align="center" style="width: 1px; white-space: nowrap" rowspan="3"&gt;&lt;input type="checkbox" class="checkbox" name="inlinemod_{&#36;multitid}" id="inlinemod_{&#36;multitid}" value="1" {&#36;inlinecheck}  /&gt;&lt;/td&gt;<br />
</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> gf_forumdisplay_thread_rating<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;td align="center" class="tcat" id="rating_table_{&#36;thread['tid']}"&gt;<br />
	&lt;ul class="star_rating{&#36;not_rated}" id="rating_thread_{&#36;thread['tid']}"&gt;<br />
		&lt;li style="width: {&#36;thread['width']}%" class="current_rating" id="current_rating_{&#36;thread['tid']}"&gt;{&#36;ratingvotesav}&lt;/li&gt;<br />
	&lt;/ul&gt;<br />
	&lt;script type="text/javascript"&gt;<br />
	&lt;!--<br />
		Rating.build_forumdisplay({&#36;thread['tid']}, { width: '{&#36;thread['width']}', extra_class: '{&#36;not_rated}', current_average: '{&#36;ratingvotesav}' });<br />
	// <img src="https://gidenler.me/images/smilies/sag_ok.png" alt="Sağ ok" title="Sağ ok" class="smilie smilie_54" /><br />
	&lt;/script&gt;<br />
&lt;/td&gt;<br />
</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> gf_postbit_first<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
{&#36;ignore_bit}<br />
&lt;a name="pid{&#36;post['pid']}" id="pid{&#36;post['pid']}"&gt;&lt;/a&gt;<br />
&lt;table border="0" cellspacing="0" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="{&#36;post_extra_style} {&#36;post_visibility}" id="post_{&#36;post['pid']}"&gt;<br />
	&lt;tbody&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="tcat" colspan="2"&gt;<br />
				&lt;div class="float_left smalltext"&gt;<br />
					&lt;strong&gt;{&#36;thread['subject']} &amp;ndash; Overview&lt;/strong&gt; &lt;span id="edited_by_{&#36;post['pid']}"&gt;{&#36;post['editedmsg']}&lt;/span&gt;<br />
				&lt;/div&gt;<br />
				{&#36;post['posturl']}<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1 {&#36;unapproved_shade}" valign="top"&gt;<br />
				&lt;table width="100%" border="0"&gt;<br />
					&lt;tr&gt;<br />
						&lt;td width="150"&gt;Owner&lt;/td&gt;<br />
						&lt;td width="1"&gt;:&lt;/td&gt;<br />
						&lt;td&gt;{&#36;post['profilelink']}&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
					&lt;tr&gt;<br />
						&lt;td width="150"&gt;Data Added&lt;/td&gt;<br />
						&lt;td width="1"&gt;:&lt;/td&gt;<br />
						&lt;td&gt;{&#36;thread['threaddate']} &amp;ndash; {&#36;thread['threadtime']}&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
					&lt;tr&gt;<br />
						&lt;td width="150"&gt;Views&lt;/td&gt;<br />
						&lt;td width="1"&gt;:&lt;/td&gt;<br />
						&lt;td&gt;{&#36;thread['views']}&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
					&lt;tr&gt;<br />
						&lt;td width="150"&gt;Color&lt;/td&gt;<br />
						&lt;td width="1"&gt;:&lt;/td&gt;<br />
						&lt;td&gt;{&#36;GLOBALS['threadfields']['gfcolor']}&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
					&lt;tr&gt;<br />
						&lt;td width="150"&gt;Price&lt;/td&gt;<br />
						&lt;td width="1"&gt;:&lt;/td&gt;<br />
						&lt;td&gt;{&#36;GLOBALS['threadfields']['gfprice']}&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
					&lt;tr&gt;<br />
						&lt;td width="150"&gt;Odometer&lt;/td&gt;<br />
						&lt;td width="1"&gt;:&lt;/td&gt;<br />
						&lt;td&gt;{&#36;GLOBALS['threadfields']['gfodometer']}&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
				&lt;/table&gt;<br />
			&lt;/td&gt;<br />
			&lt;td class="trow1 {&#36;unapproved_shade}" width="1" valign="middle" align="center"&gt;<br />
				&lt;a href="{&#36;GLOBALS['threadfields']['gfvimg']['url']}" target="_blank"&gt;&lt;img src="{&#36;GLOBALS['threadfields']['gfvimg']['thumbs']['160x120']['url']}" alt="{&#36;post['subject']}" title="{&#36;post['subject']}" /&gt;&lt;/a&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td colspan="2" class="trow1 {&#36;unapproved_shade}"&gt;<br />
				&lt;div class="post_body" id="pid_{&#36;post['pid']}"&gt;<br />
					{&#36;post['message']}<br />
				&lt;/div&gt;<br />
				&lt;div class="post_meta" id="post_meta_{&#36;post['pid']}"&gt;<br />
					{&#36;post['iplogged']}<br />
				&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1 post_buttons {&#36;unapproved_shade}" colspan="2"&gt;<br />
				&lt;div class="author_buttons float_left"&gt;<br />
					{&#36;post['button_email']}{&#36;post['button_pm']}{&#36;post['button_www']}{&#36;post['button_find']}<br />
				&lt;/div&gt;<br />
				&lt;div class="post_management_buttons float_right"&gt;{&#36;post['button_edit']}{&#36;post['button_quickdelete']}{&#36;post['button_quote']}{&#36;post['button_multiquote']}{&#36;post['button_report']}{&#36;post['button_warn']}{&#36;post['button_reply_pm']}{&#36;post['button_replyall_pm']}{&#36;post['button_forward_pm']}{&#36;post['button_delete_pm']}<br />
				&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/tbody&gt;<br />
&lt;/table&gt;<br />
</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> gf_postbit_first_classic<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
{&#36;ignore_bit}<br />
&lt;a name="pid{&#36;post['pid']}" id="pid{&#36;post['pid']}"&gt;&lt;/a&gt;<br />
&lt;table border="0" cellspacing="0" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="{&#36;post_extra_style} {&#36;post_visibility}" id="post_{&#36;post['pid']}"&gt;<br />
	&lt;tbody&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="tcat" colspan="2"&gt;<br />
				&lt;div class="float_left smalltext"&gt;<br />
					&lt;strong&gt;{&#36;thread['subject']} &amp;ndash; Overview&lt;/strong&gt; &lt;span id="edited_by_{&#36;post['pid']}"&gt;{&#36;post['editedmsg']}&lt;/span&gt;<br />
				&lt;/div&gt;<br />
				{&#36;post['posturl']}<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1 {&#36;unapproved_shade}" valign="top"&gt;<br />
				&lt;table width="100%" border="0"&gt;<br />
					&lt;tr&gt;<br />
						&lt;td width="150"&gt;Owner&lt;/td&gt;<br />
						&lt;td width="1"&gt;:&lt;/td&gt;<br />
						&lt;td&gt;{&#36;post['profilelink']}&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
					&lt;tr&gt;<br />
						&lt;td width="150"&gt;Data Added&lt;/td&gt;<br />
						&lt;td width="1"&gt;:&lt;/td&gt;<br />
						&lt;td&gt;{&#36;thread['threaddate']} &amp;ndash; {&#36;thread['threadtime']}&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
					&lt;tr&gt;<br />
						&lt;td width="150"&gt;Views&lt;/td&gt;<br />
						&lt;td width="1"&gt;:&lt;/td&gt;<br />
						&lt;td&gt;{&#36;thread['views']}&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
					&lt;tr&gt;<br />
						&lt;td width="150"&gt;Color&lt;/td&gt;<br />
						&lt;td width="1"&gt;:&lt;/td&gt;<br />
						&lt;td&gt;{&#36;GLOBALS['threadfields']['gfcolor']}&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
					&lt;tr&gt;<br />
						&lt;td width="150"&gt;Price&lt;/td&gt;<br />
						&lt;td width="1"&gt;:&lt;/td&gt;<br />
						&lt;td&gt;{&#36;GLOBALS['threadfields']['gfprice']}&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
					&lt;tr&gt;<br />
						&lt;td width="150"&gt;Odometer&lt;/td&gt;<br />
						&lt;td width="1"&gt;:&lt;/td&gt;<br />
						&lt;td&gt;{&#36;GLOBALS['threadfields']['gfodometer']}&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
				&lt;/table&gt;<br />
			&lt;/td&gt;<br />
			&lt;td class="trow1 {&#36;unapproved_shade}" width="1" valign="middle" align="center"&gt;<br />
				&lt;a href="{&#36;GLOBALS['threadfields']['gfvimg']['url']}" target="_blank"&gt;&lt;img src="{&#36;GLOBALS['threadfields']['gfvimg']['thumbs']['160x120']['url']}" alt="{&#36;post['subject']}" title="{&#36;post['subject']}" /&gt;&lt;/a&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td colspan="2" class="trow1 {&#36;unapproved_shade}"&gt;<br />
				&lt;div class="post_body" id="pid_{&#36;post['pid']}"&gt;<br />
					{&#36;post['message']}<br />
				&lt;/div&gt;<br />
				&lt;div class="post_meta" id="post_meta_{&#36;post['pid']}"&gt;<br />
					{&#36;post['iplogged']}<br />
				&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1 post_buttons {&#36;unapproved_shade}" colspan="2"&gt;<br />
				&lt;div class="author_buttons float_left"&gt;<br />
					{&#36;post['button_email']}{&#36;post['button_pm']}{&#36;post['button_www']}{&#36;post['button_find']}<br />
				&lt;/div&gt;<br />
				&lt;div class="post_management_buttons float_right"&gt;{&#36;post['button_edit']}{&#36;post['button_quickdelete']}{&#36;post['button_quote']}{&#36;post['button_multiquote']}{&#36;post['button_report']}{&#36;post['button_warn']}{&#36;post['button_reply_pm']}{&#36;post['button_replyall_pm']}{&#36;post['button_forward_pm']}{&#36;post['button_delete_pm']}<br />
				&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/tbody&gt;<br />
&lt;/table&gt;<br />
</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> gf_showthread<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;{&#36;thread['subject']}&lt;/title&gt;<br />
{&#36;headerinclude}<br />
&lt;script type="text/javascript"&gt;<br />
&lt;!--<br />
	var quickdelete_confirm = "{&#36;lang-&gt;quickdelete_confirm}";<br />
// <img src="https://gidenler.me/images/smilies/sag_ok.png" alt="Sağ ok" title="Sağ ok" class="smilie smilie_54" /><br />
&lt;/script&gt;<br />
&lt;script type="text/javascript" src="jscripts/thread.js?ver=1400"&gt;&lt;/script&gt;<br />
&lt;script type="text/javascript" src="jscripts/jquery-1.3.2.min.js"&gt;&lt;/script&gt;<br />
&lt;script type="text/javascript"&gt;<br />
	&#36;.noConflict();<br />
&lt;/script&gt;<br />
&lt;style type="text/css"&gt;<br />
.at {background: #026CB1 url(images/thead_bg.gif) top left repeat-x;color: #ffffff;}<br />
#image, #mod, #details {display: none;}<br />
&lt;/style&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
{&#36;header}<br />
{&#36;pollbox}<br />
&lt;div class="float_left"&gt;<br />
	{&#36;multipage}<br />
&lt;/div&gt;<br />
&lt;div class="float_right"&gt;<br />
	{&#36;newreply}<br />
&lt;/div&gt;<br />
&lt;br style="clear: both;" /&gt;<br />
&lt;table border="0" width="100%"&gt;<br />
	&lt;tr&gt;<br />
		&lt;td width="200" valign="top"&gt;<br />
			&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="thead"&gt;<br />
						&lt;strong&gt;{&#36;forum['name']}&lt;/strong&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="trow1" colspan="{&#36;colspan}"&gt;<br />
						&lt;strong&gt;&lt;a href="{&#36;forumurl}"&gt;Garage Home&lt;/a&gt;&lt;/strong&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="trow1" colspan="{&#36;colspan}"&gt;<br />
						&lt;strong&gt;&lt;a href="{&#36;forumurl_q}filtertf_gfbv=Browse Vehicle"&gt;Vehicle Details&lt;/a&gt;&lt;/strong&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
			&lt;/table&gt;<br />
			{&#36;search_thread}<br />
		&lt;/td&gt;<br />
		&lt;td valign="top"&gt;<br />
			&lt;script type="text/javascript"&gt;<br />
				jQuery(document).ready(function(&#36;){<br />
					&#36;('.tab').click(function(){<br />
						&#36;('.at').removeClass('at');<br />
						&#36;(this).addClass('at');<br />
						&#36;('.content').slideUp();<br />
						var catshow = &#36;(this).attr('abbr');<br />
						&#36;('#'+ catshow).slideDown();<br />
					});<br />
				});<br />
			&lt;/script&gt;<br />
			&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="clear: both; border-bottom-width: 0;"&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="tcat at tab" title="Overview" style="cursor: pointer; text-align: center;" abbr="overview"&gt;<br />
						&lt;strong&gt;Overview&lt;/strong&gt;<br />
					&lt;/td&gt;<br />
					&lt;td class="tcat tab" title="Images" style="cursor: pointer; text-align: center;" abbr="image"&gt;<br />
						&lt;strong&gt;Images&lt;/strong&gt;<br />
					&lt;/td&gt;<br />
					&lt;td class="tcat tab" title="Vehicle Modification" style="cursor: pointer; text-align: center;" abbr="mod"&gt;<br />
						&lt;strong&gt;Modification&lt;/strong&gt;<br />
					&lt;/td&gt;<br />
					&lt;td class="tcat tab" title="Vehicle Details" style="cursor: pointer; text-align: center;" abbr="details"&gt;<br />
						&lt;strong&gt;Details&lt;/strong&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
			&lt;/table&gt;<br />
			&lt;table border="0" cellspacing="0" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="clear: both; border-bottom-width: 0; border-top-width: 0;"&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="thead" colspan="2"&gt;<br />
						{&#36;ratethread}<br />
						&lt;strong&gt;&lt;a href="{&#36;threadurl}"&gt;{&#36;thread['subject']}&lt;/a&gt;&lt;/strong&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
			&lt;/table&gt;<br />
			&lt;div id="overview" class="content"&gt;<br />
				{&#36;first_post}<br />
			&lt;/div&gt;<br />
			&lt;div id="image" class="content"&gt;<br />
				&lt;table border="0" cellspacing="0" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
					&lt;tr&gt;<br />
						&lt;td class="tcat"&gt;<br />
							&lt;div class="float_left smalltext"&gt;<br />
								&lt;strong&gt;{&#36;thread['subject']} - Images&lt;/strong&gt;<br />
							&lt;/div&gt;<br />
						&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
					&lt;tr&gt;<br />
						&lt;td class="trow1" align="center"&gt;<br />
							{&#36;GLOBALS['threadfields']['gfvimg2']['value']}{&#36;GLOBALS['threadfields']['gfvimg3']['value']}<br />
						&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
				&lt;/table&gt;<br />
			&lt;/div&gt;<br />
			&lt;div id="mod" class="content"&gt;<br />
				&lt;table border="0" cellspacing="0" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
					&lt;tr&gt;<br />
						&lt;td class="tcat"&gt;<br />
							&lt;div class="float_left smalltext"&gt;<br />
								&lt;strong&gt;{&#36;thread['subject']} - Modification&lt;/strong&gt;<br />
							&lt;/div&gt;<br />
						&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
					&lt;tr&gt;<br />
						&lt;td class="trow1" align="center"&gt;<br />
							{&#36;GLOBALS['threadfields']['gfmimg1']['value']}{&#36;GLOBALS['threadfields']['gfmimg2']['value']}<br />
						&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
				&lt;/table&gt;<br />
			&lt;/div&gt;<br />
			&lt;div id="details" class="content"&gt;<br />
				&lt;table border="0" cellspacing="0" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
					&lt;tr&gt;<br />
						&lt;td class="tcat" colspan="3"&gt;<br />
							&lt;div class="float_left smalltext"&gt;<br />
								&lt;strong&gt;{&#36;thread['subject']} - Details&lt;/strong&gt;<br />
							&lt;/div&gt;<br />
						&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
					&lt;tr&gt;<br />
						&lt;td class="trow1" width="150"&gt;Data Added&lt;/td&gt;<br />
						&lt;td class="trow1" width="1"&gt;:&lt;/td&gt;<br />
						&lt;td class="trow1"&gt;{&#36;thread['threaddate']} - {&#36;thread['threadtime']}&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
					&lt;tr&gt;<br />
						&lt;td class="trow1" width="150"&gt;Views&lt;/td&gt;<br />
						&lt;td class="trow1" width="1"&gt;:&lt;/td&gt;<br />
						&lt;td class="trow1"&gt;{&#36;thread['views']}&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
					&lt;tr&gt;<br />
						&lt;td class="trow1" width="150"&gt;Color&lt;/td&gt;<br />
						&lt;td class="trow1" width="1"&gt;:&lt;/td&gt;<br />
						&lt;td class="trow1"&gt;{&#36;GLOBALS['threadfields']['gfcolor']}&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
					&lt;tr&gt;<br />
						&lt;td class="trow1" width="150"&gt;Price&lt;/td&gt;<br />
						&lt;td class="trow1" width="1"&gt;:&lt;/td&gt;<br />
						&lt;td class="trow1"&gt;{&#36;GLOBALS['threadfields']['gfprice']}&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
					&lt;tr&gt;<br />
						&lt;td class="trow1" width="150"&gt;Odometer&lt;/td&gt;<br />
						&lt;td class="trow1" width="1"&gt;:&lt;/td&gt;<br />
						&lt;td class="trow1"&gt;{&#36;GLOBALS['threadfields']['gfodometer']}&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
				&lt;/table&gt;<br />
			&lt;/div&gt;<br />
			&lt;br class="clear" /&gt;<br />
			&lt;div align="center"&gt;<br />
				&lt;strong&gt;&amp;laquo; &lt;a href="{&#36;next_oldest_link}"&gt;{&#36;lang-&gt;next_oldest}&lt;/a&gt; | &lt;a href="{&#36;next_newest_link}"&gt;{&#36;lang-&gt;next_newest}&lt;/a&gt; &amp;raquo;&lt;/strong&gt;<br />
			&lt;/div&gt;<br />
			&lt;br class="clear" /&gt;<br />
			&lt;strong&gt;Comments&lt;/strong&gt;<br />
			&lt;div id="posts"&gt;<br />
				{&#36;posts}<br />
			&lt;/div&gt;<br />
			&lt;div class="float_left"&gt;<br />
				{&#36;multipage}<br />
			&lt;/div&gt;<br />
			&lt;div style="padding-top: 4px;" class="float_right"&gt;<br />
				{&#36;newreply}<br />
			&lt;/div&gt;<br />
			&lt;br style="clear: both;" /&gt;<br />
			{&#36;quickreply}<br />
			{&#36;threadexbox}<br />
			{&#36;similarthreads}<br />
			&lt;br /&gt;<br />
			&lt;div class="float_right" style="text-align: right;"&gt;<br />
				{&#36;moderationoptions}<br />
				{&#36;forumjump}<br />
			&lt;/div&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;br style="clear: both;" /&gt;<br />
&lt;div class="smalltext" align="center"&gt;<br />
Garage Forum&lt;br /&gt;<br />
Powered By &lt;a href="http://mybbhacks.zingaburga.com"&gt;XThreads&lt;/a&gt; - &lt;a href="http://mybbhacks.zingaburga.com"&gt;MyBB Hacks&lt;/a&gt;<br />
&lt;/div&gt;<br />
{&#36;footer}<br />
&lt;/body&gt;<br />
&lt;/html&gt;<br />
</code></div></div>
Well, we are using jQuery tabs here. Not the best jQuery tabs. If you have other jQuery or other javascript framework tabs, use it. Personally, I prefer to use MyBb tabs. But it is a bit hard to control (for me <img src="https://gidenler.me/images/v2/smile/=D.gif" alt="Big Grin" title="Big Grin" class="smilie smilie_4" />) If we don't have jQuery yet, we need to download, and upload it to our <span style="font-style: italic;" class="mycode_i">jscripts</span> folder. Or, we can use google libraries. but if we already have jQuery attached in our forum and "works" in showthread page, remove line #11 - #14. I get this jQuery tabs from this post: <a href="http://community.mybb.com/thread-62039.html" target="_blank" rel="noopener" class="mycode_url">http://community.mybb.com/thread-62039.html</a> Funny story.... <img src="https://gidenler.me/images/v2/smile/=D.gif" alt="Big Grin" title="Big Grin" class="smilie smilie_4" /><br />
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> gf_showthread_noreplies<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;br class="clear" /&gt;<br />
&lt;div id="xthreads_noreplies"&gt;<br />
	&lt;table border="0" cellspacing="{&#36;GLOBALS['theme']['borderwidth']}" cellpadding="{&#36;GLOBALS['theme']['tablespace']}" class="tborder"&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="tcat"&gt;<br />
				&lt;em&gt;&lt;strong&gt;No comments yet&lt;/strong&gt;&lt;/em&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/table&gt;<br />
&lt;/div&gt;<br />
</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> gf_showthread_ratethread<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;div class="float_right"&gt;<br />
	&lt;script type="text/javascript" src="jscripts/rating.js?ver=1400"&gt;&lt;/script&gt;<br />
	&lt;div id="success_rating_{&#36;thread['tid']}" style="float: left; padding-top: 2px; padding-right: 10px;"&gt;&amp;nbsp;&lt;/div&gt;<br />
	&lt;strong style="float: left; padding-right: 10px;"&gt;{&#36;lang-&gt;thread_rating}&lt;/strong&gt;<br />
	&lt;div class="inline_rating"&gt;<br />
		&lt;ul class="star_rating{&#36;not_rated}" id="rating_thread_{&#36;thread['tid']}"&gt;<br />
			&lt;li style="width: {&#36;thread['width']}%" class="current_rating" id="current_rating_{&#36;thread['tid']}"&gt;{&#36;ratingvotesav}&lt;/li&gt;<br />
			&lt;li&gt;&lt;a class="one_star" title="{&#36;lang-&gt;one_star}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=1&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;1&lt;/a&gt;&lt;/li&gt;<br />
			&lt;li&gt;&lt;a class="two_stars" title="{&#36;lang-&gt;two_stars}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=2&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;2&lt;/a&gt;&lt;/li&gt;<br />
			&lt;li&gt;&lt;a class="three_stars" title="{&#36;lang-&gt;three_stars}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=3&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;3&lt;/a&gt;&lt;/li&gt;<br />
			&lt;li&gt;&lt;a class="four_stars" title="{&#36;lang-&gt;four_stars}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=4&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;4&lt;/a&gt;&lt;/li&gt;<br />
			&lt;li&gt;&lt;a class="five_stars" title="{&#36;lang-&gt;five_stars}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=5&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;5&lt;/a&gt;&lt;/li&gt;<br />
		&lt;/ul&gt;<br />
	&lt;/div&gt;<br />
&lt;/div&gt;<br />
</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> gf_showthread_search<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;br class="clear" /&gt;<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="thead"&gt;<br />
			&lt;strong&gt;Search Comments&lt;/strong&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="trow1" align="center"&gt;<br />
		&lt;form action="search.php" method="post"&gt;<br />
			&lt;input type="hidden" name="action" value="thread" /&gt;<br />
			&lt;input type="hidden" name="tid" value="{&#36;thread['tid']}" /&gt;<br />
			&lt;input type="text" name="keywords" value="{&#36;lang-&gt;enter_keywords}" onfocus="if(this.value == '{&#36;lang-&gt;enter_keywords}') { this.value = ''; }" onblur="if(this.value=='') { this.value='{&#36;lang-&gt;enter_keywords}'; }" class="textbox" size="25" /&gt;<br />
			&lt;br /&gt;&lt;input type="submit" class="button" value="{&#36;lang-&gt;search_thread}" /&gt;<br />
		&lt;/form&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
&lt;/table&gt;<br />
</code></div></div>
</li>
</ol>
<br />
I've repeated many fields in this example, like in the overview tab and details tab. Just modify it. Template above based on MyBB 1.4 template.<br />
<br />
Logs:<br />
<a href="http://mybbhacks.zingaburga.com/showthread.php?tid=456&amp;pid=3759#pid3759" target="_blank" rel="noopener" class="mycode_url">05 Oct 2010</a><br />
<br />
Screenshots:<br />
Thread List:<br />
We have "two" thread list layout there <img src="https://gidenler.me/images/v2/smile/=D.gif" alt="Big Grin" title="Big Grin" class="smilie smilie_4" /><br />
 <br />
<br />
Show thread:<br />
Like I said before, I've repeated many fields here. Just modify it.<br />
   <br />
<br />
Live Demo:<br />
<a href="http://xtest.byethost7.com/forumdisplay.php?fid=8" target="_blank" rel="noopener" class="mycode_url">http://xtest.byethost7.com/forumdisplay.php?fid=8</a> (you can test it here)<br />
<a href="http://www.7173mustangs.com/forum-garage" target="_blank" rel="noopener" class="mycode_url">http://www.7173mustangs.com/forum-garage</a>]]></description>
			<content:encoded><![CDATA[<span style="font-weight: bold;" class="mycode_b">Update: <a href="http://mybbhacks.zingaburga.com/showthread.php?tid=456&amp;pid=9288#pid9288" target="_blank" rel="noopener" class="mycode_url">23 Oct 2011</a></span><br />
Maybe you can modify this example:<br />
<br />
Edit/create a forum. XThreads settings:<br />
<ol type="1" class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Prefix:</span> gf_ <span style="font-style: italic;" class="mycode_i">(Ooops! It is not Guardian Force in FF VIII though <img src="https://gidenler.me/images/v2/smile/=D.gif" alt="Big Grin" title="Big Grin" class="smilie smilie_4" />)</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Show first post on every showthread page:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Enable XThreads' Inline Forum Search:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Allow Blank Post Message:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Hide Forum:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
We need to put this forum url manually in our templates (e.g: <span style="font-style: italic;" class="mycode_i">header</span> template).<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Custom WOL Text:</span><ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Forum Display:</span> Viewing Garage<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">New Thread:</span> Submit A New Vehicle<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">New Reply:</span> Commenting &lt;a href="{1}"&gt;{2}&lt;/a&gt; Vehicle<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Show Thread:</span> Viewing &lt;a href="{1}"&gt;{2}&lt;/a&gt; Vehicle<br />
</li>
</ul>
</li>
</ol>
<br />
Custom Thread Fields Setting:<br />
<ol type="1" class="mycode_list"><li>Listbox for vehicles details layout:<br />
We will create two thread list layout. So, we need this to get the second layout. The only filtering fields here.<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Browse Vehicle<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> gfbv<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select our garage forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Listbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Height:</span> 1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Values List:</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>Browse Vehicle</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Allow Filtering:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
</ul>
<br />
</li>
<li>File Input for Vehicle Image:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Vehicle Image<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> gfvimg<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select our garage forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> File<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Valid File Extensions:</span> gif|png|jpg|jpeg<br />
Modify it as our needs. It is the extensions of image that can be uploaded.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Maximum File Size:</span> 102400<br />
Modify it as our needs. It is a maximum file size (in bytes) that can be uploaded.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 2<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Only accept uploaded images:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Image Thumbnail Generation:</span> 80x60|120x90|160x120<br />
Modify it as our needs. Depends on what thumbnails dimension we want to display for the image.<br />
</li>
</ul>
<br />
</li>
<li>Textbox for Price:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Price<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> gfprice<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select our garage forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Width:</span> 10<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 3<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Blank Replacement Value :</span> -<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format  :</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&#36; &lt;?=number_format({VALUE},2)?&gt;</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Text Mask Filter:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>^&#92;d+(&#92;.&#92;d{2})?&#36;</code></div></div>Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['gfprice']}</span>.<br />
</li>
</ul>
<br />
</li>
<li>Textbox for Odometer:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Odometer<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> gfodometer<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select our garage forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Width:</span> 20<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 4<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Blank Replacement Value :</span> -<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format  :</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;?=number_format({VALUE})?&gt; Miles</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Text Mask Filter:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>^&#92;d+&#36;</code></div></div>Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['gfodometer']}</span>.<br />
</li>
</ul>
<br />
</li>
<li>Listbox for vehicles color:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Color<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> gfcolor<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select our garage forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Listbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Height:</span> 1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Values List:</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>Blue<br />
Black<br />
White<br />
Silver<br />
Custom</code></div></div>Modify it as our needs.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 5<br />
Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['gfcolor']}</span>.<br />
</li>
</ul>
<br />
</li>
<li>File Input for additional vehicle image:<br />
Repeat this step as our needs. Use different key. e.g: gfvimg3, gfvimg4 and etc....<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Vehicle Image #2<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> gfvimg2<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select our garage forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> File<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Valid File Extensions:</span> gif|png|jpg|jpeg<br />
Modify it as our needs. It is the extensions of image that can be uploaded.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Maximum File Size:</span> 102400<br />
Modify it as our needs. It is a maximum file size (in bytes) that can be uploaded.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Only accept uploaded images:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Image Thumbnail Generation:</span> 160x120<br />
Modify it as our needs. Depends on what thumbnails dimension we want to display for the image.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format :</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;div class="float_left" style="margin: 5px; width: 180px; height: 140px;"&gt;&lt;div align="center"&gt;&lt;a href="{URL}" target="_blank"&gt;&lt;img src="{URL}/thumb160x120" alt="Image 2" title="{&#36;thread['subject']} Image 2" style="padding: 3px; border: 1px solid #CCCCCC;" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;<br />
</code></div></div>
Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['gfvimg2']['value']}</span>. If we repeat this step, we need to change the variable too, and place it in our <span style="font-style: italic;" class="mycode_i">gf_showthread</span> template.<br />
In this example, we only use two additional vehicle images. So, the variable is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['gfvimg2']['value']}</span> and <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['gfvimg3']['value']}</span>.<br />
</li>
</ul>
<br />
</li>
<li>File Input for modification image:<br />
Repeat this step as our needs. Use different key. e.g: gfmimg2, gfmimg3 and etc....<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Modification Image #1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> gfmimg1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select our garage forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> File<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Valid File Extensions:</span> gif|png|jpg|jpeg<br />
Modify it as our needs. It is the extensions of image that can be uploaded.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Maximum File Size:</span> 102400<br />
Modify it as our needs. It is a maximum file size (in bytes) that can be uploaded.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Only accept uploaded images:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Image Thumbnail Generation:</span> 160x120<br />
Modify it as our needs. Depends on what thumbnails dimension we want to display for the image.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format :</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;div class="float_left" style="margin: 5px; width: 180px; height: 140px;"&gt;&lt;div align="center"&gt;&lt;a href="{URL}" target="_blank"&gt;&lt;img src="{URL}/thumb160x120" alt="Modification 1" title="{&#36;thread['subject']} Modification 1" style="padding: 3px; border: 1px solid #CCCCCC;" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;<br />
</code></div></div>
Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['gfmimg1']['value']}</span>. If we repeat this step, we need to change the variable too, and place it in our <span style="font-style: italic;" class="mycode_i">gf_showthread</span> template.<br />
In this example, we only use two modification images. So, the variable is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['gfmimg1']['value']}</span> and <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['gfmimg2']['value']}</span>.<br />
</li>
</ul>
</li>
</ol>
<br />
Now, we need to create new templates in Global Template.<br />
Admin CP -&gt; Templates &amp; Style -&gt; Templates -&gt; Global Templates:<br />
<ol type="1" class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> gf_forumdisplay_nothreads<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;div&gt;&lt;strong&gt;&lt;em&gt;{&#36;lang-&gt;nothreads}&lt;/em&gt;&lt;/strong&gt;&lt;/div&gt;<br />
</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> gf_forumdisplay_searchforum_inline<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;br class="clear" /&gt;<br />
&lt;table border="0" cellspacing="{&#36;GLOBALS['theme']['borderwidth']}" cellpadding="{&#36;GLOBALS['theme']['tablespace']}" class="tborder"&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="thead" colspan="{&#36;colspan}"&gt;<br />
			&lt;strong&gt;Search Vehicles&lt;/strong&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="trow1" align="center"&gt;<br />
			&lt;form action="forumdisplay.php" method="get"&gt;<br />
				&lt;input type="text" class="textbox" name="search" value="{&#36;searchval}" /&gt;&lt;br /&gt;{&#36;gobutton}<br />
				&lt;input type="hidden" name="fid" value="{&#36;fid}" /&gt;<br />
				&lt;input type="hidden" name="sortby" value="{&#36;sortby}" /&gt;<br />
				&lt;input type="hidden" name="order" value="{&#36;sortordernow}" /&gt;<br />
				&lt;input type="hidden" name="datecut" value="{&#36;datecut}" /&gt;<br />
			&lt;/form&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
&lt;/table&gt;<br />
</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> gf_forumdisplay_sticky_sep<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;div style="display: none;"&gt;&lt;/div&gt;<br />
</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> gf_forumdisplay_thread<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;div class="float_left" style="width: 49%;{&#36;filters_set['__all']['hiddencss']}"&gt;<br />
<br />
	&lt;div style="text-align: center; width: 80%; margin: auto auto;"&gt;<br />
		&lt;div style="height: 100px; vertical align: middle;"&gt;<br />
			&lt;a href="{&#36;threadurl}"&gt;&lt;img src="&lt;img src="&lt;img src="{&#36;GLOBALS['threadfields']['gfvimg']['thumbs']['120x90']['url']}" alt="View {&#36;thread['subject']}" title="View {&#36;thread['subject']}" /&gt;&lt;/a&gt;<br />
		&lt;/div&gt;<br />
		&lt;span&gt;&lt;a href="{&#36;thread['threadlink']}"&gt;{&#36;thread['subject']}&lt;/a&gt;{&#36;thread['multipage']}&lt;/span&gt;<br />
		&lt;div class="author smalltext"&gt;Owner: {&#36;thread['profilelink']}&lt;/div&gt;<br />
		&lt;div class="author smalltext"&gt;Added: {&#36;thread['threaddate']} &amp;ndash; {&#36;thread['threadtime']}&lt;/div&gt;<br />
	&lt;/div&gt;<br />
&lt;/div&gt;<br />
&lt;div style="{&#36;filters_set['__all']['visiblecss']}"&gt;<br />
	&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="border: 0px;"&gt;<br />
		&lt;tr&gt;<br />
			{&#36;rating}<br />
			&lt;td class="tcat smalltext" align="center" colspan="{&#36;colspan}"&gt;<br />
				&lt;strong&gt;&lt;a href="{&#36;thread['threadlink']}" class="{&#36;inline_edit_class} {&#36;new_class}" id="tid_{&#36;inline_edit_tid}"&gt;{&#36;thread['subject']}&lt;/a&gt;&lt;/strong&gt;<br />
			&lt;/td&gt;<br />
			{&#36;modbit}<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="{&#36;bgcolor} smalltext" rowspan="2" width="1" align="center" valign="middle"&gt;<br />
				&lt;a href="{&#36;threadurl}"&gt;&lt;img src="{&#36;GLOBALS['threadfields']['gfvimg']['thumbs']['120x90']['url']}" alt="View {&#36;thread['subject']}" title="View {&#36;thread['subject']}" /&gt;&lt;/a&gt;<br />
			&lt;/td&gt;<br />
			&lt;td class="{&#36;bgcolor}" colspan="4"&gt;<br />
				&lt;div&gt;Owner: {&#36;thread['profilelink']}&lt;/div&gt;<br />
				&lt;div&gt;Added: {&#36;thread['threaddate']} &amp;ndash; {&#36;thread['threadtime']}&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="{&#36;bgcolor} smalltext" align="center" height="25"&gt;<br />
				Comments: &lt;a href="javascript:MyBB.whoPosted({&#36;thread['tid']});"&gt;{&#36;thread['replies']}&lt;/a&gt;{&#36;unapproved_posts}<br />
			&lt;/td&gt;<br />
			&lt;td class="{&#36;bgcolor} smalltext" align="center" width="25%"&gt;<br />
				Odometer: {&#36;GLOBALS['threadfields']['gfodometer']}<br />
			&lt;/td&gt;<br />
			&lt;td class="{&#36;bgcolor} smalltext" align="center" width="15%"&gt;<br />
				Views: {&#36;thread['views']}<br />
			&lt;/td&gt;<br />
			&lt;td class="{&#36;bgcolor} smalltext" align="center" width="15%"&gt;<br />
				Price: {&#36;GLOBALS['threadfields']['gfprice']}<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/table&gt;<br />
&lt;/div&gt;<br />
</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> gf_forumdisplay_threadlist<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;div class="float_left"&gt;<br />
	{&#36;multipage}<br />
&lt;/div&gt;<br />
&lt;div class="float_right"&gt;<br />
	{&#36;newthread}<br />
&lt;/div&gt;<br />
&lt;table width="100%" border="0"&gt;<br />
	&lt;tr&gt;<br />
		&lt;td width="200" valign="top"&gt;<br />
			&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="thead" colspan="{&#36;colspan}"&gt;<br />
						&lt;strong&gt;{&#36;foruminfo['name']}&lt;/strong&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="tcat"&gt;<br />
						&lt;strong&gt;{&#36;GLOBALS['threadcount']} Vehicles&lt;/strong&gt;<br />
					&lt;/td&gt;<br />
					{&#36;inlinemodcol}<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="trow1" colspan="{&#36;colspan}"&gt;<br />
						&lt;strong&gt;&lt;a href="{&#36;forumurl}"&gt;Garage Home&lt;/a&gt;&lt;/strong&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="trow1" colspan="{&#36;colspan}"&gt;<br />
						&lt;strong&gt;&lt;a href="{&#36;forumurl_q}filtertf_gfbv=Browse Vehicle"&gt;Vehicles Details&lt;/a&gt;&lt;/strong&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
			&lt;/table&gt;<br />
			&lt;br /&gt;<br />
			&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="thead"&gt;<br />
						&lt;strong&gt;Sort By&lt;/strong&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="trow1"&gt;<br />
						&lt;strong&gt;&lt;a href="{&#36;sorturl}&amp;amp;sortby=subject&amp;amp;order=asc"&gt;{&#36;lang-&gt;thread}&lt;/a&gt; {&#36;orderarrow['subject']}&lt;/strong&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="trow1"&gt;<br />
						&lt;strong&gt;&lt;a href="{&#36;sorturl}&amp;amp;sortby=starter&amp;amp;order=asc"&gt;{&#36;lang-&gt;author}&lt;/a&gt; {&#36;orderarrow['starter']}&lt;/strong&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="trow1"&gt;<br />
						&lt;strong&gt;&lt;a href="{&#36;sorturl}&amp;amp;sortby=replies&amp;amp;order=desc"&gt;{&#36;lang-&gt;replies}&lt;/a&gt; {&#36;orderarrow['replies']}&lt;/strong&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="trow1"&gt;<br />
						&lt;strong&gt;&lt;a href="{&#36;sorturl}&amp;amp;sortby=views&amp;amp;order=desc"&gt;{&#36;lang-&gt;views}&lt;/a&gt; {&#36;orderarrow['views']}&lt;/strong&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				{&#36;ratingcol}<br />
				&lt;tr&gt;<br />
					&lt;td class="trow1"&gt;<br />
						&lt;strong&gt;&lt;a href="{&#36;sorturl}&amp;amp;sortby=lastpost&amp;amp;order=desc"&gt;{&#36;lang-&gt;lastpost}&lt;/a&gt; {&#36;orderarrow['lastpost']}&lt;/strong&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
			&lt;/table&gt;<br />
			{&#36;searchforum}<br />
		&lt;/td&gt;<br />
		&lt;td valign="top"&gt;<br />
			&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="{&#36;filters_set['__all']['visiblecss']}"&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="thead"&gt;<br />
						&lt;strong&gt;{&#36;foruminfo['name']} &amp;ndash; Vehicles Details&lt;/strong&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
			&lt;/table&gt;<br />
			{&#36;threads}{&#36;nullthreads}<br />
			&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="{&#36;filters_set['__all']['visiblecss']}"&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="tfoot" align="right" colspan="{&#36;colspan}"&gt;<br />
						&lt;form action="forumdisplay.php" method="get"&gt;<br />
							&lt;input type="hidden" name="fid" value="{&#36;fid}" /&gt;<br />
							&lt;select name="sortby"&gt;<br />
								&lt;option value="subject" {&#36;sortsel['subject']}&gt;{&#36;lang-&gt;sort_by_subject}&lt;/option&gt;<br />
								&lt;option value="lastpost" {&#36;sortsel['lastpost']}&gt;{&#36;lang-&gt;sort_by_lastpost}&lt;/option&gt;<br />
								&lt;option value="starter" {&#36;sortsel['starter']}&gt;{&#36;lang-&gt;sort_by_starter}&lt;/option&gt;<br />
								&lt;option value="started" {&#36;sortsel['started']}&gt;{&#36;lang-&gt;sort_by_started}&lt;/option&gt;<br />
								{&#36;ratingsort}<br />
								&lt;option value="replies" {&#36;sortsel['replies']}&gt;{&#36;lang-&gt;sort_by_replies}&lt;/option&gt;<br />
								&lt;option value="views" {&#36;sortsel['views']}&gt;{&#36;lang-&gt;sort_by_views}&lt;/option&gt;<br />
							&lt;/select&gt;<br />
							&lt;select name="order"&gt;<br />
								&lt;option value="asc" {&#36;ordersel['asc']}&gt;{&#36;lang-&gt;sort_order_asc}&lt;/option&gt;<br />
								&lt;option value="desc" {&#36;ordersel['desc']}&gt;{&#36;lang-&gt;sort_order_desc}&lt;/option&gt;<br />
							&lt;/select&gt;<br />
							&lt;select name="datecut"&gt;<br />
								&lt;option value="1" {&#36;datecutsel['1']}&gt;{&#36;lang-&gt;datelimit_1day}&lt;/option&gt;<br />
								&lt;option value="5" {&#36;datecutsel['5']}&gt;{&#36;lang-&gt;datelimit_5days}&lt;/option&gt;<br />
								&lt;option value="10" {&#36;datecutsel['10']}&gt;{&#36;lang-&gt;datelimit_10days}&lt;/option&gt;<br />
								&lt;option value="20" {&#36;datecutsel['20']}&gt;{&#36;lang-&gt;datelimit_20days}&lt;/option&gt;<br />
								&lt;option value="50" {&#36;datecutsel['50']}&gt;{&#36;lang-&gt;datelimit_50days}&lt;/option&gt;<br />
								&lt;option value="75" {&#36;datecutsel['75']}&gt;{&#36;lang-&gt;datelimit_75days}&lt;/option&gt;<br />
								&lt;option value="100" {&#36;datecutsel['100']}&gt;{&#36;lang-&gt;datelimit_100days}&lt;/option&gt;<br />
								&lt;option value="365" {&#36;datecutsel['365']}&gt;{&#36;lang-&gt;datelimit_lastyear}&lt;/option&gt;<br />
								&lt;option value="9999" {&#36;datecutsel['9999']}&gt;{&#36;lang-&gt;datelimit_beginning}&lt;/option&gt;<br />
							&lt;/select&gt;<br />
							{&#36;gobutton}<br />
						&lt;/form&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
			&lt;/table&gt;<br />
			&lt;div class="float_right" style="margin-top: 4px;{&#36;filters_set['__all']['visiblecss']}"&gt;<br />
				{&#36;newthread}<br />
			&lt;/div&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;div class="float_left"&gt;<br />
	{&#36;multipage}<br />
&lt;/div&gt;<br />
&lt;br style="clear: both;" /&gt;<br />
&lt;br /&gt;<br />
&lt;div class="float_right" style="text-align: right;"&gt;<br />
	{&#36;inlinemod}<br />
	{&#36;forumjump}<br />
&lt;/div&gt;<br />
&lt;br style="clear: both" /&gt;<br />
&lt;div class="smalltext" align="center"&gt;<br />
Garage Forum&lt;br /&gt;<br />
Powered By &lt;a href="http://mybbhacks.zingaburga.com"&gt;XThreads&lt;/a&gt; - &lt;a href="http://mybbhacks.zingaburga.com"&gt;MyBB Hacks&lt;/a&gt;<br />
&lt;/div&gt;<br />
{&#36;inline_edit_js}<br />
</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> gf_forumdisplay_threadlist_rating<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;tr&gt;<br />
	&lt;td class="trow1"&gt;<br />
		&lt;strong&gt;&lt;a href="{&#36;sorturl}&amp;amp;sortby=rating&amp;amp;order=desc"&gt;{&#36;lang-&gt;rating}&lt;/a&gt; {&#36;orderarrow['rating']}&lt;/strong&gt;<br />
		&lt;script type="text/javascript" src="jscripts/rating.js?ver=1400"&gt;&lt;/script&gt;<br />
		&lt;script type="text/javascript"&gt;<br />
		&lt;!--<br />
			lang.stars = new Array();<br />
			lang.stars[1] = "{&#36;lang-&gt;one_star}";<br />
			lang.stars[2] = "{&#36;lang-&gt;two_stars}";<br />
			lang.stars[3] = "{&#36;lang-&gt;three_stars}";<br />
			lang.stars[4] = "{&#36;lang-&gt;four_stars}";<br />
			lang.stars[5] = "{&#36;lang-&gt;five_stars}";<br />
		// <img src="https://gidenler.me/images/smilies/sag_ok.png" alt="Sağ ok" title="Sağ ok" class="smilie smilie_54" /><br />
		&lt;/script&gt;<br />
	&lt;/td&gt;<br />
&lt;/tr&gt;<br />
</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> gf_forumdisplay_threads_sep<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;div style="display: none;"&gt;&lt;/div&gt;<br />
</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> gf_forumdisplay_thread_modbit<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;td class="{&#36;bgcolor}" align="center" style="width: 1px; white-space: nowrap" rowspan="3"&gt;&lt;input type="checkbox" class="checkbox" name="inlinemod_{&#36;multitid}" id="inlinemod_{&#36;multitid}" value="1" {&#36;inlinecheck}  /&gt;&lt;/td&gt;<br />
</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> gf_forumdisplay_thread_rating<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;td align="center" class="tcat" id="rating_table_{&#36;thread['tid']}"&gt;<br />
	&lt;ul class="star_rating{&#36;not_rated}" id="rating_thread_{&#36;thread['tid']}"&gt;<br />
		&lt;li style="width: {&#36;thread['width']}%" class="current_rating" id="current_rating_{&#36;thread['tid']}"&gt;{&#36;ratingvotesav}&lt;/li&gt;<br />
	&lt;/ul&gt;<br />
	&lt;script type="text/javascript"&gt;<br />
	&lt;!--<br />
		Rating.build_forumdisplay({&#36;thread['tid']}, { width: '{&#36;thread['width']}', extra_class: '{&#36;not_rated}', current_average: '{&#36;ratingvotesav}' });<br />
	// <img src="https://gidenler.me/images/smilies/sag_ok.png" alt="Sağ ok" title="Sağ ok" class="smilie smilie_54" /><br />
	&lt;/script&gt;<br />
&lt;/td&gt;<br />
</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> gf_postbit_first<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
{&#36;ignore_bit}<br />
&lt;a name="pid{&#36;post['pid']}" id="pid{&#36;post['pid']}"&gt;&lt;/a&gt;<br />
&lt;table border="0" cellspacing="0" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="{&#36;post_extra_style} {&#36;post_visibility}" id="post_{&#36;post['pid']}"&gt;<br />
	&lt;tbody&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="tcat" colspan="2"&gt;<br />
				&lt;div class="float_left smalltext"&gt;<br />
					&lt;strong&gt;{&#36;thread['subject']} &amp;ndash; Overview&lt;/strong&gt; &lt;span id="edited_by_{&#36;post['pid']}"&gt;{&#36;post['editedmsg']}&lt;/span&gt;<br />
				&lt;/div&gt;<br />
				{&#36;post['posturl']}<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1 {&#36;unapproved_shade}" valign="top"&gt;<br />
				&lt;table width="100%" border="0"&gt;<br />
					&lt;tr&gt;<br />
						&lt;td width="150"&gt;Owner&lt;/td&gt;<br />
						&lt;td width="1"&gt;:&lt;/td&gt;<br />
						&lt;td&gt;{&#36;post['profilelink']}&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
					&lt;tr&gt;<br />
						&lt;td width="150"&gt;Data Added&lt;/td&gt;<br />
						&lt;td width="1"&gt;:&lt;/td&gt;<br />
						&lt;td&gt;{&#36;thread['threaddate']} &amp;ndash; {&#36;thread['threadtime']}&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
					&lt;tr&gt;<br />
						&lt;td width="150"&gt;Views&lt;/td&gt;<br />
						&lt;td width="1"&gt;:&lt;/td&gt;<br />
						&lt;td&gt;{&#36;thread['views']}&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
					&lt;tr&gt;<br />
						&lt;td width="150"&gt;Color&lt;/td&gt;<br />
						&lt;td width="1"&gt;:&lt;/td&gt;<br />
						&lt;td&gt;{&#36;GLOBALS['threadfields']['gfcolor']}&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
					&lt;tr&gt;<br />
						&lt;td width="150"&gt;Price&lt;/td&gt;<br />
						&lt;td width="1"&gt;:&lt;/td&gt;<br />
						&lt;td&gt;{&#36;GLOBALS['threadfields']['gfprice']}&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
					&lt;tr&gt;<br />
						&lt;td width="150"&gt;Odometer&lt;/td&gt;<br />
						&lt;td width="1"&gt;:&lt;/td&gt;<br />
						&lt;td&gt;{&#36;GLOBALS['threadfields']['gfodometer']}&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
				&lt;/table&gt;<br />
			&lt;/td&gt;<br />
			&lt;td class="trow1 {&#36;unapproved_shade}" width="1" valign="middle" align="center"&gt;<br />
				&lt;a href="{&#36;GLOBALS['threadfields']['gfvimg']['url']}" target="_blank"&gt;&lt;img src="{&#36;GLOBALS['threadfields']['gfvimg']['thumbs']['160x120']['url']}" alt="{&#36;post['subject']}" title="{&#36;post['subject']}" /&gt;&lt;/a&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td colspan="2" class="trow1 {&#36;unapproved_shade}"&gt;<br />
				&lt;div class="post_body" id="pid_{&#36;post['pid']}"&gt;<br />
					{&#36;post['message']}<br />
				&lt;/div&gt;<br />
				&lt;div class="post_meta" id="post_meta_{&#36;post['pid']}"&gt;<br />
					{&#36;post['iplogged']}<br />
				&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1 post_buttons {&#36;unapproved_shade}" colspan="2"&gt;<br />
				&lt;div class="author_buttons float_left"&gt;<br />
					{&#36;post['button_email']}{&#36;post['button_pm']}{&#36;post['button_www']}{&#36;post['button_find']}<br />
				&lt;/div&gt;<br />
				&lt;div class="post_management_buttons float_right"&gt;{&#36;post['button_edit']}{&#36;post['button_quickdelete']}{&#36;post['button_quote']}{&#36;post['button_multiquote']}{&#36;post['button_report']}{&#36;post['button_warn']}{&#36;post['button_reply_pm']}{&#36;post['button_replyall_pm']}{&#36;post['button_forward_pm']}{&#36;post['button_delete_pm']}<br />
				&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/tbody&gt;<br />
&lt;/table&gt;<br />
</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> gf_postbit_first_classic<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
{&#36;ignore_bit}<br />
&lt;a name="pid{&#36;post['pid']}" id="pid{&#36;post['pid']}"&gt;&lt;/a&gt;<br />
&lt;table border="0" cellspacing="0" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="{&#36;post_extra_style} {&#36;post_visibility}" id="post_{&#36;post['pid']}"&gt;<br />
	&lt;tbody&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="tcat" colspan="2"&gt;<br />
				&lt;div class="float_left smalltext"&gt;<br />
					&lt;strong&gt;{&#36;thread['subject']} &amp;ndash; Overview&lt;/strong&gt; &lt;span id="edited_by_{&#36;post['pid']}"&gt;{&#36;post['editedmsg']}&lt;/span&gt;<br />
				&lt;/div&gt;<br />
				{&#36;post['posturl']}<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1 {&#36;unapproved_shade}" valign="top"&gt;<br />
				&lt;table width="100%" border="0"&gt;<br />
					&lt;tr&gt;<br />
						&lt;td width="150"&gt;Owner&lt;/td&gt;<br />
						&lt;td width="1"&gt;:&lt;/td&gt;<br />
						&lt;td&gt;{&#36;post['profilelink']}&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
					&lt;tr&gt;<br />
						&lt;td width="150"&gt;Data Added&lt;/td&gt;<br />
						&lt;td width="1"&gt;:&lt;/td&gt;<br />
						&lt;td&gt;{&#36;thread['threaddate']} &amp;ndash; {&#36;thread['threadtime']}&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
					&lt;tr&gt;<br />
						&lt;td width="150"&gt;Views&lt;/td&gt;<br />
						&lt;td width="1"&gt;:&lt;/td&gt;<br />
						&lt;td&gt;{&#36;thread['views']}&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
					&lt;tr&gt;<br />
						&lt;td width="150"&gt;Color&lt;/td&gt;<br />
						&lt;td width="1"&gt;:&lt;/td&gt;<br />
						&lt;td&gt;{&#36;GLOBALS['threadfields']['gfcolor']}&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
					&lt;tr&gt;<br />
						&lt;td width="150"&gt;Price&lt;/td&gt;<br />
						&lt;td width="1"&gt;:&lt;/td&gt;<br />
						&lt;td&gt;{&#36;GLOBALS['threadfields']['gfprice']}&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
					&lt;tr&gt;<br />
						&lt;td width="150"&gt;Odometer&lt;/td&gt;<br />
						&lt;td width="1"&gt;:&lt;/td&gt;<br />
						&lt;td&gt;{&#36;GLOBALS['threadfields']['gfodometer']}&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
				&lt;/table&gt;<br />
			&lt;/td&gt;<br />
			&lt;td class="trow1 {&#36;unapproved_shade}" width="1" valign="middle" align="center"&gt;<br />
				&lt;a href="{&#36;GLOBALS['threadfields']['gfvimg']['url']}" target="_blank"&gt;&lt;img src="{&#36;GLOBALS['threadfields']['gfvimg']['thumbs']['160x120']['url']}" alt="{&#36;post['subject']}" title="{&#36;post['subject']}" /&gt;&lt;/a&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td colspan="2" class="trow1 {&#36;unapproved_shade}"&gt;<br />
				&lt;div class="post_body" id="pid_{&#36;post['pid']}"&gt;<br />
					{&#36;post['message']}<br />
				&lt;/div&gt;<br />
				&lt;div class="post_meta" id="post_meta_{&#36;post['pid']}"&gt;<br />
					{&#36;post['iplogged']}<br />
				&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1 post_buttons {&#36;unapproved_shade}" colspan="2"&gt;<br />
				&lt;div class="author_buttons float_left"&gt;<br />
					{&#36;post['button_email']}{&#36;post['button_pm']}{&#36;post['button_www']}{&#36;post['button_find']}<br />
				&lt;/div&gt;<br />
				&lt;div class="post_management_buttons float_right"&gt;{&#36;post['button_edit']}{&#36;post['button_quickdelete']}{&#36;post['button_quote']}{&#36;post['button_multiquote']}{&#36;post['button_report']}{&#36;post['button_warn']}{&#36;post['button_reply_pm']}{&#36;post['button_replyall_pm']}{&#36;post['button_forward_pm']}{&#36;post['button_delete_pm']}<br />
				&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/tbody&gt;<br />
&lt;/table&gt;<br />
</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> gf_showthread<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;{&#36;thread['subject']}&lt;/title&gt;<br />
{&#36;headerinclude}<br />
&lt;script type="text/javascript"&gt;<br />
&lt;!--<br />
	var quickdelete_confirm = "{&#36;lang-&gt;quickdelete_confirm}";<br />
// <img src="https://gidenler.me/images/smilies/sag_ok.png" alt="Sağ ok" title="Sağ ok" class="smilie smilie_54" /><br />
&lt;/script&gt;<br />
&lt;script type="text/javascript" src="jscripts/thread.js?ver=1400"&gt;&lt;/script&gt;<br />
&lt;script type="text/javascript" src="jscripts/jquery-1.3.2.min.js"&gt;&lt;/script&gt;<br />
&lt;script type="text/javascript"&gt;<br />
	&#36;.noConflict();<br />
&lt;/script&gt;<br />
&lt;style type="text/css"&gt;<br />
.at {background: #026CB1 url(images/thead_bg.gif) top left repeat-x;color: #ffffff;}<br />
#image, #mod, #details {display: none;}<br />
&lt;/style&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
{&#36;header}<br />
{&#36;pollbox}<br />
&lt;div class="float_left"&gt;<br />
	{&#36;multipage}<br />
&lt;/div&gt;<br />
&lt;div class="float_right"&gt;<br />
	{&#36;newreply}<br />
&lt;/div&gt;<br />
&lt;br style="clear: both;" /&gt;<br />
&lt;table border="0" width="100%"&gt;<br />
	&lt;tr&gt;<br />
		&lt;td width="200" valign="top"&gt;<br />
			&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="thead"&gt;<br />
						&lt;strong&gt;{&#36;forum['name']}&lt;/strong&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="trow1" colspan="{&#36;colspan}"&gt;<br />
						&lt;strong&gt;&lt;a href="{&#36;forumurl}"&gt;Garage Home&lt;/a&gt;&lt;/strong&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="trow1" colspan="{&#36;colspan}"&gt;<br />
						&lt;strong&gt;&lt;a href="{&#36;forumurl_q}filtertf_gfbv=Browse Vehicle"&gt;Vehicle Details&lt;/a&gt;&lt;/strong&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
			&lt;/table&gt;<br />
			{&#36;search_thread}<br />
		&lt;/td&gt;<br />
		&lt;td valign="top"&gt;<br />
			&lt;script type="text/javascript"&gt;<br />
				jQuery(document).ready(function(&#36;){<br />
					&#36;('.tab').click(function(){<br />
						&#36;('.at').removeClass('at');<br />
						&#36;(this).addClass('at');<br />
						&#36;('.content').slideUp();<br />
						var catshow = &#36;(this).attr('abbr');<br />
						&#36;('#'+ catshow).slideDown();<br />
					});<br />
				});<br />
			&lt;/script&gt;<br />
			&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="clear: both; border-bottom-width: 0;"&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="tcat at tab" title="Overview" style="cursor: pointer; text-align: center;" abbr="overview"&gt;<br />
						&lt;strong&gt;Overview&lt;/strong&gt;<br />
					&lt;/td&gt;<br />
					&lt;td class="tcat tab" title="Images" style="cursor: pointer; text-align: center;" abbr="image"&gt;<br />
						&lt;strong&gt;Images&lt;/strong&gt;<br />
					&lt;/td&gt;<br />
					&lt;td class="tcat tab" title="Vehicle Modification" style="cursor: pointer; text-align: center;" abbr="mod"&gt;<br />
						&lt;strong&gt;Modification&lt;/strong&gt;<br />
					&lt;/td&gt;<br />
					&lt;td class="tcat tab" title="Vehicle Details" style="cursor: pointer; text-align: center;" abbr="details"&gt;<br />
						&lt;strong&gt;Details&lt;/strong&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
			&lt;/table&gt;<br />
			&lt;table border="0" cellspacing="0" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="clear: both; border-bottom-width: 0; border-top-width: 0;"&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="thead" colspan="2"&gt;<br />
						{&#36;ratethread}<br />
						&lt;strong&gt;&lt;a href="{&#36;threadurl}"&gt;{&#36;thread['subject']}&lt;/a&gt;&lt;/strong&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
			&lt;/table&gt;<br />
			&lt;div id="overview" class="content"&gt;<br />
				{&#36;first_post}<br />
			&lt;/div&gt;<br />
			&lt;div id="image" class="content"&gt;<br />
				&lt;table border="0" cellspacing="0" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
					&lt;tr&gt;<br />
						&lt;td class="tcat"&gt;<br />
							&lt;div class="float_left smalltext"&gt;<br />
								&lt;strong&gt;{&#36;thread['subject']} - Images&lt;/strong&gt;<br />
							&lt;/div&gt;<br />
						&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
					&lt;tr&gt;<br />
						&lt;td class="trow1" align="center"&gt;<br />
							{&#36;GLOBALS['threadfields']['gfvimg2']['value']}{&#36;GLOBALS['threadfields']['gfvimg3']['value']}<br />
						&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
				&lt;/table&gt;<br />
			&lt;/div&gt;<br />
			&lt;div id="mod" class="content"&gt;<br />
				&lt;table border="0" cellspacing="0" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
					&lt;tr&gt;<br />
						&lt;td class="tcat"&gt;<br />
							&lt;div class="float_left smalltext"&gt;<br />
								&lt;strong&gt;{&#36;thread['subject']} - Modification&lt;/strong&gt;<br />
							&lt;/div&gt;<br />
						&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
					&lt;tr&gt;<br />
						&lt;td class="trow1" align="center"&gt;<br />
							{&#36;GLOBALS['threadfields']['gfmimg1']['value']}{&#36;GLOBALS['threadfields']['gfmimg2']['value']}<br />
						&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
				&lt;/table&gt;<br />
			&lt;/div&gt;<br />
			&lt;div id="details" class="content"&gt;<br />
				&lt;table border="0" cellspacing="0" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
					&lt;tr&gt;<br />
						&lt;td class="tcat" colspan="3"&gt;<br />
							&lt;div class="float_left smalltext"&gt;<br />
								&lt;strong&gt;{&#36;thread['subject']} - Details&lt;/strong&gt;<br />
							&lt;/div&gt;<br />
						&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
					&lt;tr&gt;<br />
						&lt;td class="trow1" width="150"&gt;Data Added&lt;/td&gt;<br />
						&lt;td class="trow1" width="1"&gt;:&lt;/td&gt;<br />
						&lt;td class="trow1"&gt;{&#36;thread['threaddate']} - {&#36;thread['threadtime']}&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
					&lt;tr&gt;<br />
						&lt;td class="trow1" width="150"&gt;Views&lt;/td&gt;<br />
						&lt;td class="trow1" width="1"&gt;:&lt;/td&gt;<br />
						&lt;td class="trow1"&gt;{&#36;thread['views']}&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
					&lt;tr&gt;<br />
						&lt;td class="trow1" width="150"&gt;Color&lt;/td&gt;<br />
						&lt;td class="trow1" width="1"&gt;:&lt;/td&gt;<br />
						&lt;td class="trow1"&gt;{&#36;GLOBALS['threadfields']['gfcolor']}&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
					&lt;tr&gt;<br />
						&lt;td class="trow1" width="150"&gt;Price&lt;/td&gt;<br />
						&lt;td class="trow1" width="1"&gt;:&lt;/td&gt;<br />
						&lt;td class="trow1"&gt;{&#36;GLOBALS['threadfields']['gfprice']}&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
					&lt;tr&gt;<br />
						&lt;td class="trow1" width="150"&gt;Odometer&lt;/td&gt;<br />
						&lt;td class="trow1" width="1"&gt;:&lt;/td&gt;<br />
						&lt;td class="trow1"&gt;{&#36;GLOBALS['threadfields']['gfodometer']}&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
				&lt;/table&gt;<br />
			&lt;/div&gt;<br />
			&lt;br class="clear" /&gt;<br />
			&lt;div align="center"&gt;<br />
				&lt;strong&gt;&amp;laquo; &lt;a href="{&#36;next_oldest_link}"&gt;{&#36;lang-&gt;next_oldest}&lt;/a&gt; | &lt;a href="{&#36;next_newest_link}"&gt;{&#36;lang-&gt;next_newest}&lt;/a&gt; &amp;raquo;&lt;/strong&gt;<br />
			&lt;/div&gt;<br />
			&lt;br class="clear" /&gt;<br />
			&lt;strong&gt;Comments&lt;/strong&gt;<br />
			&lt;div id="posts"&gt;<br />
				{&#36;posts}<br />
			&lt;/div&gt;<br />
			&lt;div class="float_left"&gt;<br />
				{&#36;multipage}<br />
			&lt;/div&gt;<br />
			&lt;div style="padding-top: 4px;" class="float_right"&gt;<br />
				{&#36;newreply}<br />
			&lt;/div&gt;<br />
			&lt;br style="clear: both;" /&gt;<br />
			{&#36;quickreply}<br />
			{&#36;threadexbox}<br />
			{&#36;similarthreads}<br />
			&lt;br /&gt;<br />
			&lt;div class="float_right" style="text-align: right;"&gt;<br />
				{&#36;moderationoptions}<br />
				{&#36;forumjump}<br />
			&lt;/div&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;br style="clear: both;" /&gt;<br />
&lt;div class="smalltext" align="center"&gt;<br />
Garage Forum&lt;br /&gt;<br />
Powered By &lt;a href="http://mybbhacks.zingaburga.com"&gt;XThreads&lt;/a&gt; - &lt;a href="http://mybbhacks.zingaburga.com"&gt;MyBB Hacks&lt;/a&gt;<br />
&lt;/div&gt;<br />
{&#36;footer}<br />
&lt;/body&gt;<br />
&lt;/html&gt;<br />
</code></div></div>
Well, we are using jQuery tabs here. Not the best jQuery tabs. If you have other jQuery or other javascript framework tabs, use it. Personally, I prefer to use MyBb tabs. But it is a bit hard to control (for me <img src="https://gidenler.me/images/v2/smile/=D.gif" alt="Big Grin" title="Big Grin" class="smilie smilie_4" />) If we don't have jQuery yet, we need to download, and upload it to our <span style="font-style: italic;" class="mycode_i">jscripts</span> folder. Or, we can use google libraries. but if we already have jQuery attached in our forum and "works" in showthread page, remove line #11 - #14. I get this jQuery tabs from this post: <a href="http://community.mybb.com/thread-62039.html" target="_blank" rel="noopener" class="mycode_url">http://community.mybb.com/thread-62039.html</a> Funny story.... <img src="https://gidenler.me/images/v2/smile/=D.gif" alt="Big Grin" title="Big Grin" class="smilie smilie_4" /><br />
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> gf_showthread_noreplies<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;br class="clear" /&gt;<br />
&lt;div id="xthreads_noreplies"&gt;<br />
	&lt;table border="0" cellspacing="{&#36;GLOBALS['theme']['borderwidth']}" cellpadding="{&#36;GLOBALS['theme']['tablespace']}" class="tborder"&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="tcat"&gt;<br />
				&lt;em&gt;&lt;strong&gt;No comments yet&lt;/strong&gt;&lt;/em&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/table&gt;<br />
&lt;/div&gt;<br />
</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> gf_showthread_ratethread<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;div class="float_right"&gt;<br />
	&lt;script type="text/javascript" src="jscripts/rating.js?ver=1400"&gt;&lt;/script&gt;<br />
	&lt;div id="success_rating_{&#36;thread['tid']}" style="float: left; padding-top: 2px; padding-right: 10px;"&gt;&amp;nbsp;&lt;/div&gt;<br />
	&lt;strong style="float: left; padding-right: 10px;"&gt;{&#36;lang-&gt;thread_rating}&lt;/strong&gt;<br />
	&lt;div class="inline_rating"&gt;<br />
		&lt;ul class="star_rating{&#36;not_rated}" id="rating_thread_{&#36;thread['tid']}"&gt;<br />
			&lt;li style="width: {&#36;thread['width']}%" class="current_rating" id="current_rating_{&#36;thread['tid']}"&gt;{&#36;ratingvotesav}&lt;/li&gt;<br />
			&lt;li&gt;&lt;a class="one_star" title="{&#36;lang-&gt;one_star}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=1&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;1&lt;/a&gt;&lt;/li&gt;<br />
			&lt;li&gt;&lt;a class="two_stars" title="{&#36;lang-&gt;two_stars}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=2&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;2&lt;/a&gt;&lt;/li&gt;<br />
			&lt;li&gt;&lt;a class="three_stars" title="{&#36;lang-&gt;three_stars}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=3&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;3&lt;/a&gt;&lt;/li&gt;<br />
			&lt;li&gt;&lt;a class="four_stars" title="{&#36;lang-&gt;four_stars}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=4&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;4&lt;/a&gt;&lt;/li&gt;<br />
			&lt;li&gt;&lt;a class="five_stars" title="{&#36;lang-&gt;five_stars}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=5&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;5&lt;/a&gt;&lt;/li&gt;<br />
		&lt;/ul&gt;<br />
	&lt;/div&gt;<br />
&lt;/div&gt;<br />
</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> gf_showthread_search<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;br class="clear" /&gt;<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="thead"&gt;<br />
			&lt;strong&gt;Search Comments&lt;/strong&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="trow1" align="center"&gt;<br />
		&lt;form action="search.php" method="post"&gt;<br />
			&lt;input type="hidden" name="action" value="thread" /&gt;<br />
			&lt;input type="hidden" name="tid" value="{&#36;thread['tid']}" /&gt;<br />
			&lt;input type="text" name="keywords" value="{&#36;lang-&gt;enter_keywords}" onfocus="if(this.value == '{&#36;lang-&gt;enter_keywords}') { this.value = ''; }" onblur="if(this.value=='') { this.value='{&#36;lang-&gt;enter_keywords}'; }" class="textbox" size="25" /&gt;<br />
			&lt;br /&gt;&lt;input type="submit" class="button" value="{&#36;lang-&gt;search_thread}" /&gt;<br />
		&lt;/form&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
&lt;/table&gt;<br />
</code></div></div>
</li>
</ol>
<br />
I've repeated many fields in this example, like in the overview tab and details tab. Just modify it. Template above based on MyBB 1.4 template.<br />
<br />
Logs:<br />
<a href="http://mybbhacks.zingaburga.com/showthread.php?tid=456&amp;pid=3759#pid3759" target="_blank" rel="noopener" class="mycode_url">05 Oct 2010</a><br />
<br />
Screenshots:<br />
Thread List:<br />
We have "two" thread list layout there <img src="https://gidenler.me/images/v2/smile/=D.gif" alt="Big Grin" title="Big Grin" class="smilie smilie_4" /><br />
 <br />
<br />
Show thread:<br />
Like I said before, I've repeated many fields here. Just modify it.<br />
   <br />
<br />
Live Demo:<br />
<a href="http://xtest.byethost7.com/forumdisplay.php?fid=8" target="_blank" rel="noopener" class="mycode_url">http://xtest.byethost7.com/forumdisplay.php?fid=8</a> (you can test it here)<br />
<a href="http://www.7173mustangs.com/forum-garage" target="_blank" rel="noopener" class="mycode_url">http://www.7173mustangs.com/forum-garage</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Closed Thread Reason]]></title>
			<link>https://gidenler.me/thread-679.html</link>
			<pubDate>Tue, 18 Nov 2025 13:01:33 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://gidenler.me/member.php?action=profile&uid=2">Hasan</a>]]></dc:creator>
			<guid isPermaLink="false">https://gidenler.me/thread-679.html</guid>
			<description><![CDATA[Requirement: The latest <a href="http://mybbhacks.zingaburga.com/showthread.php?tid=288" target="_blank" rel="noopener" class="mycode_url">XThreads</a> Version (at least v1.32).<br />
<br />
Now, XThreads has a fantastic conditional feature. Amazing. Really really amazing!<br />
<br />
This is a simple example application that use that feature.<br />
<br />
Adding a reason for closed thread.<br />
<ul class="mycode_list"><li>
Create a custom thread fields with this settings:<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Title:</span> Closed Thread Reason<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> ctr<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums :</span> <span style="font-style: italic;" class="mycode_i">Select forum that we want to appliy it</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type :</span> Textbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Administrators<br />
Modify it as our needs. Basically, we should give this power to usergroups which has an ability to closed a thread.<br />
We can choose <span style="font-style: italic;" class="mycode_i">Custom (specify usergroups)</span> from the list, then select those usergroup in the <span style="font-style: italic;" class="mycode_i">Editable by Usergroups</span> list.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Blank Replacement Value :</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;if &#36;thread['closed'] == 1 then&gt;<br />
&lt;div class="smalltext"&gt;&lt;strong&gt;Closed Thread Reason:&lt;/strong&gt;&lt;/div&gt;<br />
&lt;div class="smalltext" style="color: red;"&gt;&lt;em&gt;Not specified&lt;/em&gt;&lt;/div&gt;<br />
&lt;/if&gt;<br />
</code></div></div>
Modify it as our needs. This layout will be displayed if the thread closed without any reason (the Closed Thread Reason textbox not filled).<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format  :</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;if &#36;thread['closed'] == 1 then&gt;<br />
&lt;div class="smalltext"&gt;&lt;strong&gt;Closed Thread Reason:&lt;/strong&gt;&lt;/div&gt;<br />
&lt;div class="smalltext" style="color: red;"&gt;&lt;em&gt;{VALUE}&lt;/em&gt;&lt;/div&gt;<br />
&lt;/if&gt;<br />
</code></div></div>
</li>
</ul>
<br />
Now, we need to put <span style="font-family: courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['ctr']}</span> variable in our <span style="font-style: italic;" class="mycode_i">forumdisplay_thread</span> template or <span style="font-style: italic;" class="mycode_i">template_prefix_forumdisplay_thread</span> template if we use template prefix for the forum.<br />
<br />
Find this code:<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;div class="author smalltext"&gt;{&#36;thread['profilelink']}&lt;/div&gt;<br />
</code></div></div>
<br />
Add this variable before the code above:<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>{&#36;GLOBALS['threadfields']['ctr']}</code></div></div><br />
So, the code will be like this:<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
{&#36;GLOBALS['threadfields']['tcr']}&lt;div class="author smalltext"&gt;{&#36;thread['profilelink']}&lt;/div&gt;<br />
</code></div></div>
<br />
Do that with <span style="font-style: italic;" class="mycode_i">search_results_threads_thread</span> template too if we want the reason displayed in search result.<br />
 <br />
<br />
Live Demo:<br />
<a href="http://mynie.6te.net/demo/forumdisplay.php?fid=33" target="_blank" rel="noopener" class="mycode_url">http://mynie.6te.net/demo/forumdisplay.php?fid=33</a>]]></description>
			<content:encoded><![CDATA[Requirement: The latest <a href="http://mybbhacks.zingaburga.com/showthread.php?tid=288" target="_blank" rel="noopener" class="mycode_url">XThreads</a> Version (at least v1.32).<br />
<br />
Now, XThreads has a fantastic conditional feature. Amazing. Really really amazing!<br />
<br />
This is a simple example application that use that feature.<br />
<br />
Adding a reason for closed thread.<br />
<ul class="mycode_list"><li>
Create a custom thread fields with this settings:<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Title:</span> Closed Thread Reason<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> ctr<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums :</span> <span style="font-style: italic;" class="mycode_i">Select forum that we want to appliy it</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type :</span> Textbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Administrators<br />
Modify it as our needs. Basically, we should give this power to usergroups which has an ability to closed a thread.<br />
We can choose <span style="font-style: italic;" class="mycode_i">Custom (specify usergroups)</span> from the list, then select those usergroup in the <span style="font-style: italic;" class="mycode_i">Editable by Usergroups</span> list.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Blank Replacement Value :</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;if &#36;thread['closed'] == 1 then&gt;<br />
&lt;div class="smalltext"&gt;&lt;strong&gt;Closed Thread Reason:&lt;/strong&gt;&lt;/div&gt;<br />
&lt;div class="smalltext" style="color: red;"&gt;&lt;em&gt;Not specified&lt;/em&gt;&lt;/div&gt;<br />
&lt;/if&gt;<br />
</code></div></div>
Modify it as our needs. This layout will be displayed if the thread closed without any reason (the Closed Thread Reason textbox not filled).<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format  :</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;if &#36;thread['closed'] == 1 then&gt;<br />
&lt;div class="smalltext"&gt;&lt;strong&gt;Closed Thread Reason:&lt;/strong&gt;&lt;/div&gt;<br />
&lt;div class="smalltext" style="color: red;"&gt;&lt;em&gt;{VALUE}&lt;/em&gt;&lt;/div&gt;<br />
&lt;/if&gt;<br />
</code></div></div>
</li>
</ul>
<br />
Now, we need to put <span style="font-family: courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['ctr']}</span> variable in our <span style="font-style: italic;" class="mycode_i">forumdisplay_thread</span> template or <span style="font-style: italic;" class="mycode_i">template_prefix_forumdisplay_thread</span> template if we use template prefix for the forum.<br />
<br />
Find this code:<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;div class="author smalltext"&gt;{&#36;thread['profilelink']}&lt;/div&gt;<br />
</code></div></div>
<br />
Add this variable before the code above:<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>{&#36;GLOBALS['threadfields']['ctr']}</code></div></div><br />
So, the code will be like this:<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
{&#36;GLOBALS['threadfields']['tcr']}&lt;div class="author smalltext"&gt;{&#36;thread['profilelink']}&lt;/div&gt;<br />
</code></div></div>
<br />
Do that with <span style="font-style: italic;" class="mycode_i">search_results_threads_thread</span> template too if we want the reason displayed in search result.<br />
 <br />
<br />
Live Demo:<br />
<a href="http://mynie.6te.net/demo/forumdisplay.php?fid=33" target="_blank" rel="noopener" class="mycode_url">http://mynie.6te.net/demo/forumdisplay.php?fid=33</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Using XThreads Parser]]></title>
			<link>https://gidenler.me/thread-678.html</link>
			<pubDate>Tue, 18 Nov 2025 12:55:57 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://gidenler.me/member.php?action=profile&uid=2">Hasan</a>]]></dc:creator>
			<guid isPermaLink="false">https://gidenler.me/thread-678.html</guid>
			<description><![CDATA[We will use XThreads to add our custom script like javascript and CSS style per thread basis. And, we will use it to add some HTML code in postbit.<br />
<br />
Here is a simple example for it:<br />
<br />
Custom Thread Fields Setting:<br />
<ol type="1" class="mycode_list"><li>Multiline Textbox for Script For Header:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Script For Header<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> cshscr<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Multiline Textbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Administrator<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Parsing:</span> No parsing (dangerous!!)<br />
<br />
Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['cshscr']}</span>.<br />
Please remember that we need to set the <span style="font-style: italic;" class="mycode_i">Editable by / Required Field?</span> setting to Administrator. So, only Admin can use this field.<br />
We can use this field to put some custom script in our header tag <span style="font-family: courier;" class="mycode_font">&lt;head&gt;......&lt;/head&gt;</span> via the <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['cshscr']}</span> variable, like javascript and custom CSS style. Put the <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['cshscr']}</span> variable in our <span style="font-style: italic;" class="mycode_i">showthread</span> template, inside the header tag <span style="font-family: courier;" class="mycode_font">&lt;head&gt;......&lt;/head&gt;</span>.<br />
<br />
Example (based on MyBB default showthread template):<br />
Line #10:<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;head&gt;<br />
&lt;title&gt;{&#36;thread['subject']}&lt;/title&gt;<br />
{&#36;headerinclude}<br />
&lt;script type="text/javascript"&gt;<br />
&lt;!--<br />
	var quickdelete_confirm = "{&#36;lang-&gt;quickdelete_confirm}";<br />
// <img src="https://gidenler.me/images/smilies/sag_ok.png" alt="Sağ ok" title="Sağ ok" class="smilie smilie_54" /><br />
&lt;/script&gt;<br />
&lt;script type="text/javascript" src="jscripts/thread.js?ver=1400"&gt;&lt;/script&gt;<br />
{&#36;GLOBALS['threadfields']['cshscr']}<br />
&lt;/head&gt;<br />
</code></div></div>
</li>
</ul>
<br />
</li>
<li>Multiline Textbox for Script For Body:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Script For Body<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> csbscr<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select a forum above'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Multiline Textbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Administrator<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Parsing:</span> Use MyBB Parser<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">MyBB Parser Options</span>: Check All Options<br />
<br />
Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['csbscr']}</span>.<br />
We can use this field to put some HTML code inside postbit. Again, please remember that we need to set the <span style="font-style: italic;" class="mycode_i">Editable by / Required Field?</span> setting to Administrator, so, only Admin can use this field - can add HTML code in the postbit. Just put the <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['csbscr']}</span> variable in <span style="font-style: italic;" class="mycode_i">postbit</span> and <span style="font-style: italic;" class="mycode_i">postbit_classic</span> template.<br />
<br />
Example:<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;div class="post_body" id="pid_{&#36;post['pid']}"&gt;<br />
	{&#36;post['message']}<br />
	{&#36;GLOBALS['threadfields']['csbscr']}<br />
&lt;/div&gt;<br />
</code></div></div>
</li>
</ul>
</li>
</ol>
Now, we can use HTML in the first post, and we can use some custom javascript and / or CSS style per thread basis.<br />
With this way we can create "unlimited" HTML page directly from our forum. And of course we can edit, approve / unapprove each "page", because it is threads.<br />
<br />
Live Demo:<br />
<br />
This demo uses stylesheet link in header, and HTML in body.<br />
Yeah, I grab a free template and put it there for the demo <img src="https://gidenler.me/images/v2/smile/=D.gif" alt="Big Grin" title="Big Grin" class="smilie smilie_4" /><br />
<a href="http://www.14.mynie.co.cc/showthread.php?tid=54" target="_blank" rel="noopener" class="mycode_url">http://www.14.mynie.co.cc/showthread.php?tid=54</a><br />
<br />
This demo uses javascript link and custom style in header. HTML in body.<br />
Using Frogjs v1.1 for this demo.<br />
<a href="http://www.14.mynie.co.cc/showthread.php?tid=55" target="_blank" rel="noopener" class="mycode_url">http://www.14.mynie.co.cc/showthread.php?tid=55</a>]]></description>
			<content:encoded><![CDATA[We will use XThreads to add our custom script like javascript and CSS style per thread basis. And, we will use it to add some HTML code in postbit.<br />
<br />
Here is a simple example for it:<br />
<br />
Custom Thread Fields Setting:<br />
<ol type="1" class="mycode_list"><li>Multiline Textbox for Script For Header:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Script For Header<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> cshscr<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Multiline Textbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Administrator<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Parsing:</span> No parsing (dangerous!!)<br />
<br />
Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['cshscr']}</span>.<br />
Please remember that we need to set the <span style="font-style: italic;" class="mycode_i">Editable by / Required Field?</span> setting to Administrator. So, only Admin can use this field.<br />
We can use this field to put some custom script in our header tag <span style="font-family: courier;" class="mycode_font">&lt;head&gt;......&lt;/head&gt;</span> via the <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['cshscr']}</span> variable, like javascript and custom CSS style. Put the <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['cshscr']}</span> variable in our <span style="font-style: italic;" class="mycode_i">showthread</span> template, inside the header tag <span style="font-family: courier;" class="mycode_font">&lt;head&gt;......&lt;/head&gt;</span>.<br />
<br />
Example (based on MyBB default showthread template):<br />
Line #10:<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;head&gt;<br />
&lt;title&gt;{&#36;thread['subject']}&lt;/title&gt;<br />
{&#36;headerinclude}<br />
&lt;script type="text/javascript"&gt;<br />
&lt;!--<br />
	var quickdelete_confirm = "{&#36;lang-&gt;quickdelete_confirm}";<br />
// <img src="https://gidenler.me/images/smilies/sag_ok.png" alt="Sağ ok" title="Sağ ok" class="smilie smilie_54" /><br />
&lt;/script&gt;<br />
&lt;script type="text/javascript" src="jscripts/thread.js?ver=1400"&gt;&lt;/script&gt;<br />
{&#36;GLOBALS['threadfields']['cshscr']}<br />
&lt;/head&gt;<br />
</code></div></div>
</li>
</ul>
<br />
</li>
<li>Multiline Textbox for Script For Body:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Script For Body<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> csbscr<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select a forum above'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Multiline Textbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Administrator<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Parsing:</span> Use MyBB Parser<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">MyBB Parser Options</span>: Check All Options<br />
<br />
Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['csbscr']}</span>.<br />
We can use this field to put some HTML code inside postbit. Again, please remember that we need to set the <span style="font-style: italic;" class="mycode_i">Editable by / Required Field?</span> setting to Administrator, so, only Admin can use this field - can add HTML code in the postbit. Just put the <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['csbscr']}</span> variable in <span style="font-style: italic;" class="mycode_i">postbit</span> and <span style="font-style: italic;" class="mycode_i">postbit_classic</span> template.<br />
<br />
Example:<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;div class="post_body" id="pid_{&#36;post['pid']}"&gt;<br />
	{&#36;post['message']}<br />
	{&#36;GLOBALS['threadfields']['csbscr']}<br />
&lt;/div&gt;<br />
</code></div></div>
</li>
</ul>
</li>
</ol>
Now, we can use HTML in the first post, and we can use some custom javascript and / or CSS style per thread basis.<br />
With this way we can create "unlimited" HTML page directly from our forum. And of course we can edit, approve / unapprove each "page", because it is threads.<br />
<br />
Live Demo:<br />
<br />
This demo uses stylesheet link in header, and HTML in body.<br />
Yeah, I grab a free template and put it there for the demo <img src="https://gidenler.me/images/v2/smile/=D.gif" alt="Big Grin" title="Big Grin" class="smilie smilie_4" /><br />
<a href="http://www.14.mynie.co.cc/showthread.php?tid=54" target="_blank" rel="noopener" class="mycode_url">http://www.14.mynie.co.cc/showthread.php?tid=54</a><br />
<br />
This demo uses javascript link and custom style in header. HTML in body.<br />
Using Frogjs v1.1 for this demo.<br />
<a href="http://www.14.mynie.co.cc/showthread.php?tid=55" target="_blank" rel="noopener" class="mycode_url">http://www.14.mynie.co.cc/showthread.php?tid=55</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Using XThreads Parser]]></title>
			<link>https://gidenler.me/thread-677.html</link>
			<pubDate>Tue, 18 Nov 2025 12:41:20 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://gidenler.me/member.php?action=profile&uid=2">Hasan</a>]]></dc:creator>
			<guid isPermaLink="false">https://gidenler.me/thread-677.html</guid>
			<description><![CDATA[Basic usage of XThreads <img src="https://gidenler.me/images/v2/smile/=D.gif" alt="Big Grin" title="Big Grin" class="smilie smilie_4" /><br />
We will use XThreads to add our custom script like javascript and CSS style per thread basis. And, we will use it to add some HTML code in postbit.<br />
<br />
Here is a simple example for it:<br />
<br />
Custom Thread Fields Setting:<br />
<ol type="1" class="mycode_list"><li>Multiline Textbox for Script For Header:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Script For Header<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> cshscr<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Multiline Textbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Administrator<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Parsing:</span> No parsing (dangerous!!)<br />
<br />
Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['cshscr']}</span>.<br />
Please remember that we need to set the <span style="font-style: italic;" class="mycode_i">Editable by / Required Field?</span> setting to Administrator. So, only Admin can use this field.<br />
We can use this field to put some custom script in our header tag <span style="font-family: courier;" class="mycode_font">&lt;head&gt;......&lt;/head&gt;</span> via the <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['cshscr']}</span> variable, like javascript and custom CSS style. Put the <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['cshscr']}</span> variable in our <span style="font-style: italic;" class="mycode_i">showthread</span> template, inside the header tag <span style="font-family: courier;" class="mycode_font">&lt;head&gt;......&lt;/head&gt;</span>.<br />
<br />
Example (based on MyBB default showthread template):<br />
Line #10:<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;head&gt;<br />
&lt;title&gt;{&#36;thread['subject']}&lt;/title&gt;<br />
{&#36;headerinclude}<br />
&lt;script type="text/javascript"&gt;<br />
&lt;!--<br />
	var quickdelete_confirm = "{&#36;lang-&gt;quickdelete_confirm}";<br />
// <img src="https://gidenler.me/images/smilies/sag_ok.png" alt="Sağ ok" title="Sağ ok" class="smilie smilie_54" /><br />
&lt;/script&gt;<br />
&lt;script type="text/javascript" src="jscripts/thread.js?ver=1400"&gt;&lt;/script&gt;<br />
{&#36;GLOBALS['threadfields']['cshscr']}<br />
&lt;/head&gt;<br />
</code></div></div>
</li>
</ul>
<br />
</li>
<li>Multiline Textbox for Script For Body:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Script For Body<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> csbscr<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select a forum above'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Multiline Textbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Administrator<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Parsing:</span> Use MyBB Parser<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">MyBB Parser Options</span>: Check All Options<br />
<br />
Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['csbscr']}</span>.<br />
We can use this field to put some HTML code inside postbit. Again, please remember that we need to set the <span style="font-style: italic;" class="mycode_i">Editable by / Required Field?</span> setting to Administrator, so, only Admin can use this field - can add HTML code in the postbit. Just put the <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['csbscr']}</span> variable in <span style="font-style: italic;" class="mycode_i">postbit</span> and <span style="font-style: italic;" class="mycode_i">postbit_classic</span> template.<br />
<br />
Example:<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;div class="post_body" id="pid_{&#36;post['pid']}"&gt;<br />
	{&#36;post['message']}<br />
	{&#36;GLOBALS['threadfields']['csbscr']}<br />
&lt;/div&gt;<br />
</code></div></div>
</li>
</ul>
</li>
</ol>
Now, we can use HTML in the first post, and we can use some custom javascript and / or CSS style per thread basis.<br />
With this way we can create "unlimited" HTML page directly from our forum. And of course we can edit, approve / unapprove each "page", because it is threads.<br />
<br />
Live Demo:<br />
<br />
This demo uses stylesheet link in header, and HTML in body.<br />
Yeah, I grab a free template and put it there for the demo <img src="https://gidenler.me/images/v2/smile/=D.gif" alt="Big Grin" title="Big Grin" class="smilie smilie_4" /><br />
<a href="http://www.14.mynie.co.cc/showthread.php?tid=54" target="_blank" rel="noopener" class="mycode_url">http://www.14.mynie.co.cc/showthread.php?tid=54</a><br />
<br />
This demo uses javascript link and custom style in header. HTML in body.<br />
Using Frogjs v1.1 for this demo.<br />
<a href="http://www.14.mynie.co.cc/showthread.php?tid=55" target="_blank" rel="noopener" class="mycode_url">http://www.14.mynie.co.cc/showthread.php?tid=55</a>]]></description>
			<content:encoded><![CDATA[Basic usage of XThreads <img src="https://gidenler.me/images/v2/smile/=D.gif" alt="Big Grin" title="Big Grin" class="smilie smilie_4" /><br />
We will use XThreads to add our custom script like javascript and CSS style per thread basis. And, we will use it to add some HTML code in postbit.<br />
<br />
Here is a simple example for it:<br />
<br />
Custom Thread Fields Setting:<br />
<ol type="1" class="mycode_list"><li>Multiline Textbox for Script For Header:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Script For Header<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> cshscr<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Multiline Textbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Administrator<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Parsing:</span> No parsing (dangerous!!)<br />
<br />
Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['cshscr']}</span>.<br />
Please remember that we need to set the <span style="font-style: italic;" class="mycode_i">Editable by / Required Field?</span> setting to Administrator. So, only Admin can use this field.<br />
We can use this field to put some custom script in our header tag <span style="font-family: courier;" class="mycode_font">&lt;head&gt;......&lt;/head&gt;</span> via the <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['cshscr']}</span> variable, like javascript and custom CSS style. Put the <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['cshscr']}</span> variable in our <span style="font-style: italic;" class="mycode_i">showthread</span> template, inside the header tag <span style="font-family: courier;" class="mycode_font">&lt;head&gt;......&lt;/head&gt;</span>.<br />
<br />
Example (based on MyBB default showthread template):<br />
Line #10:<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;head&gt;<br />
&lt;title&gt;{&#36;thread['subject']}&lt;/title&gt;<br />
{&#36;headerinclude}<br />
&lt;script type="text/javascript"&gt;<br />
&lt;!--<br />
	var quickdelete_confirm = "{&#36;lang-&gt;quickdelete_confirm}";<br />
// <img src="https://gidenler.me/images/smilies/sag_ok.png" alt="Sağ ok" title="Sağ ok" class="smilie smilie_54" /><br />
&lt;/script&gt;<br />
&lt;script type="text/javascript" src="jscripts/thread.js?ver=1400"&gt;&lt;/script&gt;<br />
{&#36;GLOBALS['threadfields']['cshscr']}<br />
&lt;/head&gt;<br />
</code></div></div>
</li>
</ul>
<br />
</li>
<li>Multiline Textbox for Script For Body:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Script For Body<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> csbscr<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select a forum above'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Multiline Textbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Administrator<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Parsing:</span> Use MyBB Parser<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">MyBB Parser Options</span>: Check All Options<br />
<br />
Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['csbscr']}</span>.<br />
We can use this field to put some HTML code inside postbit. Again, please remember that we need to set the <span style="font-style: italic;" class="mycode_i">Editable by / Required Field?</span> setting to Administrator, so, only Admin can use this field - can add HTML code in the postbit. Just put the <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['csbscr']}</span> variable in <span style="font-style: italic;" class="mycode_i">postbit</span> and <span style="font-style: italic;" class="mycode_i">postbit_classic</span> template.<br />
<br />
Example:<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;div class="post_body" id="pid_{&#36;post['pid']}"&gt;<br />
	{&#36;post['message']}<br />
	{&#36;GLOBALS['threadfields']['csbscr']}<br />
&lt;/div&gt;<br />
</code></div></div>
</li>
</ul>
</li>
</ol>
Now, we can use HTML in the first post, and we can use some custom javascript and / or CSS style per thread basis.<br />
With this way we can create "unlimited" HTML page directly from our forum. And of course we can edit, approve / unapprove each "page", because it is threads.<br />
<br />
Live Demo:<br />
<br />
This demo uses stylesheet link in header, and HTML in body.<br />
Yeah, I grab a free template and put it there for the demo <img src="https://gidenler.me/images/v2/smile/=D.gif" alt="Big Grin" title="Big Grin" class="smilie smilie_4" /><br />
<a href="http://www.14.mynie.co.cc/showthread.php?tid=54" target="_blank" rel="noopener" class="mycode_url">http://www.14.mynie.co.cc/showthread.php?tid=54</a><br />
<br />
This demo uses javascript link and custom style in header. HTML in body.<br />
Using Frogjs v1.1 for this demo.<br />
<a href="http://www.14.mynie.co.cc/showthread.php?tid=55" target="_blank" rel="noopener" class="mycode_url">http://www.14.mynie.co.cc/showthread.php?tid=55</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Showcase Forum]]></title>
			<link>https://gidenler.me/thread-676.html</link>
			<pubDate>Tue, 18 Nov 2025 12:40:10 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://gidenler.me/member.php?action=profile&uid=2">Hasan</a>]]></dc:creator>
			<guid isPermaLink="false">https://gidenler.me/thread-676.html</guid>
			<description><![CDATA[<span style="font-weight: bold;" class="mycode_b">Last Update: <a href="http://mybbhacks.zingaburga.com/showthread.php?tid=295&amp;pid=6616#pid6616" target="_blank" rel="noopener" class="mycode_url">08 February 2011</a></span><br />
<br />
With XThreads, we can create a showcase forum. Here is a simple example to do that:<br />
<br />
1. First, we will create a textbox for Website Name:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Website Name<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> scfname<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Description:</span> Your website name<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select a forum that we will apply the showcase forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Textbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
Later, we need to put <span style="font-style: italic;" class="mycode_i">{&#36;GLOBALS['threadfields']['scfname']}</span> variable to display it into our template.<br />
</li>
</ul>
<br />
2. Next, we will create a textbox for Website URL:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Website URL<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> scfurl<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Description:</span> e.g: <span style="font-style: italic;" class="mycode_i"><a href="http://www.yoursite.com" target="_blank" rel="noopener" class="mycode_url">www.yoursite.com</a></span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select the forum in point 1'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Textbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 2<br />
Later, we need to put <span style="font-style: italic;" class="mycode_i">{&#36;GLOBALS['threadfields']['scfurl']}</span> variable to display it into our template.<br />
</li>
</ul>
<br />
3. Then, we will create a txtbox for Website Language:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Website Language<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> scflang<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Description:</span> The major language in your website<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select the forum in point 1 or 2'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Textbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 3<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format:</span> <div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;tr&gt;<br />
&lt;td valign="top"&gt;Language&lt;/td&gt;&lt;td valign="top"&gt;:&lt;/td&gt;&lt;td valign="top"&gt;{VALUE}&lt;/td&gt;<br />
&lt;/tr&gt;</code></div></div>
We need to put <span style="font-style: italic;" class="mycode_i">{&#36;GLOBALS['threadfields']['scflang']}</span> variable to display it into our template.<br />
</li>
</ul>
<br />
4. Now, we will create a textbox for Website Slogan:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Website Slogan<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> scfslogan<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Description:</span> Your website slogan (not required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select the forum in point 1, 2 or 3'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Textbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 4<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format:</span> <div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;tr&gt;<br />
&lt;td valign="top"&gt;Slogan&lt;/td&gt;&lt;td valign="top"&gt;:&lt;/td&gt;&lt;td valign="top"&gt;{VALUE}&lt;/td&gt;<br />
&lt;/tr&gt;</code></div></div>
We need to put <span style="font-style: italic;" class="mycode_i">{&#36;GLOBALS['threadfields']['scfslogan']}</span> variable to display it into our template.<br />
</li>
</ul>
<br />
5. Then, we will create a textbox for Founded (Year):<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Founded (Year)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> scffounded<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Description:</span> e.g: 2010<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select the forum in point 1, 2, 3 or 4'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Textbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 5<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format:</span> <div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;tr&gt;<br />
&lt;td valign="top"&gt;Founded&lt;/td&gt;&lt;td valign="top"&gt;:&lt;/td&gt;&lt;td valign="top"&gt;{VALUE}&lt;/td&gt;<br />
&lt;/tr&gt;</code></div></div>
</li>
<li><span style="font-weight: bold;" class="mycode_b">Text Mask Filter:</span> <div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>^(19|20)&#92;d&#92;d&#36;</code></div></div>We need to put <span style="font-style: italic;" class="mycode_i">{&#36;GLOBALS['threadfields']['scffounded']}</span> variable to display it into our template.<br />
</li>
</ul>
<br />
6. Now, we will create categories:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Website Category<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> scfcat<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Description:</span> Select your website category<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select the forum in point 1, 2, 3, 4 or 5'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Listbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Height:</span> 1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Values List:</span> <div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>Entertainment<br />
Encyclopedia<br />
Other</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (Required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 6<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Allow Filtering:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Formatting Map List:</span><br />
EDIT: Using <span style="font-family: courier;" class="mycode_font">{&#36;forumurl?}</span> for the filtering.<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>Entertainment{|}&lt;a href="{&#36;forumurl?}filtertf_scfcat=Entertainment"&gt;&lt;span style="color: green;"&gt;&lt;strong&gt;Entertainment&lt;/strong&gt;&lt;/span&gt;&lt;/a&gt;<br />
Encyclopedia{|}&lt;a href="{&#36;forumurl?}filtertf_scfcat=Encyclopedia"&gt;&lt;span style="color: blue;"&gt;&lt;strong&gt;Encyclopedia&lt;/strong&gt;&lt;/span&gt;&lt;/a&gt;<br />
Other{|}&lt;a href="{&#36;forumurl?}filtertf_scfcat=Other"&gt;&lt;span style="color: yellow;"&gt;&lt;strong&gt;Other&lt;/strong&gt;&lt;/span&gt;&lt;/a&gt;</code></div></div>
To display this formatting list, later we need to put <span style="font-style: italic;" class="mycode_i">{&#36;GLOBALS['threadfields']['scfcat']}</span> variable in our template.<br />
</li>
</ul>
<br />
<br />
7. Now, XThreads Options in Forum settings (the forum in the settings 1, 2, 3, 4, 5 and 6 above):<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Prefix:</span> <span style="font-style: italic;" class="mycode_i">scf_</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Enable XThreads' Inline Forum Search:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Override Threads Per Page:</span> 5<br />
Modify it as our needs.<br />
</li>
</ul>
<br />
8. Create new templates in Global Template:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> scf_forumdisplay_threadlist<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;div class="float_left"&gt;<br />
	{&#36;multipage}<br />
&lt;/div&gt;<br />
&lt;div class="float_right"&gt;<br />
	{&#36;newthread}<br />
&lt;/div&gt;<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="clear: both;"&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="thead" colspan="{&#36;colspan}"&gt;<br />
			&lt;div style="float: right;"&gt;<br />
				&lt;span class="smalltext"&gt;&lt;strong&gt;&lt;a href="misc.php?action=markread&amp;amp;fid={&#36;fid}"&gt;{&#36;lang-&gt;markforum_read}&lt;/a&gt; | &lt;a href="usercp2.php?action={&#36;add_remove_subscription}subscription&amp;amp;type=forum&amp;amp;fid={&#36;fid}&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;{&#36;add_remove_subscription_text}&lt;/a&gt;{&#36;clearstoredpass}&lt;/strong&gt;&lt;/span&gt;<br />
			&lt;/div&gt;<br />
			&lt;div&gt;<br />
				&lt;strong&gt;{&#36;foruminfo['name']}&lt;/strong&gt;<br />
			&lt;/div&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="tcat" width="100%" colspan="2"&gt;&lt;span class="smalltext"&gt;&lt;strong&gt;Sort By: &lt;a href="{&#36;sorturl}&amp;amp;sortby=subject&amp;amp;order=asc"&gt;{&#36;lang-&gt;thread}&lt;/a&gt; {&#36;orderarrow['subject']} | &lt;a href="{&#36;sorturl}&amp;amp;sortby=starter&amp;amp;order=asc"&gt;{&#36;lang-&gt;author}&lt;/a&gt; {&#36;orderarrow['starter']} | &lt;a href="{&#36;sorturl}&amp;amp;sortby=replies&amp;amp;order=desc"&gt;{&#36;lang-&gt;replies}&lt;/a&gt; {&#36;orderarrow['replies']} | &lt;a href="{&#36;sorturl}&amp;amp;sortby=views&amp;amp;order=desc"&gt;{&#36;lang-&gt;views}&lt;/a&gt; {&#36;orderarrow['views']} {&#36;ratingcol} | &lt;a href="{&#36;sorturl}&amp;amp;sortby=lastpost&amp;amp;order=desc"&gt;{&#36;lang-&gt;lastpost}&lt;/a&gt; {&#36;orderarrow['lastpost']}&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;<br />
		{&#36;inlinemodcol}<br />
	&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;br class="clear" /&gt;<br />
	{&#36;threads}{&#36;nullthreads}<br />
&lt;br class="clear" /&gt;<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="clear: both;"&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="tfoot" align="right" colspan="{&#36;colspan}"&gt;<br />
			&lt;form action="forumdisplay.php" method="get"&gt;<br />
				&lt;input type="hidden" name="fid" value="{&#36;fid}" /&gt;<br />
				&lt;select name="sortby"&gt;<br />
					&lt;option value="subject" {&#36;sortsel['subject']}&gt;{&#36;lang-&gt;sort_by_subject}&lt;/option&gt;<br />
					&lt;option value="lastpost" {&#36;sortsel['lastpost']}&gt;{&#36;lang-&gt;sort_by_lastpost}&lt;/option&gt;<br />
					&lt;option value="starter" {&#36;sortsel['starter']}&gt;{&#36;lang-&gt;sort_by_starter}&lt;/option&gt;<br />
					&lt;option value="started" {&#36;sortsel['started']}&gt;{&#36;lang-&gt;sort_by_started}&lt;/option&gt;<br />
					{&#36;ratingsort}<br />
					&lt;option value="replies" {&#36;sortsel['replies']}&gt;{&#36;lang-&gt;sort_by_replies}&lt;/option&gt;<br />
					&lt;option value="views" {&#36;sortsel['views']}&gt;{&#36;lang-&gt;sort_by_views}&lt;/option&gt;<br />
				&lt;/select&gt;<br />
				&lt;select name="order"&gt;<br />
					&lt;option value="asc" {&#36;ordersel['asc']}&gt;{&#36;lang-&gt;sort_order_asc}&lt;/option&gt;<br />
					&lt;option value="desc" {&#36;ordersel['desc']}&gt;{&#36;lang-&gt;sort_order_desc}&lt;/option&gt;<br />
				&lt;/select&gt;<br />
				&lt;select name="datecut"&gt;<br />
					&lt;option value="1" {&#36;datecutsel['1']}&gt;{&#36;lang-&gt;datelimit_1day}&lt;/option&gt;<br />
					&lt;option value="5" {&#36;datecutsel['5']}&gt;{&#36;lang-&gt;datelimit_5days}&lt;/option&gt;<br />
					&lt;option value="10" {&#36;datecutsel['10']}&gt;{&#36;lang-&gt;datelimit_10days}&lt;/option&gt;<br />
					&lt;option value="20" {&#36;datecutsel['20']}&gt;{&#36;lang-&gt;datelimit_20days}&lt;/option&gt;<br />
					&lt;option value="50" {&#36;datecutsel['50']}&gt;{&#36;lang-&gt;datelimit_50days}&lt;/option&gt;<br />
					&lt;option value="75" {&#36;datecutsel['75']}&gt;{&#36;lang-&gt;datelimit_75days}&lt;/option&gt;<br />
					&lt;option value="100" {&#36;datecutsel['100']}&gt;{&#36;lang-&gt;datelimit_100days}&lt;/option&gt;<br />
					&lt;option value="365" {&#36;datecutsel['365']}&gt;{&#36;lang-&gt;datelimit_lastyear}&lt;/option&gt;<br />
					&lt;option value="9999" {&#36;datecutsel['9999']}&gt;{&#36;lang-&gt;datelimit_beginning}&lt;/option&gt;<br />
				&lt;/select&gt;<br />
				{&#36;gobutton}<br />
			&lt;/form&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;div class="float_left"&gt;<br />
	{&#36;multipage}<br />
&lt;/div&gt;<br />
&lt;div class="float_right" style="margin-top: 4px;"&gt;<br />
	{&#36;newthread}<br />
&lt;/div&gt;<br />
&lt;br style="clear: both;" /&gt;<br />
&lt;br /&gt;<br />
&lt;div class="float_left"&gt;<br />
	&lt;div class="float_left"&gt;<br />
		&lt;dl class="thread_legend smalltext"&gt;<br />
			&lt;dd&gt;&lt;img src="{&#36;theme['imgdir']}/newfolder.gif" alt="{&#36;lang-&gt;new_thread}" title="{&#36;lang-&gt;new_thread}" /&gt; {&#36;lang-&gt;new_thread}&lt;/dd&gt;<br />
			&lt;dd&gt;&lt;img src="{&#36;theme['imgdir']}/newhotfolder.gif" alt="{&#36;lang-&gt;new_hot_thread}" title="{&#36;lang-&gt;new_hot_thread}" /&gt; {&#36;lang-&gt;new_hot_thread}&lt;/dd&gt;<br />
			&lt;dd&gt;&lt;img src="{&#36;theme['imgdir']}/hotfolder.gif" alt="{&#36;lang-&gt;hot_thread}" title="{&#36;lang-&gt;hot_thread}" /&gt; {&#36;lang-&gt;hot_thread}&lt;/dd&gt;<br />
		&lt;/dl&gt;<br />
	&lt;/div&gt;<br />
<br />
	&lt;div class="float_left"&gt;<br />
		&lt;dl class="thread_legend smalltext"&gt;<br />
			&lt;dd&gt;&lt;img src="{&#36;theme['imgdir']}/folder.gif" alt="{&#36;lang-&gt;no_new_thread}" title="{&#36;lang-&gt;no_new_thread}" /&gt; {&#36;lang-&gt;no_new_thread}&lt;/dd&gt;<br />
			&lt;dd&gt;&lt;img src="{&#36;theme['imgdir']}/dot_folder.gif" alt="{&#36;lang-&gt;posts_by_you}" title="{&#36;lang-&gt;posts_by_you}" /&gt; {&#36;lang-&gt;posts_by_you}&lt;/dd&gt;<br />
			&lt;dd&gt;&lt;img src="{&#36;theme['imgdir']}/lockfolder.gif" alt="{&#36;lang-&gt;locked_thread}" title="{&#36;lang-&gt;locked_thread}" /&gt; {&#36;lang-&gt;locked_thread}&lt;/dd&gt;<br />
		&lt;/dl&gt;<br />
	&lt;/div&gt;<br />
	&lt;br style="clear: both" /&gt;<br />
&lt;/div&gt;<br />
<br />
&lt;div class="float_right" style="text-align: right;"&gt;<br />
	{&#36;inlinemod}<br />
	{&#36;searchforum}<br />
	{&#36;forumjump}<br />
&lt;/div&gt;<br />
&lt;br style="clear: both" /&gt;<br />
{&#36;inline_edit_js}</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> scf_forumdisplay_threadlist_rating<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>| &lt;a href="{&#36;sorturl}&amp;amp;sortby=rating&amp;amp;order=desc"&gt;{&#36;lang-&gt;rating}&lt;/a&gt; {&#36;orderarrow['rating']}<br />
&lt;script type="text/javascript" src="jscripts/rating.js?ver=1400"&gt;&lt;/script&gt;<br />
&lt;script type="text/javascript"&gt;<br />
&lt;!--<br />
	lang.stars = new Array();<br />
	lang.stars[1] = "{&#36;lang-&gt;one_star}";<br />
	lang.stars[2] = "{&#36;lang-&gt;two_stars}";<br />
	lang.stars[3] = "{&#36;lang-&gt;three_stars}";<br />
	lang.stars[4] = "{&#36;lang-&gt;four_stars}";<br />
	lang.stars[5] = "{&#36;lang-&gt;five_stars}";<br />
// <img src="https://gidenler.me/images/smilies/sag_ok.png" alt="Sağ ok" title="Sağ ok" class="smilie smilie_54" /><br />
&lt;/script&gt;</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> scf_forumdisplay_thread<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="clear: both;"&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="thead" align="center" colspan="{&#36;colspan}"&gt;<br />
			&lt;div&gt;&lt;strong&gt;&lt;a href="{&#36;thread['threadlink']}" class="{&#36;inline_edit_class} {&#36;new_class}" id="tid_{&#36;inline_edit_tid}"&gt;{&#36;thread['subject']}&lt;/a&gt;&lt;/strong&gt;&lt;/div&gt;<br />
			&lt;div class="author smalltext"&gt;{&#36;lang-&gt;author}: {&#36;thread['profilelink']}&lt;/div&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="{&#36;bgcolor}" width="50%"&gt;<br />
			&lt;span class="float_left"&gt;<br />
				&lt;img src="{&#36;theme['imgdir']}/{&#36;folder}.gif" alt="{&#36;folder_label}" title="{&#36;folder_label}" /&gt;{&#36;icon}{&#36;prefix}{&#36;gotounread}<br />
			&lt;/span&gt;<br />
			&lt;br class="clear" /&gt;<br />
			&lt;table width="100%" border="0"&gt;<br />
				&lt;tr&gt;<br />
					&lt;td width="90"&gt;URL&lt;/td&gt;<br />
					&lt;td&gt;:&lt;/td&gt;<br />
					&lt;td&gt;http://{&#36;GLOBALS['threadfields']['scfurl']}&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td&gt;Link&lt;/td&gt;<br />
					&lt;td&gt;:&lt;/td&gt;<br />
					&lt;td&gt;&lt;a href="http://{&#36;GLOBALS['threadfields']['scfurl']}"&gt;&lt;strong&gt;{&#36;GLOBALS['threadfields']['scfname']}&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				{&#36;rating}<br />
				{&#36;GLOBALS['threadfields']['scflang']}<br />
				{&#36;GLOBALS['threadfields']['scffounded']}<br />
				&lt;tr&gt;<br />
					&lt;td&gt;Category&lt;/td&gt;<br />
					&lt;td&gt;:&lt;/td&gt;<br />
					&lt;td&gt;{&#36;GLOBALS['threadfields']['scfcat']}&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				{&#36;GLOBALS['threadfields']['scfslogan']}<br />
			&lt;/table&gt;<br />
		&lt;/td&gt;<br />
	<br />
		&lt;td class="{&#36;bgcolor}" width="50%"&gt;<br />
			&lt;table width="100%" border="0"&gt;<br />
				&lt;tr&gt;<br />
					&lt;td align="center" valign="middle"&gt;<br />
						&lt;a href="http://www.alexa.com/siteinfo/{&#36;GLOBALS['threadfields']['scfurl']}"&gt;&lt;script type='text/javascript' language='JavaScript' src='http://xslt.alexa.com/site_stats/js/s/a?url={&#36;GLOBALS['threadfields']['scfurl']}'&gt;&lt;/script&gt;&lt;/a&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
			&lt;/table&gt;<br />
		&lt;/td&gt;<br />
		{&#36;modbit}<br />
	&lt;/tr&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="tfoot" colspan="{&#36;colspan}" align="center"&gt;<br />
			{&#36;thread['views']} {&#36;lang-&gt;views},<br />
			&lt;a href="javascript:MyBB.whoPosted({&#36;thread['tid']});"&gt;{&#36;thread['replies']}&lt;/a&gt;{&#36;unapproved_posts} {&#36;lang-&gt;replies},<br />
			&lt;a href="{&#36;thread['lastpostlink']}"&gt;{&#36;lang-&gt;lastpost}&lt;/a&gt;: {&#36;lastposterlink}, {&#36;lastpostdate} {&#36;lastposttime}<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;br /&gt;</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> scf_forumdisplay_thread_rating<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;tr&gt;<br />
&lt;td&gt;Rating&lt;/td&gt;<br />
&lt;td&gt;:&lt;/td&gt;<br />
&lt;td&gt;<br />
&lt;div class="float_left" id="rating_table_{&#36;thread['tid']}"&gt;<br />
	&lt;ul class="star_rating{&#36;not_rated}" id="rating_thread_{&#36;thread['tid']}"&gt;<br />
		&lt;li style="width: {&#36;thread['width']}%" class="current_rating" id="current_rating_{&#36;thread['tid']}"&gt;{&#36;ratingvotesav}&lt;/li&gt;<br />
	&lt;/ul&gt;<br />
	&lt;script type="text/javascript"&gt;<br />
	&lt;!--<br />
		Rating.build_forumdisplay({&#36;thread['tid']}, { width: '{&#36;thread['width']}', extra_class: '{&#36;not_rated}', current_average: '{&#36;ratingvotesav}' });<br />
	// <img src="https://gidenler.me/images/smilies/sag_ok.png" alt="Sağ ok" title="Sağ ok" class="smilie smilie_54" /><br />
	&lt;/script&gt;<br />
&lt;/div&gt;<br />
&lt;/td&gt;<br />
&lt;/tr&gt;</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> scf_showthread<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;{&#36;thread['subject']}&lt;/title&gt;<br />
{&#36;headerinclude}<br />
&lt;script type="text/javascript"&gt;<br />
&lt;!--<br />
	var quickdelete_confirm = "{&#36;lang-&gt;quickdelete_confirm}";<br />
// <img src="https://gidenler.me/images/smilies/sag_ok.png" alt="Sağ ok" title="Sağ ok" class="smilie smilie_54" /><br />
&lt;/script&gt;<br />
&lt;script type="text/javascript" src="jscripts/thread.js?ver=1400"&gt;&lt;/script&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
	{&#36;header}<br />
	{&#36;pollbox}<br />
	&lt;br class="clear" /&gt;<br />
	&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="clear: both; border-bottom-width: 0;"&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="thead" colspan="2"&gt;<br />
				&lt;div style="float: right;"&gt;<br />
					&lt;span class="smalltext"&gt;&lt;strong&gt;&lt;a href="showthread.php?mode=threaded&amp;amp;tid={&#36;tid}&amp;amp;pid={&#36;pid}#pid{&#36;pid}"&gt;{&#36;lang-&gt;threaded}&lt;/a&gt; | &lt;a href="showthread.php?mode=linear&amp;amp;tid={&#36;tid}&amp;amp;pid={&#36;pid}#pid{&#36;pid}"&gt;{&#36;lang-&gt;linear}&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;<br />
				&lt;/div&gt;<br />
				&lt;div&gt;<br />
					&lt;strong&gt;{&#36;thread['subject']}&lt;/strong&gt;<br />
				&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="tcat" width="50%"&gt;<br />
				&lt;table width="100%" border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="trow1" style="clear: both;"&gt;<br />
					&lt;tr&gt;<br />
						&lt;td width="50%"&gt;<br />
							&lt;table width="100%"&gt;<br />
								&lt;tr&gt;<br />
									&lt;td width="90"&gt;URL&lt;/td&gt;<br />
									&lt;td width="1"&gt;:&lt;/td&gt;<br />
									&lt;td&gt;http://{&#36;GLOBALS['threadfields']['scfurl']}&lt;/td&gt;<br />
								&lt;/tr&gt;<br />
								&lt;tr&gt;<br />
									&lt;td&gt;Link&lt;/td&gt;<br />
									&lt;td&gt;:&lt;/td&gt;<br />
									&lt;td&gt;&lt;a href="http://{&#36;GLOBALS['threadfields']['scfurl']}"&gt;&lt;strong&gt;{&#36;GLOBALS['threadfields']['scfname']}&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;<br />
								&lt;/tr&gt;<br />
								{&#36;ratethread}<br />
								{&#36;GLOBALS['threadfields']['scflang']}<br />
								{&#36;GLOBALS['threadfields']['scffounded']}<br />
								&lt;tr&gt;<br />
									&lt;td&gt;Category&lt;/td&gt;<br />
									&lt;td&gt;:&lt;/td&gt;<br />
									&lt;td&gt;{&#36;GLOBALS['threadfields']['scfcat']}&lt;/td&gt;<br />
								&lt;/tr&gt;<br />
								{&#36;GLOBALS['threadfields']['scfslogan']}<br />
								&lt;tr&gt;<br />
									&lt;td colspan="3"&gt;<br />
										&lt;span class="float_left smalltext"&gt;<br />
											&lt;em&gt;<br />
											{&#36;lang-&gt;views} {&#36;thread['views']},<br />
											{&#36;lang-&gt;replies} &lt;a href="javascript:MyBB.whoPosted({&#36;thread['tid']});"&gt;{&#36;thread['replies']}&lt;/a&gt;{&#36;unapproved_posts} <br />
											&lt;/em&gt;<br />
										&lt;/span&gt;<br />
									&lt;/td&gt;<br />
								&lt;/tr&gt;<br />
							&lt;/table&gt;<br />
						&lt;/td&gt;<br />
						&lt;td align="center" valign="middle"&gt;<br />
							&lt;table width="100%" border="0"&gt;<br />
								&lt;tr&gt;<br />
									&lt;td align="center" valign="middle"&gt;<br />
										&lt;a href="http://www.alexa.com/siteinfo/{&#36;GLOBALS['threadfields']['scfurl']}"&gt;&lt;script type='text/javascript' language='JavaScript' src='http://xslt.alexa.com/site_stats/js/s/a?url={&#36;GLOBALS['threadfields']['scfurl']}'&gt;&lt;/script&gt;&lt;/a&gt;<br />
									&lt;/td&gt;<br />
								&lt;/tr&gt;<br />
							&lt;/table&gt;<br />
						&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
				&lt;/table&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/table&gt;<br />
	&lt;br class="clear" /&gt;<br />
	&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="clear: both; border-bottom-width: 0;"&gt;<br />
		{&#36;classic_header}<br />
	&lt;/table&gt;<br />
	&lt;div id="posts"&gt;<br />
		{&#36;first_post}{&#36;posts}<br />
	&lt;/div&gt;<br />
	&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="border-top-width: 0;"&gt;<br />
		&lt;tr&gt;<br />
			&lt;td colspan="2" class="tfoot"&gt;<br />
				{&#36;search_thread}<br />
				&lt;div&gt;<br />
					&lt;strong&gt;&amp;laquo; &lt;a href="{&#36;next_oldest_link}"&gt;{&#36;lang-&gt;next_oldest}&lt;/a&gt; | &lt;a href="{&#36;next_newest_link}"&gt;{&#36;lang-&gt;next_newest}&lt;/a&gt; &amp;raquo;&lt;/strong&gt;<br />
				&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/table&gt;<br />
	&lt;div class="float_left"&gt;<br />
		{&#36;multipage}<br />
	&lt;/div&gt;<br />
	&lt;div style="padding-top: 4px;" class="float_right"&gt;<br />
		{&#36;newreply}<br />
	&lt;/div&gt;<br />
	&lt;br style="clear: both;" /&gt;<br />
	{&#36;quickreply}<br />
	{&#36;threadexbox}<br />
	{&#36;similarthreads}<br />
	&lt;br /&gt;<br />
	&lt;div class="float_left"&gt;<br />
		&lt;ul class="thread_tools"&gt;<br />
			&lt;li class="printable"&gt;&lt;a href="printthread.php?tid={&#36;tid}"&gt;{&#36;lang-&gt;view_printable}&lt;/a&gt;&lt;/li&gt;<br />
			&lt;li class="sendthread"&gt;&lt;a href="sendthread.php?tid={&#36;tid}"&gt;{&#36;lang-&gt;send_thread}&lt;/a&gt;&lt;/li&gt;<br />
			&lt;li class="subscription_{&#36;add_remove_subscription}"&gt;&lt;a href="usercp2.php?action={&#36;add_remove_subscription}subscription&amp;amp;tid={&#36;tid}&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;{&#36;add_remove_subscription_text}&lt;/a&gt;&lt;/li&gt;<br />
		&lt;/ul&gt;<br />
	&lt;/div&gt;<br />
<br />
	&lt;div class="float_right" style="text-align: right;"&gt;<br />
		{&#36;moderationoptions}<br />
		{&#36;forumjump}<br />
	&lt;/div&gt;<br />
	&lt;br style="clear: both;" /&gt;<br />
	{&#36;footer}<br />
&lt;/body&gt;<br />
&lt;/html&gt;</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> scf_showthread_ratethread<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;tr&gt;<br />
&lt;td&gt;Rating&lt;/td&gt;<br />
&lt;td&gt;:&lt;/td&gt;<br />
&lt;td&gt;<br />
&lt;div class="float_left"&gt;<br />
	&lt;script type="text/javascript" src="jscripts/rating.js?ver=1400"&gt;&lt;/script&gt;<br />
	&lt;div class="inline_rating"&gt;<br />
		&lt;ul class="star_rating{&#36;not_rated}" id="rating_thread_{&#36;thread['tid']}"&gt;<br />
			&lt;li style="width: {&#36;thread['width']}%" class="current_rating" id="current_rating_{&#36;thread['tid']}"&gt;{&#36;ratingvotesav}&lt;/li&gt;<br />
			&lt;li&gt;&lt;a class="one_star" title="{&#36;lang-&gt;one_star}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=1&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;1&lt;/a&gt;&lt;/li&gt;<br />
			&lt;li&gt;&lt;a class="two_stars" title="{&#36;lang-&gt;two_stars}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=2&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;2&lt;/a&gt;&lt;/li&gt;<br />
			&lt;li&gt;&lt;a class="three_stars" title="{&#36;lang-&gt;three_stars}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=3&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;3&lt;/a&gt;&lt;/li&gt;<br />
			&lt;li&gt;&lt;a class="four_stars" title="{&#36;lang-&gt;four_stars}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=4&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;4&lt;/a&gt;&lt;/li&gt;<br />
			&lt;li&gt;&lt;a class="five_stars" title="{&#36;lang-&gt;five_stars}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=5&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;5&lt;/a&gt;&lt;/li&gt;<br />
		&lt;/ul&gt;<br />
	&lt;/div&gt;<br />
&lt;/div&gt;<br />
&lt;/td&gt;<br />
&lt;/tr&gt;</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> scf_forumdisplay_threads_sep<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="clear: both;"&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="thead" align="center"&gt;<br />
			&lt;div&gt;&lt;strong&gt;Normal Sites&lt;/strong&gt;&lt;/div&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;br /&gt;</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> scf_forumdisplay_sticky_sep<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="clear: both;"&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="thead" align="center"&gt;<br />
			&lt;div&gt;&lt;strong&gt;Important Sites&lt;/strong&gt;&lt;/div&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;br /&gt;</code></div></div>
</li>
</ul>
<br />
Screenshots:<br />
<br />
1. User create a showcase thread:<br />
<br />
<img src="http://i40.tinypic.com/wuphfs.jpg" loading="lazy"  alt="[Resim: wuphfs.jpg]" class="mycode_img" /><br />
<br />
2. User view the post:<br />
<br />
<img src="http://i42.tinypic.com/68y990.jpg" loading="lazy"  alt="[Resim: 68y990.jpg]" class="mycode_img" /><br />
<br />
3. Thread List:<br />
<br />
<img src="http://i41.tinypic.com/2eykkrm.jpg" loading="lazy"  alt="[Resim: 2eykkrm.jpg]" class="mycode_img" />]]></description>
			<content:encoded><![CDATA[<span style="font-weight: bold;" class="mycode_b">Last Update: <a href="http://mybbhacks.zingaburga.com/showthread.php?tid=295&amp;pid=6616#pid6616" target="_blank" rel="noopener" class="mycode_url">08 February 2011</a></span><br />
<br />
With XThreads, we can create a showcase forum. Here is a simple example to do that:<br />
<br />
1. First, we will create a textbox for Website Name:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Website Name<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> scfname<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Description:</span> Your website name<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select a forum that we will apply the showcase forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Textbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
Later, we need to put <span style="font-style: italic;" class="mycode_i">{&#36;GLOBALS['threadfields']['scfname']}</span> variable to display it into our template.<br />
</li>
</ul>
<br />
2. Next, we will create a textbox for Website URL:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Website URL<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> scfurl<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Description:</span> e.g: <span style="font-style: italic;" class="mycode_i"><a href="http://www.yoursite.com" target="_blank" rel="noopener" class="mycode_url">www.yoursite.com</a></span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select the forum in point 1'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Textbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 2<br />
Later, we need to put <span style="font-style: italic;" class="mycode_i">{&#36;GLOBALS['threadfields']['scfurl']}</span> variable to display it into our template.<br />
</li>
</ul>
<br />
3. Then, we will create a txtbox for Website Language:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Website Language<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> scflang<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Description:</span> The major language in your website<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select the forum in point 1 or 2'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Textbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 3<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format:</span> <div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;tr&gt;<br />
&lt;td valign="top"&gt;Language&lt;/td&gt;&lt;td valign="top"&gt;:&lt;/td&gt;&lt;td valign="top"&gt;{VALUE}&lt;/td&gt;<br />
&lt;/tr&gt;</code></div></div>
We need to put <span style="font-style: italic;" class="mycode_i">{&#36;GLOBALS['threadfields']['scflang']}</span> variable to display it into our template.<br />
</li>
</ul>
<br />
4. Now, we will create a textbox for Website Slogan:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Website Slogan<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> scfslogan<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Description:</span> Your website slogan (not required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select the forum in point 1, 2 or 3'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Textbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 4<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format:</span> <div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;tr&gt;<br />
&lt;td valign="top"&gt;Slogan&lt;/td&gt;&lt;td valign="top"&gt;:&lt;/td&gt;&lt;td valign="top"&gt;{VALUE}&lt;/td&gt;<br />
&lt;/tr&gt;</code></div></div>
We need to put <span style="font-style: italic;" class="mycode_i">{&#36;GLOBALS['threadfields']['scfslogan']}</span> variable to display it into our template.<br />
</li>
</ul>
<br />
5. Then, we will create a textbox for Founded (Year):<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Founded (Year)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> scffounded<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Description:</span> e.g: 2010<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select the forum in point 1, 2, 3 or 4'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Textbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 5<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format:</span> <div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;tr&gt;<br />
&lt;td valign="top"&gt;Founded&lt;/td&gt;&lt;td valign="top"&gt;:&lt;/td&gt;&lt;td valign="top"&gt;{VALUE}&lt;/td&gt;<br />
&lt;/tr&gt;</code></div></div>
</li>
<li><span style="font-weight: bold;" class="mycode_b">Text Mask Filter:</span> <div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>^(19|20)&#92;d&#92;d&#36;</code></div></div>We need to put <span style="font-style: italic;" class="mycode_i">{&#36;GLOBALS['threadfields']['scffounded']}</span> variable to display it into our template.<br />
</li>
</ul>
<br />
6. Now, we will create categories:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Website Category<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> scfcat<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Description:</span> Select your website category<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select the forum in point 1, 2, 3, 4 or 5'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Listbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Height:</span> 1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Values List:</span> <div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>Entertainment<br />
Encyclopedia<br />
Other</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (Required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 6<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Allow Filtering:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Formatting Map List:</span><br />
EDIT: Using <span style="font-family: courier;" class="mycode_font">{&#36;forumurl?}</span> for the filtering.<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>Entertainment{|}&lt;a href="{&#36;forumurl?}filtertf_scfcat=Entertainment"&gt;&lt;span style="color: green;"&gt;&lt;strong&gt;Entertainment&lt;/strong&gt;&lt;/span&gt;&lt;/a&gt;<br />
Encyclopedia{|}&lt;a href="{&#36;forumurl?}filtertf_scfcat=Encyclopedia"&gt;&lt;span style="color: blue;"&gt;&lt;strong&gt;Encyclopedia&lt;/strong&gt;&lt;/span&gt;&lt;/a&gt;<br />
Other{|}&lt;a href="{&#36;forumurl?}filtertf_scfcat=Other"&gt;&lt;span style="color: yellow;"&gt;&lt;strong&gt;Other&lt;/strong&gt;&lt;/span&gt;&lt;/a&gt;</code></div></div>
To display this formatting list, later we need to put <span style="font-style: italic;" class="mycode_i">{&#36;GLOBALS['threadfields']['scfcat']}</span> variable in our template.<br />
</li>
</ul>
<br />
<br />
7. Now, XThreads Options in Forum settings (the forum in the settings 1, 2, 3, 4, 5 and 6 above):<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Prefix:</span> <span style="font-style: italic;" class="mycode_i">scf_</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Enable XThreads' Inline Forum Search:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Override Threads Per Page:</span> 5<br />
Modify it as our needs.<br />
</li>
</ul>
<br />
8. Create new templates in Global Template:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> scf_forumdisplay_threadlist<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;div class="float_left"&gt;<br />
	{&#36;multipage}<br />
&lt;/div&gt;<br />
&lt;div class="float_right"&gt;<br />
	{&#36;newthread}<br />
&lt;/div&gt;<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="clear: both;"&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="thead" colspan="{&#36;colspan}"&gt;<br />
			&lt;div style="float: right;"&gt;<br />
				&lt;span class="smalltext"&gt;&lt;strong&gt;&lt;a href="misc.php?action=markread&amp;amp;fid={&#36;fid}"&gt;{&#36;lang-&gt;markforum_read}&lt;/a&gt; | &lt;a href="usercp2.php?action={&#36;add_remove_subscription}subscription&amp;amp;type=forum&amp;amp;fid={&#36;fid}&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;{&#36;add_remove_subscription_text}&lt;/a&gt;{&#36;clearstoredpass}&lt;/strong&gt;&lt;/span&gt;<br />
			&lt;/div&gt;<br />
			&lt;div&gt;<br />
				&lt;strong&gt;{&#36;foruminfo['name']}&lt;/strong&gt;<br />
			&lt;/div&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="tcat" width="100%" colspan="2"&gt;&lt;span class="smalltext"&gt;&lt;strong&gt;Sort By: &lt;a href="{&#36;sorturl}&amp;amp;sortby=subject&amp;amp;order=asc"&gt;{&#36;lang-&gt;thread}&lt;/a&gt; {&#36;orderarrow['subject']} | &lt;a href="{&#36;sorturl}&amp;amp;sortby=starter&amp;amp;order=asc"&gt;{&#36;lang-&gt;author}&lt;/a&gt; {&#36;orderarrow['starter']} | &lt;a href="{&#36;sorturl}&amp;amp;sortby=replies&amp;amp;order=desc"&gt;{&#36;lang-&gt;replies}&lt;/a&gt; {&#36;orderarrow['replies']} | &lt;a href="{&#36;sorturl}&amp;amp;sortby=views&amp;amp;order=desc"&gt;{&#36;lang-&gt;views}&lt;/a&gt; {&#36;orderarrow['views']} {&#36;ratingcol} | &lt;a href="{&#36;sorturl}&amp;amp;sortby=lastpost&amp;amp;order=desc"&gt;{&#36;lang-&gt;lastpost}&lt;/a&gt; {&#36;orderarrow['lastpost']}&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;<br />
		{&#36;inlinemodcol}<br />
	&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;br class="clear" /&gt;<br />
	{&#36;threads}{&#36;nullthreads}<br />
&lt;br class="clear" /&gt;<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="clear: both;"&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="tfoot" align="right" colspan="{&#36;colspan}"&gt;<br />
			&lt;form action="forumdisplay.php" method="get"&gt;<br />
				&lt;input type="hidden" name="fid" value="{&#36;fid}" /&gt;<br />
				&lt;select name="sortby"&gt;<br />
					&lt;option value="subject" {&#36;sortsel['subject']}&gt;{&#36;lang-&gt;sort_by_subject}&lt;/option&gt;<br />
					&lt;option value="lastpost" {&#36;sortsel['lastpost']}&gt;{&#36;lang-&gt;sort_by_lastpost}&lt;/option&gt;<br />
					&lt;option value="starter" {&#36;sortsel['starter']}&gt;{&#36;lang-&gt;sort_by_starter}&lt;/option&gt;<br />
					&lt;option value="started" {&#36;sortsel['started']}&gt;{&#36;lang-&gt;sort_by_started}&lt;/option&gt;<br />
					{&#36;ratingsort}<br />
					&lt;option value="replies" {&#36;sortsel['replies']}&gt;{&#36;lang-&gt;sort_by_replies}&lt;/option&gt;<br />
					&lt;option value="views" {&#36;sortsel['views']}&gt;{&#36;lang-&gt;sort_by_views}&lt;/option&gt;<br />
				&lt;/select&gt;<br />
				&lt;select name="order"&gt;<br />
					&lt;option value="asc" {&#36;ordersel['asc']}&gt;{&#36;lang-&gt;sort_order_asc}&lt;/option&gt;<br />
					&lt;option value="desc" {&#36;ordersel['desc']}&gt;{&#36;lang-&gt;sort_order_desc}&lt;/option&gt;<br />
				&lt;/select&gt;<br />
				&lt;select name="datecut"&gt;<br />
					&lt;option value="1" {&#36;datecutsel['1']}&gt;{&#36;lang-&gt;datelimit_1day}&lt;/option&gt;<br />
					&lt;option value="5" {&#36;datecutsel['5']}&gt;{&#36;lang-&gt;datelimit_5days}&lt;/option&gt;<br />
					&lt;option value="10" {&#36;datecutsel['10']}&gt;{&#36;lang-&gt;datelimit_10days}&lt;/option&gt;<br />
					&lt;option value="20" {&#36;datecutsel['20']}&gt;{&#36;lang-&gt;datelimit_20days}&lt;/option&gt;<br />
					&lt;option value="50" {&#36;datecutsel['50']}&gt;{&#36;lang-&gt;datelimit_50days}&lt;/option&gt;<br />
					&lt;option value="75" {&#36;datecutsel['75']}&gt;{&#36;lang-&gt;datelimit_75days}&lt;/option&gt;<br />
					&lt;option value="100" {&#36;datecutsel['100']}&gt;{&#36;lang-&gt;datelimit_100days}&lt;/option&gt;<br />
					&lt;option value="365" {&#36;datecutsel['365']}&gt;{&#36;lang-&gt;datelimit_lastyear}&lt;/option&gt;<br />
					&lt;option value="9999" {&#36;datecutsel['9999']}&gt;{&#36;lang-&gt;datelimit_beginning}&lt;/option&gt;<br />
				&lt;/select&gt;<br />
				{&#36;gobutton}<br />
			&lt;/form&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;div class="float_left"&gt;<br />
	{&#36;multipage}<br />
&lt;/div&gt;<br />
&lt;div class="float_right" style="margin-top: 4px;"&gt;<br />
	{&#36;newthread}<br />
&lt;/div&gt;<br />
&lt;br style="clear: both;" /&gt;<br />
&lt;br /&gt;<br />
&lt;div class="float_left"&gt;<br />
	&lt;div class="float_left"&gt;<br />
		&lt;dl class="thread_legend smalltext"&gt;<br />
			&lt;dd&gt;&lt;img src="{&#36;theme['imgdir']}/newfolder.gif" alt="{&#36;lang-&gt;new_thread}" title="{&#36;lang-&gt;new_thread}" /&gt; {&#36;lang-&gt;new_thread}&lt;/dd&gt;<br />
			&lt;dd&gt;&lt;img src="{&#36;theme['imgdir']}/newhotfolder.gif" alt="{&#36;lang-&gt;new_hot_thread}" title="{&#36;lang-&gt;new_hot_thread}" /&gt; {&#36;lang-&gt;new_hot_thread}&lt;/dd&gt;<br />
			&lt;dd&gt;&lt;img src="{&#36;theme['imgdir']}/hotfolder.gif" alt="{&#36;lang-&gt;hot_thread}" title="{&#36;lang-&gt;hot_thread}" /&gt; {&#36;lang-&gt;hot_thread}&lt;/dd&gt;<br />
		&lt;/dl&gt;<br />
	&lt;/div&gt;<br />
<br />
	&lt;div class="float_left"&gt;<br />
		&lt;dl class="thread_legend smalltext"&gt;<br />
			&lt;dd&gt;&lt;img src="{&#36;theme['imgdir']}/folder.gif" alt="{&#36;lang-&gt;no_new_thread}" title="{&#36;lang-&gt;no_new_thread}" /&gt; {&#36;lang-&gt;no_new_thread}&lt;/dd&gt;<br />
			&lt;dd&gt;&lt;img src="{&#36;theme['imgdir']}/dot_folder.gif" alt="{&#36;lang-&gt;posts_by_you}" title="{&#36;lang-&gt;posts_by_you}" /&gt; {&#36;lang-&gt;posts_by_you}&lt;/dd&gt;<br />
			&lt;dd&gt;&lt;img src="{&#36;theme['imgdir']}/lockfolder.gif" alt="{&#36;lang-&gt;locked_thread}" title="{&#36;lang-&gt;locked_thread}" /&gt; {&#36;lang-&gt;locked_thread}&lt;/dd&gt;<br />
		&lt;/dl&gt;<br />
	&lt;/div&gt;<br />
	&lt;br style="clear: both" /&gt;<br />
&lt;/div&gt;<br />
<br />
&lt;div class="float_right" style="text-align: right;"&gt;<br />
	{&#36;inlinemod}<br />
	{&#36;searchforum}<br />
	{&#36;forumjump}<br />
&lt;/div&gt;<br />
&lt;br style="clear: both" /&gt;<br />
{&#36;inline_edit_js}</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> scf_forumdisplay_threadlist_rating<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>| &lt;a href="{&#36;sorturl}&amp;amp;sortby=rating&amp;amp;order=desc"&gt;{&#36;lang-&gt;rating}&lt;/a&gt; {&#36;orderarrow['rating']}<br />
&lt;script type="text/javascript" src="jscripts/rating.js?ver=1400"&gt;&lt;/script&gt;<br />
&lt;script type="text/javascript"&gt;<br />
&lt;!--<br />
	lang.stars = new Array();<br />
	lang.stars[1] = "{&#36;lang-&gt;one_star}";<br />
	lang.stars[2] = "{&#36;lang-&gt;two_stars}";<br />
	lang.stars[3] = "{&#36;lang-&gt;three_stars}";<br />
	lang.stars[4] = "{&#36;lang-&gt;four_stars}";<br />
	lang.stars[5] = "{&#36;lang-&gt;five_stars}";<br />
// <img src="https://gidenler.me/images/smilies/sag_ok.png" alt="Sağ ok" title="Sağ ok" class="smilie smilie_54" /><br />
&lt;/script&gt;</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> scf_forumdisplay_thread<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="clear: both;"&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="thead" align="center" colspan="{&#36;colspan}"&gt;<br />
			&lt;div&gt;&lt;strong&gt;&lt;a href="{&#36;thread['threadlink']}" class="{&#36;inline_edit_class} {&#36;new_class}" id="tid_{&#36;inline_edit_tid}"&gt;{&#36;thread['subject']}&lt;/a&gt;&lt;/strong&gt;&lt;/div&gt;<br />
			&lt;div class="author smalltext"&gt;{&#36;lang-&gt;author}: {&#36;thread['profilelink']}&lt;/div&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="{&#36;bgcolor}" width="50%"&gt;<br />
			&lt;span class="float_left"&gt;<br />
				&lt;img src="{&#36;theme['imgdir']}/{&#36;folder}.gif" alt="{&#36;folder_label}" title="{&#36;folder_label}" /&gt;{&#36;icon}{&#36;prefix}{&#36;gotounread}<br />
			&lt;/span&gt;<br />
			&lt;br class="clear" /&gt;<br />
			&lt;table width="100%" border="0"&gt;<br />
				&lt;tr&gt;<br />
					&lt;td width="90"&gt;URL&lt;/td&gt;<br />
					&lt;td&gt;:&lt;/td&gt;<br />
					&lt;td&gt;http://{&#36;GLOBALS['threadfields']['scfurl']}&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td&gt;Link&lt;/td&gt;<br />
					&lt;td&gt;:&lt;/td&gt;<br />
					&lt;td&gt;&lt;a href="http://{&#36;GLOBALS['threadfields']['scfurl']}"&gt;&lt;strong&gt;{&#36;GLOBALS['threadfields']['scfname']}&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				{&#36;rating}<br />
				{&#36;GLOBALS['threadfields']['scflang']}<br />
				{&#36;GLOBALS['threadfields']['scffounded']}<br />
				&lt;tr&gt;<br />
					&lt;td&gt;Category&lt;/td&gt;<br />
					&lt;td&gt;:&lt;/td&gt;<br />
					&lt;td&gt;{&#36;GLOBALS['threadfields']['scfcat']}&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				{&#36;GLOBALS['threadfields']['scfslogan']}<br />
			&lt;/table&gt;<br />
		&lt;/td&gt;<br />
	<br />
		&lt;td class="{&#36;bgcolor}" width="50%"&gt;<br />
			&lt;table width="100%" border="0"&gt;<br />
				&lt;tr&gt;<br />
					&lt;td align="center" valign="middle"&gt;<br />
						&lt;a href="http://www.alexa.com/siteinfo/{&#36;GLOBALS['threadfields']['scfurl']}"&gt;&lt;script type='text/javascript' language='JavaScript' src='http://xslt.alexa.com/site_stats/js/s/a?url={&#36;GLOBALS['threadfields']['scfurl']}'&gt;&lt;/script&gt;&lt;/a&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
			&lt;/table&gt;<br />
		&lt;/td&gt;<br />
		{&#36;modbit}<br />
	&lt;/tr&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="tfoot" colspan="{&#36;colspan}" align="center"&gt;<br />
			{&#36;thread['views']} {&#36;lang-&gt;views},<br />
			&lt;a href="javascript:MyBB.whoPosted({&#36;thread['tid']});"&gt;{&#36;thread['replies']}&lt;/a&gt;{&#36;unapproved_posts} {&#36;lang-&gt;replies},<br />
			&lt;a href="{&#36;thread['lastpostlink']}"&gt;{&#36;lang-&gt;lastpost}&lt;/a&gt;: {&#36;lastposterlink}, {&#36;lastpostdate} {&#36;lastposttime}<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;br /&gt;</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> scf_forumdisplay_thread_rating<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;tr&gt;<br />
&lt;td&gt;Rating&lt;/td&gt;<br />
&lt;td&gt;:&lt;/td&gt;<br />
&lt;td&gt;<br />
&lt;div class="float_left" id="rating_table_{&#36;thread['tid']}"&gt;<br />
	&lt;ul class="star_rating{&#36;not_rated}" id="rating_thread_{&#36;thread['tid']}"&gt;<br />
		&lt;li style="width: {&#36;thread['width']}%" class="current_rating" id="current_rating_{&#36;thread['tid']}"&gt;{&#36;ratingvotesav}&lt;/li&gt;<br />
	&lt;/ul&gt;<br />
	&lt;script type="text/javascript"&gt;<br />
	&lt;!--<br />
		Rating.build_forumdisplay({&#36;thread['tid']}, { width: '{&#36;thread['width']}', extra_class: '{&#36;not_rated}', current_average: '{&#36;ratingvotesav}' });<br />
	// <img src="https://gidenler.me/images/smilies/sag_ok.png" alt="Sağ ok" title="Sağ ok" class="smilie smilie_54" /><br />
	&lt;/script&gt;<br />
&lt;/div&gt;<br />
&lt;/td&gt;<br />
&lt;/tr&gt;</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> scf_showthread<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;{&#36;thread['subject']}&lt;/title&gt;<br />
{&#36;headerinclude}<br />
&lt;script type="text/javascript"&gt;<br />
&lt;!--<br />
	var quickdelete_confirm = "{&#36;lang-&gt;quickdelete_confirm}";<br />
// <img src="https://gidenler.me/images/smilies/sag_ok.png" alt="Sağ ok" title="Sağ ok" class="smilie smilie_54" /><br />
&lt;/script&gt;<br />
&lt;script type="text/javascript" src="jscripts/thread.js?ver=1400"&gt;&lt;/script&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
	{&#36;header}<br />
	{&#36;pollbox}<br />
	&lt;br class="clear" /&gt;<br />
	&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="clear: both; border-bottom-width: 0;"&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="thead" colspan="2"&gt;<br />
				&lt;div style="float: right;"&gt;<br />
					&lt;span class="smalltext"&gt;&lt;strong&gt;&lt;a href="showthread.php?mode=threaded&amp;amp;tid={&#36;tid}&amp;amp;pid={&#36;pid}#pid{&#36;pid}"&gt;{&#36;lang-&gt;threaded}&lt;/a&gt; | &lt;a href="showthread.php?mode=linear&amp;amp;tid={&#36;tid}&amp;amp;pid={&#36;pid}#pid{&#36;pid}"&gt;{&#36;lang-&gt;linear}&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;<br />
				&lt;/div&gt;<br />
				&lt;div&gt;<br />
					&lt;strong&gt;{&#36;thread['subject']}&lt;/strong&gt;<br />
				&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="tcat" width="50%"&gt;<br />
				&lt;table width="100%" border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="trow1" style="clear: both;"&gt;<br />
					&lt;tr&gt;<br />
						&lt;td width="50%"&gt;<br />
							&lt;table width="100%"&gt;<br />
								&lt;tr&gt;<br />
									&lt;td width="90"&gt;URL&lt;/td&gt;<br />
									&lt;td width="1"&gt;:&lt;/td&gt;<br />
									&lt;td&gt;http://{&#36;GLOBALS['threadfields']['scfurl']}&lt;/td&gt;<br />
								&lt;/tr&gt;<br />
								&lt;tr&gt;<br />
									&lt;td&gt;Link&lt;/td&gt;<br />
									&lt;td&gt;:&lt;/td&gt;<br />
									&lt;td&gt;&lt;a href="http://{&#36;GLOBALS['threadfields']['scfurl']}"&gt;&lt;strong&gt;{&#36;GLOBALS['threadfields']['scfname']}&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;<br />
								&lt;/tr&gt;<br />
								{&#36;ratethread}<br />
								{&#36;GLOBALS['threadfields']['scflang']}<br />
								{&#36;GLOBALS['threadfields']['scffounded']}<br />
								&lt;tr&gt;<br />
									&lt;td&gt;Category&lt;/td&gt;<br />
									&lt;td&gt;:&lt;/td&gt;<br />
									&lt;td&gt;{&#36;GLOBALS['threadfields']['scfcat']}&lt;/td&gt;<br />
								&lt;/tr&gt;<br />
								{&#36;GLOBALS['threadfields']['scfslogan']}<br />
								&lt;tr&gt;<br />
									&lt;td colspan="3"&gt;<br />
										&lt;span class="float_left smalltext"&gt;<br />
											&lt;em&gt;<br />
											{&#36;lang-&gt;views} {&#36;thread['views']},<br />
											{&#36;lang-&gt;replies} &lt;a href="javascript:MyBB.whoPosted({&#36;thread['tid']});"&gt;{&#36;thread['replies']}&lt;/a&gt;{&#36;unapproved_posts} <br />
											&lt;/em&gt;<br />
										&lt;/span&gt;<br />
									&lt;/td&gt;<br />
								&lt;/tr&gt;<br />
							&lt;/table&gt;<br />
						&lt;/td&gt;<br />
						&lt;td align="center" valign="middle"&gt;<br />
							&lt;table width="100%" border="0"&gt;<br />
								&lt;tr&gt;<br />
									&lt;td align="center" valign="middle"&gt;<br />
										&lt;a href="http://www.alexa.com/siteinfo/{&#36;GLOBALS['threadfields']['scfurl']}"&gt;&lt;script type='text/javascript' language='JavaScript' src='http://xslt.alexa.com/site_stats/js/s/a?url={&#36;GLOBALS['threadfields']['scfurl']}'&gt;&lt;/script&gt;&lt;/a&gt;<br />
									&lt;/td&gt;<br />
								&lt;/tr&gt;<br />
							&lt;/table&gt;<br />
						&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
				&lt;/table&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/table&gt;<br />
	&lt;br class="clear" /&gt;<br />
	&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="clear: both; border-bottom-width: 0;"&gt;<br />
		{&#36;classic_header}<br />
	&lt;/table&gt;<br />
	&lt;div id="posts"&gt;<br />
		{&#36;first_post}{&#36;posts}<br />
	&lt;/div&gt;<br />
	&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="border-top-width: 0;"&gt;<br />
		&lt;tr&gt;<br />
			&lt;td colspan="2" class="tfoot"&gt;<br />
				{&#36;search_thread}<br />
				&lt;div&gt;<br />
					&lt;strong&gt;&amp;laquo; &lt;a href="{&#36;next_oldest_link}"&gt;{&#36;lang-&gt;next_oldest}&lt;/a&gt; | &lt;a href="{&#36;next_newest_link}"&gt;{&#36;lang-&gt;next_newest}&lt;/a&gt; &amp;raquo;&lt;/strong&gt;<br />
				&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/table&gt;<br />
	&lt;div class="float_left"&gt;<br />
		{&#36;multipage}<br />
	&lt;/div&gt;<br />
	&lt;div style="padding-top: 4px;" class="float_right"&gt;<br />
		{&#36;newreply}<br />
	&lt;/div&gt;<br />
	&lt;br style="clear: both;" /&gt;<br />
	{&#36;quickreply}<br />
	{&#36;threadexbox}<br />
	{&#36;similarthreads}<br />
	&lt;br /&gt;<br />
	&lt;div class="float_left"&gt;<br />
		&lt;ul class="thread_tools"&gt;<br />
			&lt;li class="printable"&gt;&lt;a href="printthread.php?tid={&#36;tid}"&gt;{&#36;lang-&gt;view_printable}&lt;/a&gt;&lt;/li&gt;<br />
			&lt;li class="sendthread"&gt;&lt;a href="sendthread.php?tid={&#36;tid}"&gt;{&#36;lang-&gt;send_thread}&lt;/a&gt;&lt;/li&gt;<br />
			&lt;li class="subscription_{&#36;add_remove_subscription}"&gt;&lt;a href="usercp2.php?action={&#36;add_remove_subscription}subscription&amp;amp;tid={&#36;tid}&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;{&#36;add_remove_subscription_text}&lt;/a&gt;&lt;/li&gt;<br />
		&lt;/ul&gt;<br />
	&lt;/div&gt;<br />
<br />
	&lt;div class="float_right" style="text-align: right;"&gt;<br />
		{&#36;moderationoptions}<br />
		{&#36;forumjump}<br />
	&lt;/div&gt;<br />
	&lt;br style="clear: both;" /&gt;<br />
	{&#36;footer}<br />
&lt;/body&gt;<br />
&lt;/html&gt;</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> scf_showthread_ratethread<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;tr&gt;<br />
&lt;td&gt;Rating&lt;/td&gt;<br />
&lt;td&gt;:&lt;/td&gt;<br />
&lt;td&gt;<br />
&lt;div class="float_left"&gt;<br />
	&lt;script type="text/javascript" src="jscripts/rating.js?ver=1400"&gt;&lt;/script&gt;<br />
	&lt;div class="inline_rating"&gt;<br />
		&lt;ul class="star_rating{&#36;not_rated}" id="rating_thread_{&#36;thread['tid']}"&gt;<br />
			&lt;li style="width: {&#36;thread['width']}%" class="current_rating" id="current_rating_{&#36;thread['tid']}"&gt;{&#36;ratingvotesav}&lt;/li&gt;<br />
			&lt;li&gt;&lt;a class="one_star" title="{&#36;lang-&gt;one_star}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=1&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;1&lt;/a&gt;&lt;/li&gt;<br />
			&lt;li&gt;&lt;a class="two_stars" title="{&#36;lang-&gt;two_stars}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=2&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;2&lt;/a&gt;&lt;/li&gt;<br />
			&lt;li&gt;&lt;a class="three_stars" title="{&#36;lang-&gt;three_stars}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=3&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;3&lt;/a&gt;&lt;/li&gt;<br />
			&lt;li&gt;&lt;a class="four_stars" title="{&#36;lang-&gt;four_stars}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=4&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;4&lt;/a&gt;&lt;/li&gt;<br />
			&lt;li&gt;&lt;a class="five_stars" title="{&#36;lang-&gt;five_stars}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=5&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;5&lt;/a&gt;&lt;/li&gt;<br />
		&lt;/ul&gt;<br />
	&lt;/div&gt;<br />
&lt;/div&gt;<br />
&lt;/td&gt;<br />
&lt;/tr&gt;</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> scf_forumdisplay_threads_sep<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="clear: both;"&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="thead" align="center"&gt;<br />
			&lt;div&gt;&lt;strong&gt;Normal Sites&lt;/strong&gt;&lt;/div&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;br /&gt;</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> scf_forumdisplay_sticky_sep<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="clear: both;"&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="thead" align="center"&gt;<br />
			&lt;div&gt;&lt;strong&gt;Important Sites&lt;/strong&gt;&lt;/div&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;br /&gt;</code></div></div>
</li>
</ul>
<br />
Screenshots:<br />
<br />
1. User create a showcase thread:<br />
<br />
<img src="http://i40.tinypic.com/wuphfs.jpg" loading="lazy"  alt="[Resim: wuphfs.jpg]" class="mycode_img" /><br />
<br />
2. User view the post:<br />
<br />
<img src="http://i42.tinypic.com/68y990.jpg" loading="lazy"  alt="[Resim: 68y990.jpg]" class="mycode_img" /><br />
<br />
3. Thread List:<br />
<br />
<img src="http://i41.tinypic.com/2eykkrm.jpg" loading="lazy"  alt="[Resim: 2eykkrm.jpg]" class="mycode_img" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Pre Formatted Thread]]></title>
			<link>https://gidenler.me/thread-675.html</link>
			<pubDate>Tue, 18 Nov 2025 12:38:50 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://gidenler.me/member.php?action=profile&uid=2">Hasan</a>]]></dc:creator>
			<guid isPermaLink="false">https://gidenler.me/thread-675.html</guid>
			<description><![CDATA[This is useful if we want our member to provide some info when they create a thread in a specified forum.<br />
In this simple example, we will set a forum so when a member create a new thread in that forum, they need to fill a field with their Website URL, which is required, and optionally, they can fill a field with they Forum URL, which is not required.<br />
<br />
Here is the simple setting for our XThreads:<br />
<br />
1. XThreads Options in Forum settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Prefix:</span> <span style="font-style: italic;" class="mycode_i">intro_</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Show first post on every showthread page:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
</ul>
2. Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Your Website URL<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> wwwurl<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Description:</span> Fill the field with your full site URL (required).<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select a forum that we want the fields to be applied'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Textbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (Required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;strong&gt;Website URL: {VALUE}&lt;/strong&gt;&lt;br /&gt;</code></div></div>
</li>
</ul>
3. Create another Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Your Forum URL<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> forumurl<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Description:</span> Fill the field with your full forum url (not required).<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select the same as the forum in point 2'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Textbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 2<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Blank Replacement Value:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;strong&gt;Forum URL: None&lt;/strong&gt;&lt;br /&gt;</code></div></div>
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;strong&gt;Forum URL: {VALUE}&lt;/strong&gt;&lt;br /&gt;</code></div></div>
</li>
</ul>
4. Create a new template in Global Template:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> intro_postbit_first<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
{&#36;ignore_bit}<br />
&lt;a name="pid{&#36;post['pid']}" id="pid{&#36;post['pid']}"&gt;&lt;/a&gt;<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="{&#36;post_extra_style} {&#36;post_visibility}" id="post_{&#36;post['pid']}"&gt;<br />
	&lt;tbody&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="tcat"&gt;<br />
				&lt;div class="float_left smalltext"&gt;<br />
					{&#36;post['postdate']}, {&#36;post['posttime']} &lt;span id="edited_by_{&#36;post['pid']}"&gt;{&#36;post['editedmsg']}&lt;/span&gt;<br />
				&lt;/div&gt;<br />
				{&#36;post['posturl']}<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1 {&#36;unapproved_shade}"&gt;<br />
				&lt;table cellspacing="0" cellpadding="0" border="0" style="width: 100%;"&gt;<br />
					&lt;tr&gt;<br />
						&lt;td class="post_avatar" width="1" style="{&#36;post['avatar_padding']}"&gt;<br />
							{&#36;post['useravatar']}<br />
						&lt;/td&gt;<br />
						&lt;td class="post_author"&gt;<br />
							&lt;strong&gt;&lt;span class="largetext"&gt;{&#36;post['profilelink']}&lt;/span&gt;&lt;/strong&gt; {&#36;post['onlinestatus']}&lt;br /&gt;<br />
							&lt;span class="smalltext"&gt;<br />
								{&#36;post['usertitle']}&lt;br /&gt;<br />
								{&#36;post['userstars']}<br />
								{&#36;post['groupimage']}<br />
							&lt;/span&gt;<br />
						&lt;/td&gt;<br />
						&lt;td class="smalltext post_author_info" width="165"&gt;<br />
							{&#36;post['user_details']}<br />
						&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
				&lt;/table&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
<br />
		&lt;tr&gt;<br />
			&lt;td class="trow2 post_content {&#36;unapproved_shade}"&gt;<br />
				&lt;span class="smalltext"&gt;&lt;strong&gt;{&#36;post['icon']}{&#36;post['subject']} {&#36;post['subject_extra']}&lt;/strong&gt;&lt;/span&gt;<br />
<br />
				&lt;div class="post_body" id="pid_{&#36;post['pid']}"&gt;<br />
					{&#36;GLOBALS['threadfields']['wwwurl']}{&#36;GLOBALS['threadfields']['forumurl']}{&#36;post['message']}<br />
				&lt;/div&gt;<br />
				{&#36;post['attachments']}<br />
				{&#36;post['signature']}<br />
<br />
				&lt;div class="post_meta" id="post_meta_{&#36;post['pid']}"&gt;<br />
				{&#36;post['iplogged']}<br />
				&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1 post_buttons {&#36;unapproved_shade}"&gt;<br />
				&lt;div class="author_buttons float_left"&gt;<br />
					{&#36;post['button_email']}{&#36;post['button_pm']}{&#36;post['button_www']}{&#36;post['button_find']}<br />
				&lt;/div&gt;<br />
				&lt;div class="post_management_buttons float_right"&gt;{&#36;post['button_edit']}{&#36;post['button_quickdelete']}{&#36;post['button_quote']}{&#36;post['button_multiquote']}{&#36;post['button_report']}{&#36;post['button_warn']}{&#36;post['button_reply_pm']}{&#36;post['button_replyall_pm']}{&#36;post['button_forward_pm']}{&#36;post['button_delete_pm']}<br />
				&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/tbody&gt;<br />
&lt;/table&gt;<br />
</code></div></div>
The template above based on the default <span style="font-style: italic;" class="mycode_i">postbit</span> template. If we have a custom <span style="font-style: italic;" class="mycode_i">postbit</span> template, copy paste the template content into <span style="font-style: italic;" class="mycode_i">intro_postbit_first</span> template. Then add <span style="font-style: italic;" class="mycode_i">{&#36;GLOBALS['threadfields']['wwwurl']}</span> and <span style="font-style: italic;" class="mycode_i">{&#36;GLOBALS['threadfields']['forumurl']}</span> variables into the template.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> intro_postbit_first_classic<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
{&#36;ignore_bit}<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="{&#36;post_extra_style} {&#36;post_visibility}" id="post_{&#36;post['pid']}"&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="{&#36;altbg}" width="15%" valign="top" style="white-space: nowrap; text-align: center;"&gt;&lt;a name="pid{&#36;post['pid']}" id="pid{&#36;post['pid']}"&gt;&lt;/a&gt;<br />
		&lt;strong&gt;&lt;span class="largetext"&gt;{&#36;post['profilelink']}&lt;/span&gt;&lt;/strong&gt; {&#36;post['onlinestatus']}&lt;br /&gt;<br />
		&lt;span class="smalltext"&gt;<br />
			{&#36;post['usertitle']}&lt;br /&gt;<br />
			{&#36;post['userstars']}<br />
			{&#36;post['groupimage']}<br />
			{&#36;post['useravatar']}&lt;br /&gt;<br />
			{&#36;post['user_details']}<br />
		&lt;/span&gt;<br />
	&lt;/td&gt;<br />
	&lt;td class="{&#36;altbg}" valign="top"&gt;<br />
		&lt;table width="100%"&gt;<br />
			&lt;tr&gt;&lt;td&gt;{&#36;post['posturl']}&lt;span class="smalltext"&gt;&lt;strong&gt;{&#36;post['icon']}{&#36;post['subject']} {&#36;post['subject_extra']}&lt;/strong&gt;&lt;/span&gt;<br />
			&lt;br /&gt;<br />
			&lt;div id="pid_{&#36;post['pid']}" style="padding: 5px 0 5px 0;"&gt;<br />
				{&#36;GLOBALS['threadfields']['wwwurl']}{&#36;GLOBALS['threadfields']['forumurl']}{&#36;post['message']}<br />
			&lt;/div&gt;<br />
			{&#36;post['attachments']}<br />
			{&#36;post['signature']}<br />
			&lt;div style="text-align: right; vertical-align: bottom;" id="post_meta_{&#36;post['pid']}"&gt;<br />
				&lt;div id="edited_by_{&#36;post['pid']}"&gt;{&#36;post['editedmsg']}&lt;/div&gt;<br />
				{&#36;post['iplogged']}<br />
			&lt;/div&gt;<br />
		&lt;/td&gt;&lt;/tr&gt;<br />
	&lt;/table&gt;<br />
&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
	&lt;td class="{&#36;altbg}" style="white-space: nowrap; text-align: center; vertical-align: middle;"&gt;&lt;span class="smalltext"&gt;{&#36;post['postdate']} {&#36;post['posttime']}&lt;/span&gt;&lt;/td&gt;<br />
	&lt;td class="{&#36;altbg}" style="vertical-align: middle;"&gt;<br />
		&lt;table width="100%" border="0" cellpadding="0" cellspacing="0"&gt;<br />
			&lt;tr valign="bottom"&gt;<br />
				&lt;td align="left" &gt;&lt;span class="smalltext"&gt;{&#36;post['button_email']}{&#36;post['button_pm']}{&#36;post['button_www']}{&#36;post['button_find']}&lt;/span&gt;&lt;/td&gt;<br />
				&lt;td align="right"&gt;{&#36;post['button_edit']}{&#36;post['button_quickdelete']}{&#36;post['button_quote']}{&#36;post['button_multiquote']}{&#36;post['button_report']}{&#36;post['button_warn']}{&#36;post['button_reply_pm']}{&#36;post['button_replyall_pm']}{&#36;post['button_forward_pm']}{&#36;post['button_delete_pm']}&lt;/td&gt;<br />
			&lt;/tr&gt;<br />
		&lt;/table&gt;<br />
	&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;<br />
</code></div></div>
Again, the template above based on the default <span style="font-style: italic;" class="mycode_i">postbit_classic</span> template. If we have a custom <span style="font-style: italic;" class="mycode_i">postbit_classic</span> template, copy paste the template content into <span style="font-style: italic;" class="mycode_i">intro_postbit_first_classic</span> template. Then add <span style="font-style: italic;" class="mycode_i">{&#36;GLOBALS['threadfields']['wwwurl']}</span> and <span style="font-style: italic;" class="mycode_i">{&#36;GLOBALS['threadfields']['forumurl']}</span> variables into the template.<br />
<br />
Please remember that the key for this is, adding <span style="font-style: italic;" class="mycode_i">{&#36;GLOBALS['threadfields']['wwwurl']}</span> and <span style="font-style: italic;" class="mycode_i">{&#36;GLOBALS['threadfields']['forumurl']}</span> variables into the <span style="font-style: italic;" class="mycode_i">intro_postbit_first</span> and/or <span style="font-style: italic;" class="mycode_i">intro_postbit_first_classic</span> template.<br />
</li>
</ul>
<br />
Screenshots:<br />
<br />
1. A member create a new thread in a specified forum:<br />
<br />
<img src="http://i42.tinypic.com/xc7x8m.jpg" loading="lazy"  alt="[Resim: xc7x8m.jpg]" class="mycode_img" /><br />
<br />
2. Result (Horizontal postbit layout):<br />
<br />
<img src="http://i40.tinypic.com/2v2igq8.jpg" loading="lazy"  alt="[Resim: 2v2igq8.jpg]" class="mycode_img" /><br />
<br />
3. Result (Classic postbit layout):<br />
<br />
<img src="http://i40.tinypic.com/10xeovp.jpg" loading="lazy"  alt="[Resim: 10xeovp.jpg]" class="mycode_img" /><br />
<br />
4. Error message will be displayed when they didn't fill the "Website URL" field (required field):<br />
<br />
<img src="http://i44.tinypic.com/33w8go1.jpg" loading="lazy"  alt="[Resim: 33w8go1.jpg]" class="mycode_img" />]]></description>
			<content:encoded><![CDATA[This is useful if we want our member to provide some info when they create a thread in a specified forum.<br />
In this simple example, we will set a forum so when a member create a new thread in that forum, they need to fill a field with their Website URL, which is required, and optionally, they can fill a field with they Forum URL, which is not required.<br />
<br />
Here is the simple setting for our XThreads:<br />
<br />
1. XThreads Options in Forum settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Prefix:</span> <span style="font-style: italic;" class="mycode_i">intro_</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Show first post on every showthread page:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
</ul>
2. Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Your Website URL<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> wwwurl<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Description:</span> Fill the field with your full site URL (required).<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select a forum that we want the fields to be applied'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Textbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (Required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;strong&gt;Website URL: {VALUE}&lt;/strong&gt;&lt;br /&gt;</code></div></div>
</li>
</ul>
3. Create another Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Your Forum URL<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> forumurl<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Description:</span> Fill the field with your full forum url (not required).<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select the same as the forum in point 2'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Textbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 2<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Blank Replacement Value:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;strong&gt;Forum URL: None&lt;/strong&gt;&lt;br /&gt;</code></div></div>
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;strong&gt;Forum URL: {VALUE}&lt;/strong&gt;&lt;br /&gt;</code></div></div>
</li>
</ul>
4. Create a new template in Global Template:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> intro_postbit_first<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
{&#36;ignore_bit}<br />
&lt;a name="pid{&#36;post['pid']}" id="pid{&#36;post['pid']}"&gt;&lt;/a&gt;<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="{&#36;post_extra_style} {&#36;post_visibility}" id="post_{&#36;post['pid']}"&gt;<br />
	&lt;tbody&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="tcat"&gt;<br />
				&lt;div class="float_left smalltext"&gt;<br />
					{&#36;post['postdate']}, {&#36;post['posttime']} &lt;span id="edited_by_{&#36;post['pid']}"&gt;{&#36;post['editedmsg']}&lt;/span&gt;<br />
				&lt;/div&gt;<br />
				{&#36;post['posturl']}<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1 {&#36;unapproved_shade}"&gt;<br />
				&lt;table cellspacing="0" cellpadding="0" border="0" style="width: 100%;"&gt;<br />
					&lt;tr&gt;<br />
						&lt;td class="post_avatar" width="1" style="{&#36;post['avatar_padding']}"&gt;<br />
							{&#36;post['useravatar']}<br />
						&lt;/td&gt;<br />
						&lt;td class="post_author"&gt;<br />
							&lt;strong&gt;&lt;span class="largetext"&gt;{&#36;post['profilelink']}&lt;/span&gt;&lt;/strong&gt; {&#36;post['onlinestatus']}&lt;br /&gt;<br />
							&lt;span class="smalltext"&gt;<br />
								{&#36;post['usertitle']}&lt;br /&gt;<br />
								{&#36;post['userstars']}<br />
								{&#36;post['groupimage']}<br />
							&lt;/span&gt;<br />
						&lt;/td&gt;<br />
						&lt;td class="smalltext post_author_info" width="165"&gt;<br />
							{&#36;post['user_details']}<br />
						&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
				&lt;/table&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
<br />
		&lt;tr&gt;<br />
			&lt;td class="trow2 post_content {&#36;unapproved_shade}"&gt;<br />
				&lt;span class="smalltext"&gt;&lt;strong&gt;{&#36;post['icon']}{&#36;post['subject']} {&#36;post['subject_extra']}&lt;/strong&gt;&lt;/span&gt;<br />
<br />
				&lt;div class="post_body" id="pid_{&#36;post['pid']}"&gt;<br />
					{&#36;GLOBALS['threadfields']['wwwurl']}{&#36;GLOBALS['threadfields']['forumurl']}{&#36;post['message']}<br />
				&lt;/div&gt;<br />
				{&#36;post['attachments']}<br />
				{&#36;post['signature']}<br />
<br />
				&lt;div class="post_meta" id="post_meta_{&#36;post['pid']}"&gt;<br />
				{&#36;post['iplogged']}<br />
				&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1 post_buttons {&#36;unapproved_shade}"&gt;<br />
				&lt;div class="author_buttons float_left"&gt;<br />
					{&#36;post['button_email']}{&#36;post['button_pm']}{&#36;post['button_www']}{&#36;post['button_find']}<br />
				&lt;/div&gt;<br />
				&lt;div class="post_management_buttons float_right"&gt;{&#36;post['button_edit']}{&#36;post['button_quickdelete']}{&#36;post['button_quote']}{&#36;post['button_multiquote']}{&#36;post['button_report']}{&#36;post['button_warn']}{&#36;post['button_reply_pm']}{&#36;post['button_replyall_pm']}{&#36;post['button_forward_pm']}{&#36;post['button_delete_pm']}<br />
				&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/tbody&gt;<br />
&lt;/table&gt;<br />
</code></div></div>
The template above based on the default <span style="font-style: italic;" class="mycode_i">postbit</span> template. If we have a custom <span style="font-style: italic;" class="mycode_i">postbit</span> template, copy paste the template content into <span style="font-style: italic;" class="mycode_i">intro_postbit_first</span> template. Then add <span style="font-style: italic;" class="mycode_i">{&#36;GLOBALS['threadfields']['wwwurl']}</span> and <span style="font-style: italic;" class="mycode_i">{&#36;GLOBALS['threadfields']['forumurl']}</span> variables into the template.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> intro_postbit_first_classic<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
{&#36;ignore_bit}<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="{&#36;post_extra_style} {&#36;post_visibility}" id="post_{&#36;post['pid']}"&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="{&#36;altbg}" width="15%" valign="top" style="white-space: nowrap; text-align: center;"&gt;&lt;a name="pid{&#36;post['pid']}" id="pid{&#36;post['pid']}"&gt;&lt;/a&gt;<br />
		&lt;strong&gt;&lt;span class="largetext"&gt;{&#36;post['profilelink']}&lt;/span&gt;&lt;/strong&gt; {&#36;post['onlinestatus']}&lt;br /&gt;<br />
		&lt;span class="smalltext"&gt;<br />
			{&#36;post['usertitle']}&lt;br /&gt;<br />
			{&#36;post['userstars']}<br />
			{&#36;post['groupimage']}<br />
			{&#36;post['useravatar']}&lt;br /&gt;<br />
			{&#36;post['user_details']}<br />
		&lt;/span&gt;<br />
	&lt;/td&gt;<br />
	&lt;td class="{&#36;altbg}" valign="top"&gt;<br />
		&lt;table width="100%"&gt;<br />
			&lt;tr&gt;&lt;td&gt;{&#36;post['posturl']}&lt;span class="smalltext"&gt;&lt;strong&gt;{&#36;post['icon']}{&#36;post['subject']} {&#36;post['subject_extra']}&lt;/strong&gt;&lt;/span&gt;<br />
			&lt;br /&gt;<br />
			&lt;div id="pid_{&#36;post['pid']}" style="padding: 5px 0 5px 0;"&gt;<br />
				{&#36;GLOBALS['threadfields']['wwwurl']}{&#36;GLOBALS['threadfields']['forumurl']}{&#36;post['message']}<br />
			&lt;/div&gt;<br />
			{&#36;post['attachments']}<br />
			{&#36;post['signature']}<br />
			&lt;div style="text-align: right; vertical-align: bottom;" id="post_meta_{&#36;post['pid']}"&gt;<br />
				&lt;div id="edited_by_{&#36;post['pid']}"&gt;{&#36;post['editedmsg']}&lt;/div&gt;<br />
				{&#36;post['iplogged']}<br />
			&lt;/div&gt;<br />
		&lt;/td&gt;&lt;/tr&gt;<br />
	&lt;/table&gt;<br />
&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
	&lt;td class="{&#36;altbg}" style="white-space: nowrap; text-align: center; vertical-align: middle;"&gt;&lt;span class="smalltext"&gt;{&#36;post['postdate']} {&#36;post['posttime']}&lt;/span&gt;&lt;/td&gt;<br />
	&lt;td class="{&#36;altbg}" style="vertical-align: middle;"&gt;<br />
		&lt;table width="100%" border="0" cellpadding="0" cellspacing="0"&gt;<br />
			&lt;tr valign="bottom"&gt;<br />
				&lt;td align="left" &gt;&lt;span class="smalltext"&gt;{&#36;post['button_email']}{&#36;post['button_pm']}{&#36;post['button_www']}{&#36;post['button_find']}&lt;/span&gt;&lt;/td&gt;<br />
				&lt;td align="right"&gt;{&#36;post['button_edit']}{&#36;post['button_quickdelete']}{&#36;post['button_quote']}{&#36;post['button_multiquote']}{&#36;post['button_report']}{&#36;post['button_warn']}{&#36;post['button_reply_pm']}{&#36;post['button_replyall_pm']}{&#36;post['button_forward_pm']}{&#36;post['button_delete_pm']}&lt;/td&gt;<br />
			&lt;/tr&gt;<br />
		&lt;/table&gt;<br />
	&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;<br />
</code></div></div>
Again, the template above based on the default <span style="font-style: italic;" class="mycode_i">postbit_classic</span> template. If we have a custom <span style="font-style: italic;" class="mycode_i">postbit_classic</span> template, copy paste the template content into <span style="font-style: italic;" class="mycode_i">intro_postbit_first_classic</span> template. Then add <span style="font-style: italic;" class="mycode_i">{&#36;GLOBALS['threadfields']['wwwurl']}</span> and <span style="font-style: italic;" class="mycode_i">{&#36;GLOBALS['threadfields']['forumurl']}</span> variables into the template.<br />
<br />
Please remember that the key for this is, adding <span style="font-style: italic;" class="mycode_i">{&#36;GLOBALS['threadfields']['wwwurl']}</span> and <span style="font-style: italic;" class="mycode_i">{&#36;GLOBALS['threadfields']['forumurl']}</span> variables into the <span style="font-style: italic;" class="mycode_i">intro_postbit_first</span> and/or <span style="font-style: italic;" class="mycode_i">intro_postbit_first_classic</span> template.<br />
</li>
</ul>
<br />
Screenshots:<br />
<br />
1. A member create a new thread in a specified forum:<br />
<br />
<img src="http://i42.tinypic.com/xc7x8m.jpg" loading="lazy"  alt="[Resim: xc7x8m.jpg]" class="mycode_img" /><br />
<br />
2. Result (Horizontal postbit layout):<br />
<br />
<img src="http://i40.tinypic.com/2v2igq8.jpg" loading="lazy"  alt="[Resim: 2v2igq8.jpg]" class="mycode_img" /><br />
<br />
3. Result (Classic postbit layout):<br />
<br />
<img src="http://i40.tinypic.com/10xeovp.jpg" loading="lazy"  alt="[Resim: 10xeovp.jpg]" class="mycode_img" /><br />
<br />
4. Error message will be displayed when they didn't fill the "Website URL" field (required field):<br />
<br />
<img src="http://i44.tinypic.com/33w8go1.jpg" loading="lazy"  alt="[Resim: 33w8go1.jpg]" class="mycode_img" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Thread Prefix]]></title>
			<link>https://gidenler.me/thread-674.html</link>
			<pubDate>Tue, 18 Nov 2025 12:37:23 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://gidenler.me/member.php?action=profile&uid=2">Hasan</a>]]></dc:creator>
			<guid isPermaLink="false">https://gidenler.me/thread-674.html</guid>
			<description><![CDATA[With XThreads, we can create thread prefix. More than that, we can filter the threads based on their prefix.<br />
<br />
Here is a simple way to do that:<br />
<br />
1. Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Prefix<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> prefix<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select a forum that we want the prefix to be applied'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Listbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Height:</span> 1<br />
If we want multi prefix for a single thread, fill the <span style="font-style: italic;" class="mycode_i">Field Input Height</span> with a value that greater than 1.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Values List:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>Prefix 1<br />
Prefix 2<br />
Prefix 3</code></div></div>Name it as our need.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (Required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Allow Filtering:</span> Yes<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>[{VALUE}]</code></div></div>If we want multi prefix, this will be the "main" display format.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Allow multiple values for this field:</span> No<br />
If we want multi prefix for a single threads, choose <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Multiple Value Delimiter:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>,</code></div></div>The <span style="font-style: italic;" class="mycode_i">Multiple Value Delimiter</span> setting will be displayed if we choose <span style="font-style: italic;" class="mycode_i">Yes</span> in <span style="font-style: italic;" class="mycode_i">Allow multiple values for this field</span> setting. This is separator for each prefix.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Item Format:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>{VALUE}</code></div></div>The <span style="font-style: italic;" class="mycode_i">Display Item Format</span> setting will be displayed if we choose <span style="font-style: italic;" class="mycode_i">Yes</span> in <span style="font-style: italic;" class="mycode_i">Allow multiple values for this field</span> setting. This is the display format for each prefix.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Formatting Map List:</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>Prefix 1{|}&lt;a href="{&#36;forumurl?}filtertf_prefix=Prefix 1"&gt;&lt;span style="color: red;"&gt;Prefix 1&lt;/span&gt;&lt;/a&gt;<br />
Prefix 2{|}&lt;a href="{&#36;forumurl?}filtertf_prefix=Prefix 2"&gt;&lt;span style="color: green;"&gt;Prefix 2&lt;/span&gt;&lt;/a&gt;<br />
Prefix 3{|}&lt;a href="{&#36;forumurl?}filtertf_prefix=Prefix 3"&gt;&lt;span style="color: blue;"&gt;Prefix 3&lt;/span&gt;&lt;/a&gt;</code></div></div></li>
</ul>
<br />
2. We need to edit our <span style="font-style: italic;" class="mycode_i">forumdisplay_thread</span> template. The basic concept for this edit process is, adding <span style="font-family: courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['prefix']}</span> variable into the <span style="font-style: italic;" class="mycode_i">forumdisplay_thread</span> template. The prefix will be displayed wherever we put the variable in the template.<br />
<br />
In this example, we will put the prefix before Thread Subject:<br />
We can find this code in our <span style="font-style: italic;" class="mycode_i">forumdisplay_thread</span> template (based on the default template):<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;span&gt;{&#36;prefix} {&#36;gotounread}&lt;a href="{&#36;thread['threadlink']}" class="{&#36;inline_edit_class} {&#36;new_class}" id="tid_{&#36;inline_edit_tid}"&gt;{&#36;thread['subject']}&lt;/a&gt;{&#36;thread['multipage']}&lt;/span&gt;</code></div></div>
<br />
Then, add the <span style="font-family: courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['prefix']}</span> variable. So, the code will be like this:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
{&#36;GLOBALS['threadfields']['prefix']} &lt;span&gt;{&#36;prefix} {&#36;gotounread}&lt;a href="{&#36;thread['threadlink']}" class="{&#36;inline_edit_class} {&#36;new_class}" id="tid_{&#36;inline_edit_tid}"&gt;{&#36;thread['subject']}&lt;/a&gt;{&#36;thread['multipage']}&lt;/span&gt;</code></div></div>
<br />
<br />
Additional info:<ul class="mycode_list"><li>The filtering url has a general structure:<br />
<blockquote class="mycode_quote"><cite>Alıntı:</cite>{&#36;forumurl?}filtertf_<span style="color: red;" class="mycode_color">Key_for_the_field</span>=<span style="color: blue;" class="mycode_color">Name of each prefix</span></blockquote>
In the example above:<br />
<span style="color: red;" class="mycode_color">Key_for_the_field</span> = prefix<br />
<span style="color: blue;" class="mycode_color">Name of each prefix</span> = Prefix1, Prefix 2, and Prefix 3.<br />
<br />
So, the filtering URL will be like this:<br />
<blockquote class="mycode_quote"><cite>Alıntı:</cite>{&#36;forumurl?}filtertf_<span style="color: red;" class="mycode_color">prefix</span>=<span style="color: blue;" class="mycode_color">Prefix 1</span><br />
{&#36;forumurl?}filtertf_<span style="color: red;" class="mycode_color">prefix</span>=<span style="color: blue;" class="mycode_color">Prefix 2</span><br />
{&#36;forumurl?}filtertf_<span style="color: red;" class="mycode_color">prefix</span>=<span style="color: blue;" class="mycode_color">Prefix 3</span></blockquote>
</li>
</ul>
<ul class="mycode_list"><li>We can do some experiment with these three settings if we want multi prefix: <span style="font-style: italic;" class="mycode_i">Display Format</span>, <span style="font-style: italic;" class="mycode_i">Multiple Value Delimiter</span> and <span style="font-style: italic;" class="mycode_i">Display Item Format</span>.<br />
<br />
Example 1:<br />
<span style="font-style: italic;" class="mycode_i">Display Format</span> = [{VALUE}]<br />
<span style="font-style: italic;" class="mycode_i">Multiple Value Delimiter</span> = , <span style="font-style: italic;" class="mycode_i">(plus one space)</span><br />
<span style="font-style: italic;" class="mycode_i">Display Item Format</span> = {VALUE}<br />
<span style="font-style: italic;" class="mycode_i">Result</span>:<blockquote class="mycode_quote"><cite>Alıntı:</cite>[<span style="color: red;" class="mycode_color">Prefix 1</span>, <span style="color: green;" class="mycode_color">Prefix 2</span>, <span style="color: blue;" class="mycode_color">Prefix 3</span>] Thread Title</blockquote>
<br />
Example 2:<br />
<span style="font-style: italic;" class="mycode_i">Display Format</span> = {VALUE}<br />
<span style="font-style: italic;" class="mycode_i">Multiple Value Delimiter</span> = <span style="font-style: italic;" class="mycode_i">one space</span><br />
<span style="font-style: italic;" class="mycode_i">Display Item Format</span> = [{VALUE}]<br />
<span style="font-style: italic;" class="mycode_i">Result</span>:<blockquote class="mycode_quote"><cite>Alıntı:</cite>[<span style="color: red;" class="mycode_color">Prefix 1</span>] [<span style="color: green;" class="mycode_color">Prefix 2</span>] [<span style="color: blue;" class="mycode_color">Prefix 3</span>] Thread Title</blockquote>
<br />
Example 3:<br />
<span style="font-style: italic;" class="mycode_i">Display Format</span> = {VALUE}<br />
<span style="font-style: italic;" class="mycode_i">Multiple Value Delimiter</span> = <span style="font-style: italic;" class="mycode_i">one space</span>|<span style="font-style: italic;" class="mycode_i">one space</span><br />
<span style="font-style: italic;" class="mycode_i">Display Item Format</span> = {VALUE}<br />
<span style="font-style: italic;" class="mycode_i">Result</span>:<blockquote class="mycode_quote"><cite>Alıntı:</cite><span style="color: red;" class="mycode_color">Prefix 1</span> | <span style="color: green;" class="mycode_color">Prefix 2</span> | <span style="color: blue;" class="mycode_color">Prefix 3</span> Thread Title</blockquote>
</li>
</ul>
<ul class="mycode_list"><li>We can use image for the output of each prefix.<br />
<span style="font-style: italic;" class="mycode_i">Display Format</span> = {VALUE}<br />
<span style="font-style: italic;" class="mycode_i">Multiple Value Delimiter</span> = <span style="font-style: italic;" class="mycode_i">one space</span><br />
<span style="font-style: italic;" class="mycode_i">Display Item Format</span> = {VALUE}<br />
<span style="font-style: italic;" class="mycode_i">Formatting Map List</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>Prefix 1{|}&lt;a href="{&#36;forumurl?}filtertf_prefix=Prefix 1"&gt;&lt;img src="image_url_for_prefix_1" alt="Prefix 1" title="Display Prefix 1 Only" /&gt;&lt;/a&gt;<br />
Prefix 2{|}&lt;a href="{&#36;forumurl?}filtertf_prefix=Prefix 2"&gt;&lt;img src="image_url_for_prefix_2" alt="Prefix 2" title="Display Prefix 2 Only" /&gt;&lt;/a&gt;<br />
Prefix 3{|}&lt;a href="{&#36;forumurl?}filtertf_prefix=Prefix 3"&gt;&lt;img src="image_url_for_prefix_3" alt="Prefix 3" title="Display Prefix 3 Only" /&gt;&lt;/a&gt;</code></div></div></li>
</ul>
<ul class="mycode_list"><li>We can use the Prefix Filtering system as category for our XThreads application.<br />
</li>
</ul>
]]></description>
			<content:encoded><![CDATA[With XThreads, we can create thread prefix. More than that, we can filter the threads based on their prefix.<br />
<br />
Here is a simple way to do that:<br />
<br />
1. Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Prefix<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> prefix<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select a forum that we want the prefix to be applied'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Listbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Height:</span> 1<br />
If we want multi prefix for a single thread, fill the <span style="font-style: italic;" class="mycode_i">Field Input Height</span> with a value that greater than 1.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Values List:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>Prefix 1<br />
Prefix 2<br />
Prefix 3</code></div></div>Name it as our need.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (Required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Allow Filtering:</span> Yes<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>[{VALUE}]</code></div></div>If we want multi prefix, this will be the "main" display format.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Allow multiple values for this field:</span> No<br />
If we want multi prefix for a single threads, choose <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Multiple Value Delimiter:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>,</code></div></div>The <span style="font-style: italic;" class="mycode_i">Multiple Value Delimiter</span> setting will be displayed if we choose <span style="font-style: italic;" class="mycode_i">Yes</span> in <span style="font-style: italic;" class="mycode_i">Allow multiple values for this field</span> setting. This is separator for each prefix.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Item Format:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>{VALUE}</code></div></div>The <span style="font-style: italic;" class="mycode_i">Display Item Format</span> setting will be displayed if we choose <span style="font-style: italic;" class="mycode_i">Yes</span> in <span style="font-style: italic;" class="mycode_i">Allow multiple values for this field</span> setting. This is the display format for each prefix.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Formatting Map List:</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>Prefix 1{|}&lt;a href="{&#36;forumurl?}filtertf_prefix=Prefix 1"&gt;&lt;span style="color: red;"&gt;Prefix 1&lt;/span&gt;&lt;/a&gt;<br />
Prefix 2{|}&lt;a href="{&#36;forumurl?}filtertf_prefix=Prefix 2"&gt;&lt;span style="color: green;"&gt;Prefix 2&lt;/span&gt;&lt;/a&gt;<br />
Prefix 3{|}&lt;a href="{&#36;forumurl?}filtertf_prefix=Prefix 3"&gt;&lt;span style="color: blue;"&gt;Prefix 3&lt;/span&gt;&lt;/a&gt;</code></div></div></li>
</ul>
<br />
2. We need to edit our <span style="font-style: italic;" class="mycode_i">forumdisplay_thread</span> template. The basic concept for this edit process is, adding <span style="font-family: courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['prefix']}</span> variable into the <span style="font-style: italic;" class="mycode_i">forumdisplay_thread</span> template. The prefix will be displayed wherever we put the variable in the template.<br />
<br />
In this example, we will put the prefix before Thread Subject:<br />
We can find this code in our <span style="font-style: italic;" class="mycode_i">forumdisplay_thread</span> template (based on the default template):<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;span&gt;{&#36;prefix} {&#36;gotounread}&lt;a href="{&#36;thread['threadlink']}" class="{&#36;inline_edit_class} {&#36;new_class}" id="tid_{&#36;inline_edit_tid}"&gt;{&#36;thread['subject']}&lt;/a&gt;{&#36;thread['multipage']}&lt;/span&gt;</code></div></div>
<br />
Then, add the <span style="font-family: courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['prefix']}</span> variable. So, the code will be like this:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
{&#36;GLOBALS['threadfields']['prefix']} &lt;span&gt;{&#36;prefix} {&#36;gotounread}&lt;a href="{&#36;thread['threadlink']}" class="{&#36;inline_edit_class} {&#36;new_class}" id="tid_{&#36;inline_edit_tid}"&gt;{&#36;thread['subject']}&lt;/a&gt;{&#36;thread['multipage']}&lt;/span&gt;</code></div></div>
<br />
<br />
Additional info:<ul class="mycode_list"><li>The filtering url has a general structure:<br />
<blockquote class="mycode_quote"><cite>Alıntı:</cite>{&#36;forumurl?}filtertf_<span style="color: red;" class="mycode_color">Key_for_the_field</span>=<span style="color: blue;" class="mycode_color">Name of each prefix</span></blockquote>
In the example above:<br />
<span style="color: red;" class="mycode_color">Key_for_the_field</span> = prefix<br />
<span style="color: blue;" class="mycode_color">Name of each prefix</span> = Prefix1, Prefix 2, and Prefix 3.<br />
<br />
So, the filtering URL will be like this:<br />
<blockquote class="mycode_quote"><cite>Alıntı:</cite>{&#36;forumurl?}filtertf_<span style="color: red;" class="mycode_color">prefix</span>=<span style="color: blue;" class="mycode_color">Prefix 1</span><br />
{&#36;forumurl?}filtertf_<span style="color: red;" class="mycode_color">prefix</span>=<span style="color: blue;" class="mycode_color">Prefix 2</span><br />
{&#36;forumurl?}filtertf_<span style="color: red;" class="mycode_color">prefix</span>=<span style="color: blue;" class="mycode_color">Prefix 3</span></blockquote>
</li>
</ul>
<ul class="mycode_list"><li>We can do some experiment with these three settings if we want multi prefix: <span style="font-style: italic;" class="mycode_i">Display Format</span>, <span style="font-style: italic;" class="mycode_i">Multiple Value Delimiter</span> and <span style="font-style: italic;" class="mycode_i">Display Item Format</span>.<br />
<br />
Example 1:<br />
<span style="font-style: italic;" class="mycode_i">Display Format</span> = [{VALUE}]<br />
<span style="font-style: italic;" class="mycode_i">Multiple Value Delimiter</span> = , <span style="font-style: italic;" class="mycode_i">(plus one space)</span><br />
<span style="font-style: italic;" class="mycode_i">Display Item Format</span> = {VALUE}<br />
<span style="font-style: italic;" class="mycode_i">Result</span>:<blockquote class="mycode_quote"><cite>Alıntı:</cite>[<span style="color: red;" class="mycode_color">Prefix 1</span>, <span style="color: green;" class="mycode_color">Prefix 2</span>, <span style="color: blue;" class="mycode_color">Prefix 3</span>] Thread Title</blockquote>
<br />
Example 2:<br />
<span style="font-style: italic;" class="mycode_i">Display Format</span> = {VALUE}<br />
<span style="font-style: italic;" class="mycode_i">Multiple Value Delimiter</span> = <span style="font-style: italic;" class="mycode_i">one space</span><br />
<span style="font-style: italic;" class="mycode_i">Display Item Format</span> = [{VALUE}]<br />
<span style="font-style: italic;" class="mycode_i">Result</span>:<blockquote class="mycode_quote"><cite>Alıntı:</cite>[<span style="color: red;" class="mycode_color">Prefix 1</span>] [<span style="color: green;" class="mycode_color">Prefix 2</span>] [<span style="color: blue;" class="mycode_color">Prefix 3</span>] Thread Title</blockquote>
<br />
Example 3:<br />
<span style="font-style: italic;" class="mycode_i">Display Format</span> = {VALUE}<br />
<span style="font-style: italic;" class="mycode_i">Multiple Value Delimiter</span> = <span style="font-style: italic;" class="mycode_i">one space</span>|<span style="font-style: italic;" class="mycode_i">one space</span><br />
<span style="font-style: italic;" class="mycode_i">Display Item Format</span> = {VALUE}<br />
<span style="font-style: italic;" class="mycode_i">Result</span>:<blockquote class="mycode_quote"><cite>Alıntı:</cite><span style="color: red;" class="mycode_color">Prefix 1</span> | <span style="color: green;" class="mycode_color">Prefix 2</span> | <span style="color: blue;" class="mycode_color">Prefix 3</span> Thread Title</blockquote>
</li>
</ul>
<ul class="mycode_list"><li>We can use image for the output of each prefix.<br />
<span style="font-style: italic;" class="mycode_i">Display Format</span> = {VALUE}<br />
<span style="font-style: italic;" class="mycode_i">Multiple Value Delimiter</span> = <span style="font-style: italic;" class="mycode_i">one space</span><br />
<span style="font-style: italic;" class="mycode_i">Display Item Format</span> = {VALUE}<br />
<span style="font-style: italic;" class="mycode_i">Formatting Map List</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>Prefix 1{|}&lt;a href="{&#36;forumurl?}filtertf_prefix=Prefix 1"&gt;&lt;img src="image_url_for_prefix_1" alt="Prefix 1" title="Display Prefix 1 Only" /&gt;&lt;/a&gt;<br />
Prefix 2{|}&lt;a href="{&#36;forumurl?}filtertf_prefix=Prefix 2"&gt;&lt;img src="image_url_for_prefix_2" alt="Prefix 2" title="Display Prefix 2 Only" /&gt;&lt;/a&gt;<br />
Prefix 3{|}&lt;a href="{&#36;forumurl?}filtertf_prefix=Prefix 3"&gt;&lt;img src="image_url_for_prefix_3" alt="Prefix 3" title="Display Prefix 3 Only" /&gt;&lt;/a&gt;</code></div></div></li>
</ul>
<ul class="mycode_list"><li>We can use the Prefix Filtering system as category for our XThreads application.<br />
</li>
</ul>
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Forum warning/disclaimer/rules]]></title>
			<link>https://gidenler.me/thread-673.html</link>
			<pubDate>Tue, 18 Nov 2025 12:36:04 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://gidenler.me/member.php?action=profile&uid=2">Hasan</a>]]></dc:creator>
			<guid isPermaLink="false">https://gidenler.me/thread-673.html</guid>
			<description><![CDATA[This is a simple modification which is useful for:<ul class="mycode_list"><li>Forums in which you want to display a warning/disclaimer before people enter<br />
</li>
<li>Forums in which you want to force users to view some rules before doing anything in them<br />
</li>
</ul>
<br />
This makes use of the rarely used password feature of MyBB.<br />
<br />
<hr class="mycode_hr" />
<br />
<ol type="1" class="mycode_list"><li>Edit the forum you wish to force a message display; set a template prefix if there isn't one set (in this example, we'll use the prefix <span style="font-style: italic;" class="mycode_i">fwarn_</span>)<br />
</li>
<li>Set the forum password to <span style="font-style: italic;" class="mycode_i">agree</span><br />
</li>
<li>Add a template named <span style="font-style: italic;" class="mycode_i">fwarn_forumdisplay_password</span> (change if you're using a different prefix)<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;{&#36;mybb-&gt;settings['bbname']} - {&#36;lang-&gt;password_required} &lt;/title&gt;<br />
{&#36;headerinclude}<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
{&#36;header}<br />
&lt;form action="{&#36;_SERVER['REQUEST_URI']}" method="post"&gt;<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
&lt;tr&gt;<br />
&lt;td class="thead" align="center"&gt;&lt;strong&gt;<br />
<br />
Warning<br />
<br />
&lt;/strong&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td class="trow2"&gt;<br />
<br />
<br />
You are entering a forum which may be too awesome for you. If you continue, you implicitly acknowledge that we are not responsible for any harm caused by excessive awesomeness.<br />
<br />
&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;br /&gt;<br />
&lt;input type="hidden" name="pwverify" value="agree" /&gt;<br />
&lt;div align="center"&gt;&lt;input type="submit" class="button" name="submit" value="Agree" /&gt;&lt;/div&gt;<br />
&lt;/form&gt;<br />
{&#36;footer}<br />
&lt;/body&gt;<br />
&lt;/html&gt;</code></div></div>
Edit the above message to suit your needs.  I've spaced out the parts which you may be interested in editing (title and body).<br />
</li>
</ol>
<br />
Now when users try to enter this forum through any means, they'll be brought up with a simple message before they enter.  Once they've clicked the "Agree" button, they'll be able to view the forum.  Works for guests too.]]></description>
			<content:encoded><![CDATA[This is a simple modification which is useful for:<ul class="mycode_list"><li>Forums in which you want to display a warning/disclaimer before people enter<br />
</li>
<li>Forums in which you want to force users to view some rules before doing anything in them<br />
</li>
</ul>
<br />
This makes use of the rarely used password feature of MyBB.<br />
<br />
<hr class="mycode_hr" />
<br />
<ol type="1" class="mycode_list"><li>Edit the forum you wish to force a message display; set a template prefix if there isn't one set (in this example, we'll use the prefix <span style="font-style: italic;" class="mycode_i">fwarn_</span>)<br />
</li>
<li>Set the forum password to <span style="font-style: italic;" class="mycode_i">agree</span><br />
</li>
<li>Add a template named <span style="font-style: italic;" class="mycode_i">fwarn_forumdisplay_password</span> (change if you're using a different prefix)<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;{&#36;mybb-&gt;settings['bbname']} - {&#36;lang-&gt;password_required} &lt;/title&gt;<br />
{&#36;headerinclude}<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
{&#36;header}<br />
&lt;form action="{&#36;_SERVER['REQUEST_URI']}" method="post"&gt;<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
&lt;tr&gt;<br />
&lt;td class="thead" align="center"&gt;&lt;strong&gt;<br />
<br />
Warning<br />
<br />
&lt;/strong&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td class="trow2"&gt;<br />
<br />
<br />
You are entering a forum which may be too awesome for you. If you continue, you implicitly acknowledge that we are not responsible for any harm caused by excessive awesomeness.<br />
<br />
&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;br /&gt;<br />
&lt;input type="hidden" name="pwverify" value="agree" /&gt;<br />
&lt;div align="center"&gt;&lt;input type="submit" class="button" name="submit" value="Agree" /&gt;&lt;/div&gt;<br />
&lt;/form&gt;<br />
{&#36;footer}<br />
&lt;/body&gt;<br />
&lt;/html&gt;</code></div></div>
Edit the above message to suit your needs.  I've spaced out the parts which you may be interested in editing (title and body).<br />
</li>
</ol>
<br />
Now when users try to enter this forum through any means, they'll be brought up with a simple message before they enter.  Once they've clicked the "Agree" button, they'll be able to view the forum.  Works for guests too.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Trading Forum]]></title>
			<link>https://gidenler.me/thread-668.html</link>
			<pubDate>Fri, 14 Nov 2025 19:18:07 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://gidenler.me/member.php?action=profile&uid=2">Hasan</a>]]></dc:creator>
			<guid isPermaLink="false">https://gidenler.me/thread-668.html</guid>
			<description><![CDATA[Requirement: <span style="font-weight: bold;" class="mycode_b"><a href="http://mybbhacks.zingaburga.com/showthread.php?tid=288" target="_blank" rel="noopener" class="mycode_url">XThreads</a></span><br />
<span style="font-weight: bold;" class="mycode_b">Updated:</span> <a href="http://mybbhacks.zingaburga.com/showthread.php?tid=443&amp;pid=12427#pid12427" target="_blank" rel="noopener" class="mycode_url">7 October 2012</a><br />
<br />
We will try to create a simple trading forum with XThreads.<br />
<br />
Here is an example for it:<br />
<br />
Edit/create a forum. XThreads settings:<br />
<ol type="1" class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Prefix:</span> trdf_<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Thread Grouping:</span> 2<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Show first post on every showthread page:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Enable XThreads' Inline Forum Search:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Settings Overrides:</span><ul class="mycode_list"><li>Setting: Show Thread Options -&gt; Post Layout<br />
</li>
<li>Value: horizontal<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>postlayout=horizontal</code></div></div></li>
</ul>
</li>
<li><span style="font-weight: bold;" class="mycode_b">Allow Blank Post Message:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Hide Forum:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
We need to put this forum url manually in our templates (e.g: <span style="font-style: italic;" class="mycode_i">header</span> template).<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Custom WOL Text:</span><ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Forum Display:</span> Viewing Trading Forum<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">New Thread:</span> Create A New Trade<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">New Reply:</span> Responding &lt;a href="{1}"&gt;{2}&lt;/a&gt; Trade<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Show Thread:</span> Viewing &lt;a href="{1}"&gt;{2}&lt;/a&gt; Trade<br />
</li>
</ul>
</li>
</ol>
<br />
Forum settings:<br />
We will use the forum rules as our Trading Forum "Index" page. Because we can use HTML in the forum rules, so, we can style it with HTML. Just use our creativity for it.<br />
Additional Forum Settings:<br />
<ol type="1" class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Forum Rules:</span> Display rules for this forum on the thread listing<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Title:</span> Welcome To Our Trading Forum<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Rules:</span> Type whatever we want here.<br />
</li>
</ol>
<br />
Custom Thread Fields Setting:<br />
<ol type="1" class="mycode_list"><li>Listbox for Buy / Sell:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Need To<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> trdftnt<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select our trading forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Listbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Width:</span> 10<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Height:</span> 1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Values List:</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>Buy<br />
Sell</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Allow Filtering:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Hide Input Field:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
</ul>
<br />
</li>
<li>Listbox for Minimum Or Maximum Value For Price:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Minimum Or Maximum Value<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> trdfminmax<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select our trading forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Listbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Width:</span> 15<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Height:</span> 1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Values List:</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>Minimum<br />
Maximum</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 2<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Hide Input Field:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
</ul>
<br />
</li>
<li>Textbox for Price:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Price<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> trdfprice<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select our trading forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Width:</span> 10<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 3<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format:</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;?=number_format({VALUE},2)?&gt;</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Text Mask Filter:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>^&#92;d+(&#92;.&#92;d{2})?&#36;</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Hide Input Field:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['trdfprice']}</span>.<br />
</li>
</ul>
<br />
</li>
<li>Listbox for Product Condition:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Condition<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> trdfcond<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select our trading forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Listbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Width:</span> 10<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Height:</span> 1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Values List:</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>New<br />
Used</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 4<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Allow Filtering:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Hide Input Field:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
</ul>
<br />
</li>
<li>Listbox for Trading Status:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Status<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> trdfstatus<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select our trading forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Listbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Width:</span> 15<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Height:</span> 1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Values List:</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>Open<br />
Closed</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 5<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Allow Filtering:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Hide Input Field:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
</ul>
<br />
</li>
<li>Textbox for quantity of product user wants to sell/buy:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Quantity<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> trdfquantity<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select our trading forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Maximum Text Length:</span> 3<br />
Max quantity: 999<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Width:</span> 3<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 6<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Default Value:</span> 1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Text Mask Filter:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>^([1-9]|[1-9][0-9]|[1-9][0-9][0-9])&#36;</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Hide Input Field:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['trdfquantity']}</span>.<br />
</li>
</ul>
<br />
</li>
<li>Listbox for choosing whether the min/max price is for total or for each, related to the product quantity:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Each Or Total<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> trdfet<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select our trading forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Listbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Width:</span> 10<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Height:</span> 1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Values List:</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>Total<br />
Each</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 7<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Hide Input Field:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
</ul>
<br />
</li>
<li>Listbox for product category:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Category<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> trdfcat<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select our trading forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Listbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Width:</span> 15<br />
Modify it as our needs. Depends on the long of the line in value list.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Height:</span> 1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Values List:</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>Hardware<br />
Software<br />
Other</code></div></div>Modify it as our needs.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 8<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Allow Filtering:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Hide Input Field:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
</ul>
<br />
</li>
<li>File Input for Product Image:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Product Image<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> trdfimg<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select our trading forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> File<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Valid File Extensions:</span> gif|png|jpg|jpeg<br />
Modify it as our needs. It is the extensions of image that can be uploaded.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Maximum File Size:</span> 102400<br />
Modify it as our needs. It is a maximum file size (in bytes) that can be uploaded.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 9<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Only accept uploaded images:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Minimum Image Dimensions:</span> 160x120<br />
Modify it as our needs. It is the minimum images dimension that user can upload.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Maximum Image Dimensions:</span> 1024x768<br />
Modify it as our needs. It is the maximum images dimension that user can upload.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Image Thumbnail Generation:</span> 80x60|120x90|160x120|320x240<br />
Modify it as our needs. Depends on what thumbnails dimension we want to display for the image.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Blank Replacement Value:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;img src="images/no_image.gif" alt="" title="" /&gt;</code></div></div>
Because this field is not required, so we need to use a "default" image. Modify it as our needs, depends on which image we want to use.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format:</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;img src="{URL}/thumb160x120" alt="" title="" /&gt;</code></div></div>
</li>
<li><span style="font-weight: bold;" class="mycode_b">Hide Input Field:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
Please remember that we put the description manually in <span style="font-style: italic;" class="mycode_i">newthread</span> and <span style="font-style: italic;" class="mycode_i">edit_post_first</span> template. So, if we change the settings, maybe we need to change the template too.<br />
</li>
</ul>
<br />
</li>
<li>Checkboxes for Payment Method:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Payment Method<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> trdfpayment<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select our trading forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Checkboxes<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Values List:</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>PayPal<br />
AlertPay<br />
Wire Transfer</code></div></div>Modify it as our needs.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 10<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Allow Filtering:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Multiple Value Delimiter:</span> <div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>,&amp;nbsp;</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Hide Input Field:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
Maybe it is better if we use images....<br />
</li>
</ul>
<br />
</li>
</ol>
<br />
Now, we need to create new templates in Global Template.<br />
Admin CP -&gt; Templates &amp; Style -&gt; Templates -&gt; Global Templates:<br />
<ol type="1" class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> trdf_editpost_first<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;{&#36;mybb-&gt;settings['bbname']} - {&#36;lang-&gt;edit_post}&lt;/title&gt;<br />
{&#36;headerinclude}<br />
&lt;script type="text/javascript" src="jscripts/post.js?ver=1400"&gt;&lt;/script&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
{&#36;header}<br />
{&#36;preview}<br />
{&#36;post_errors}<br />
{&#36;attacherror}<br />
&lt;form action="editpost.php?pid={&#36;pid}&amp;amp;processed=1" method="post" enctype="multipart/form-data" name="input"&gt;<br />
	&lt;input type="hidden" name="my_post_key" value="{&#36;mybb-&gt;post_code}" /&gt;<br />
	&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
		&lt;tr&gt;&lt;td class="thead" colspan="2"&gt;&lt;strong&gt;Edit Trade&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;<br />
		&lt;tr&gt;&lt;td class="tcat" colspan="2"&gt;&lt;strong&gt;Required Information&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow_sep" colspan="2"&gt;<br />
				&lt;div class="float_left"&gt;Need To:&lt;/div&gt;<br />
				&lt;div class="float_left" style="margin-left: 9px;"&gt;{&#36;tfinput['trdftnt']}&lt;/div&gt;<br />
				&lt;div class="float_left" style="margin-left: 19px;"&gt;Category:&lt;/div&gt;<br />
				&lt;div class="float_left" style="margin-left: 9px;"&gt;{&#36;tfinput['trdfcat']}&lt;/div&gt;<br />
				&lt;div class="float_left" style="margin-left: 19px;"&gt;Product Name:&lt;/div&gt;<br />
				&lt;div class="float_left" style="margin-left: 9px;"&gt;&lt;input type="text" class="textbox" name="subject" size="40" maxlength="85" value="{&#36;subject}" tabindex="1" /&gt;&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1 smalltext" colspan="2"&gt;<br />
				Please set whether you want to buy or sell a product. Choose a category of the product, and type the name of the product.<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow_sep" colspan="2"&gt;<br />
				&lt;div class="float_left"&gt;Quantity:&lt;/div&gt;<br />
				&lt;div class="float_left" style="margin-left: 9px;"&gt;{&#36;tfinput['trdfquantity']}&lt;/div&gt;<br />
				&lt;div class="float_left" style="margin-left: 19px;"&gt;Price:&lt;/div&gt;<br />
				&lt;div class="float_left" style="margin-left: 9px;"&gt;{&#36;tfinput['trdfminmax']} USD {&#36;tfinput['trdfprice']} for  {&#36;tfinput['trdfet']}&lt;/div&gt;<br />
				&lt;div class="float_left" style="margin-left: 19px;"&gt;Condition:&lt;/div&gt;<br />
				&lt;div class="float_left" style="margin-left: 9px;"&gt;{&#36;tfinput['trdfcond']}&lt;/div&gt;<br />
				&lt;div class="float_left" style="margin-left: 19px;"&gt;Status:&lt;/div&gt;<br />
				&lt;div class="float_left" style="margin-left: 9px;"&gt;{&#36;tfinput['trdfstatus']}&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1 smalltext" colspan="2"&gt;<br />
				You need to set the quantity of the product you want to buy/sell. You can set the minimum or maximum price for it. You need to set whether the price is for each product or it is a total price related to the quantity. Price format: x or x.xx You need to set whether the product you want to buy/sell is a new product or a used product. You can set whether the trading still available or not by set the status setting.<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;&lt;td class="tcat" colspan="2"&gt;&lt;strong&gt;Additional Information&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow2" width="1"&gt;<br />
				&lt;textarea name="message" id="message" rows="7" cols="60" tabindex="3"&gt;{&#36;message}&lt;/textarea&gt;<br />
			&lt;/td&gt;<br />
			&lt;td class="trow2 smalltext" valign="top"&gt;<br />
				If you have additional info about this trading, you can type it in the text area on the left.<br />
				&lt;br class="clear" /&gt;&lt;br /&gt;<br />
				If you have an image related to the product, you can upload it via the image uploader bellow. File format: jpeg or jpg or gif or png. Maximum file size: 100 kb. Maximum dimension: 1024 x 768 pixel. Minimum dimension: 320 x 240 pixel.<br />
				&lt;br class="clear" /&gt;<br />
				&lt;div align="center"&gt;{&#36;tfinput['trdfimg']}&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		{&#36;extra_threadfields}<br />
		&lt;tr&gt;&lt;td class="tcat" colspan="2"&gt;&lt;strong&gt;Miscellaneous&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;<br />
		&lt;tr&gt;&lt;td class="trow_sep" colspan="2"&gt;&lt;strong&gt;Payment Method&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow2 smalltext" valign="top" colspan="2"&gt;<br />
				You need to set what payment method you want to use for this trade. You can choose more than one payment method.<br />
				&lt;br class="clear" /&gt;<br />
				&lt;div&gt;{&#36;tfinput['trdfpayment']}&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		{&#36;subscriptionmethod}<br />
	&lt;/table&gt;<br />
	{&#36;attachbox}<br />
	&lt;br /&gt;<br />
	&lt;div align="center"&gt;&lt;input type="submit" class="button" name="submit" value="{&#36;lang-&gt;update_post}" tabindex="3" /&gt;  &lt;input type="submit" class="button" name="previewpost" value="{&#36;lang-&gt;preview_post}" tabindex="4" /&gt;&lt;/div&gt;<br />
	&lt;input type="hidden" name="action" value="do_editpost" /&gt;<br />
	&lt;input type="hidden" name="posthash" value="{&#36;posthash}" /&gt;<br />
	&lt;input type="hidden" name="attachmentaid" value="" /&gt;<br />
	&lt;input type="hidden" name="attachmentact" value="" /&gt;<br />
&lt;/form&gt;<br />
&lt;br /&gt;<br />
&lt;form action="editpost.php" method="post" name="editpost"&gt;<br />
	&lt;input type="hidden" name="my_post_key" value="{&#36;mybb-&gt;post_code}" /&gt;<br />
	&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="thead" colspan="3"&gt;&lt;strong&gt;{&#36;lang-&gt;delete_post}&lt;/strong&gt;&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1" style="white-space: nowrap"&gt;&lt;input type="checkbox" class="checkbox" name="delete" value="1" tabindex="9" /&gt; &lt;strong&gt;{&#36;lang-&gt;delete_q}&lt;/strong&gt;&lt;/td&gt;<br />
			&lt;td class="trow1" width="100%"&gt;{&#36;lang-&gt;delete_1}&lt;br /&gt;&lt;span class="smalltext"&gt;{&#36;lang-&gt;delete_2}&lt;/span&gt;&lt;/td&gt;<br />
			&lt;td class="trow1"&gt;&lt;input type="submit" class="button" name="submit" value="{&#36;lang-&gt;delete_now}" tabindex="10" /&gt;&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/table&gt;<br />
	&lt;input type="hidden" name="action" value="deletepost" /&gt;<br />
	&lt;input type="hidden" name="pid" value="{&#36;pid}" /&gt;<br />
&lt;/form&gt;<br />
{&#36;footer}<br />
&lt;/body&gt;<br />
&lt;/html&gt;<br />
</code></div></div>
Well, we can see that the title and description for our custom thread fields typed manually in this template. Modify it as our needs.<br />
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> trdf_forumdisplay<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;{&#36;mybb-&gt;settings['bbname']} - {&#36;foruminfo['name']} &lt;/title&gt;<br />
{&#36;headerinclude}<br />
{&#36;rssdiscovery}<br />
&lt;script type="text/javascript"&gt;<br />
&lt;!--<br />
	lang.no_new_posts = "{&#36;lang-&gt;no_new_posts}";<br />
	lang.click_mark_read = "{&#36;lang-&gt;click_mark_read}";<br />
// <img src="https://gidenler.me/images/smilies/sag_ok.png" alt="Sağ ok" title="Sağ ok" class="smilie smilie_54" /><br />
&lt;/script&gt;<br />
&lt;style type="text/css"&gt;<br />
.filtertf_active {<br />
	background: #FFF6BF;<br />
}<br />
&lt;/style&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
{&#36;header}<br />
{&#36;moderatedby}<br />
{&#36;usersbrowsing}<br />
{&#36;subforums}<br />
{&#36;threadslist}<br />
{&#36;footer}<br />
&lt;/body&gt;<br />
&lt;/html&gt;<br />
</code></div></div>
Just removing the rules from this template.<br />
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> trdf_forumdisplay_group_sep<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;/tr&gt;&lt;tr&gt;</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> trdf_forumdisplay_nothreads<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;td&gt;<br />
	&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="tcat"&gt;<br />
				&lt;strong&gt;No Trade&lt;/strong&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td align="center" class="trow1"&gt;<br />
				{&#36;lang-&gt;nothreads}<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/table&gt;<br />
&lt;/td&gt;<br />
</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> trdf_forumdisplay_rules<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="{&#36;filters_set['__all']['hiddencss']}"&gt;<br />
&lt;tr&gt;<br />
&lt;td class="thead"&gt;&lt;strong&gt;{&#36;foruminfo['rulestitle']}&lt;/strong&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td class="trow1"&gt;{&#36;foruminfo['rules']}&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;<br />
</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> trdf_forumdisplay_searchforum_inline<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;table border="0" cellspacing="{&#36;GLOBALS['theme']['borderwidth']}" cellpadding="{&#36;GLOBALS['theme']['tablespace']}" class="tborder" style="clear: both;"&gt;<br />
	&lt;tr&gt;&lt;td class="thead"&gt;&lt;strong&gt;Filter &amp;amp; Search Trade&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="trow1" align="center"&gt;<br />
			&lt;form action="forumdisplay.php" method="get"&gt;<br />
				&lt;select name="filtertf_trdfcat"&gt;<br />
					&lt;option value=""&gt;All&lt;/option&gt;<br />
					&lt;option value="Hardware"{&#36;GLOBALS['filters_set']['trdfcat']['selected']['Hardware']}&gt;Hardware&lt;/option&gt;<br />
					&lt;option value="Software"{&#36;GLOBALS['filters_set']['trdfcat']['selected']['Software']}&gt;Software&lt;/option&gt;<br />
					&lt;option value="Other"{&#36;GLOBALS['filters_set']['trdfcat']['selected']['Other']}&gt;Other&lt;/option&gt;<br />
				&lt;/select&gt;<br />
				&lt;select name="filtertf_trdftnt"&gt;<br />
					&lt;option value=""&gt;All&lt;/option&gt;<br />
					&lt;option value="Buy"{&#36;GLOBALS['filters_set']['trdftnt']['selected']['Buy']}&gt;Buy&lt;/option&gt;<br />
					&lt;option value="Sell"{&#36;GLOBALS['filters_set']['trdftnt']['selected']['Sell']}&gt;Sale&lt;/option&gt;<br />
				&lt;/select&gt;<br />
				&lt;select name="filtertf_trdfcond"&gt;<br />
					&lt;option value=""&gt;All&lt;/option&gt;<br />
					&lt;option value="New"{&#36;GLOBALS['filters_set']['trdfcond']['selected']['New']}&gt;New&lt;/option&gt;<br />
					&lt;option value="Used"{&#36;GLOBALS['filters_set']['trdfcond']['selected']['Used']}&gt;Used&lt;/option&gt;<br />
				&lt;/select&gt;<br />
				&lt;select name="filtertf_trdfpayment"&gt;<br />
					&lt;option value=""&gt;All&lt;/option&gt;<br />
					&lt;option value="PayPal"{&#36;GLOBALS['filters_set']['trdfpayment']['selected']['PayPal']}&gt;PayPal&lt;/option&gt;<br />
					&lt;option value="AlertPay"{&#36;GLOBALS['filters_set']['trdfpayment']['selected']['AlertPay']}&gt;AlertPay&lt;/option&gt;<br />
					&lt;option value="Wire Transfer"{&#36;GLOBALS['filters_set']['trdfpayment']['selected']['Wire Transfer']}&gt;Wire Transfer&lt;/option&gt;<br />
				&lt;/select&gt;<br />
				&lt;select name="filtertf_trdfstatus"&gt;<br />
					&lt;option value=""&gt;All&lt;/option&gt;<br />
					&lt;option value="Open"{&#36;GLOBALS['filters_set']['trdfstatus']['selected']['Open']}&gt;Open&lt;/option&gt;<br />
					&lt;option value="Closed"{&#36;GLOBALS['filters_set']['trdfstatus']['selected']['Closed']}&gt;Closed&lt;/option&gt;<br />
				&lt;/select&gt;<br />
				&lt;input type="text" class="textbox" name="search" size="35" value="{&#36;searchval}" /&gt; {&#36;gobutton}<br />
				&lt;input type="hidden" name="fid" value="{&#36;fid}" /&gt;<br />
				&lt;input type="hidden" name="sortby" value="{&#36;sortby}" /&gt;<br />
				&lt;input type="hidden" name="order" value="{&#36;sortordernow}" /&gt;<br />
				&lt;input type="hidden" name="datecut" value="{&#36;datecut}" /&gt;<br />
			&lt;/form&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;br /&gt;<br />
</code></div></div>
I'm not quite sure....<br />
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> trdf_forumdisplay_sticky_sep<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;td colspan="{&#36;colspan}" style="display: none;"&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
</code></div></div>
We need that td to bypass the validator <img src="https://gidenler.me/images/v2/smile/=D.gif" alt="Big Grin" title="Big Grin" class="smilie smilie_4" /><br />
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> trdf_forumdisplay_thread<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;td width="50%" valign="top"&gt;<br />
	&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="thead" colspan="{&#36;colspan}" align="center"&gt;<br />
				&lt;strong&gt;&lt;a href="{&#36;thread['threadlink']}" class="{&#36;inline_edit_class} {&#36;new_class}" id="tid_{&#36;inline_edit_tid}"&gt;{&#36;thread['subject']}&lt;/a&gt;&lt;/strong&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="tcat smalltext" align="center"&gt;<br />
				&lt;strong&gt;{&#36;thread['profilelink']}, {&#36;thread['threaddate']} at {&#36;thread['threadtime']}&lt;/strong&gt;<br />
			&lt;/td&gt;<br />
			{&#36;modbit}<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1" align="center" valign="middle" colspan="{&#36;colspan}"&gt;<br />
				&lt;table width="100%" border="0" style="height: 189px;"&gt;<br />
					&lt;tr&gt;<br />
						&lt;td width="1" align="center" valign="middle"&gt;<br />
							&lt;a href="{&#36;thread['threadlink']}"&gt;{&#36;GLOBALS['threadfields']['trdfimg']['value']}&lt;/a&gt;<br />
							{&#36;rating}<br />
						&lt;/td&gt;<br />
						&lt;td valign="top" align="center"&gt;<br />
							&lt;div align="center"&gt;&lt;strong&gt;Quantity:&lt;/strong&gt;&lt;/div&gt;<br />
							&lt;div align="center" style="color: green; font-size: 16px;"&gt;<br />
								&lt;strong&gt;{&#36;GLOBALS['threadfields']['trdfquantity']}&lt;/strong&gt;<br />
							&lt;/div&gt;<br />
							&lt;br /&gt;<br />
							&lt;div align="center"&gt;<br />
								&lt;strong&gt;{&#36;GLOBALS['threadfields']['trdfminmax']}&lt;br /&gt;&#36; {&#36;GLOBALS['threadfields']['trdfprice']} For {&#36;GLOBALS['threadfields']['trdfet']}!&lt;/strong&gt;<br />
							&lt;/div&gt;<br />
							&lt;br /&gt;<br />
							&lt;img src="{&#36;theme['imgdir']}/{&#36;GLOBALS['threadfields']['trdftnt']}.png" alt="Need To {&#36;GLOBALS['threadfields']['trdftnt']}" title="Need To {&#36;GLOBALS['threadfields']['trdftnt']}" /&gt;<br />
							&lt;img src="{&#36;theme['imgdir']}/{&#36;GLOBALS['threadfields']['trdfstatus']}.png" alt="{&#36;GLOBALS['threadfields']['trdfstatus']}" title="{&#36;GLOBALS['threadfields']['trdfstatus']}" /&gt;<br />
							&lt;img src="{&#36;theme['imgdir']}/{&#36;GLOBALS['threadfields']['trdfcond']}.png" alt="{&#36;GLOBALS['threadfields']['trdfcond']}" title="{&#36;GLOBALS['threadfields']['trdfcond']}" /&gt;<br />
							&lt;br /&gt;<br />
						&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
				&lt;/table&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="tcat" colspan="{&#36;colspan}" align="center"&gt;<br />
				&lt;strong&gt;Payment: {&#36;GLOBALS['threadfields']['trdfpayment']}&lt;/strong&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="tfoot" align="center" colspan="{&#36;colspan}"&gt;<br />
				&lt;strong&gt;{&#36;thread['views']} Views,<br />
				&lt;a href="javascript:MyBB.whoPosted({&#36;thread['tid']});"&gt;{&#36;thread['replies']}&lt;/a&gt;{&#36;unapproved_posts} Responds&lt;/strong&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/table&gt;<br />
&lt;/td&gt;<br />
</code></div></div>
Well, we are using image for the Buy/Sell, Status and Condition (line #32 - #34). Modify it as our needs.<br />
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> trdf_forumdisplay_threadlist<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;table border="0" width="100%" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}"&gt;<br />
	&lt;tr&gt;<br />
		&lt;td width="200" valign="top"&gt;<br />
			&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="clear: both;"&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="thead" colspan="2"&gt;<br />
						&lt;div align="center"&gt;&lt;strong&gt;&lt;a href="{&#36;forumurl}"&gt;{&#36;foruminfo['name']}&lt;/a&gt;&lt;/strong&gt;&lt;/div&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;&lt;td class="tcat"&gt;&lt;strong&gt;Product Category&lt;/strong&gt;&lt;/td&gt;{&#36;inlinemodcol}&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="trow1 {&#36;filters_set['trdfcat']['active']['Hardware']}" colspan="2"&gt;<br />
						&lt;a href="{&#36;forumurl_q}filtertf_trdfcat=Hardware"&gt;&lt;span&gt;&lt;strong&gt;Hardware&lt;/strong&gt;&lt;/span&gt;&lt;/a&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="trow1 {&#36;filters_set['trdfcat']['active']['Software']}" colspan="2"&gt;<br />
						&lt;a href="{&#36;forumurl_q}filtertf_trdfcat=Software"&gt;&lt;span&gt;&lt;strong&gt;Software&lt;/strong&gt;&lt;/span&gt;&lt;/a&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="trow1 {&#36;filters_set['trdfcat']['active']['Other']}" colspan="2"&gt;<br />
						&lt;a href="{&#36;forumurl_q}filtertf_trdfcat=Other"&gt;&lt;span&gt;&lt;strong&gt;Other&lt;/strong&gt;&lt;/span&gt;&lt;/a&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;&lt;td class="tcat" colspan="2"&gt;&lt;strong&gt;Need To&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="trow1 {&#36;filters_set['trdftnt']['active']['Buy']}" colspan="2"&gt;<br />
						&lt;a href="{&#36;forumurl_q}filtertf_trdftnt=Buy"&gt;&lt;span&gt;&lt;strong&gt;Buy&lt;/strong&gt;&lt;/span&gt;&lt;/a&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="trow1 {&#36;filters_set['trdftnt']['active']['Sell']}" colspan="2"&gt;<br />
						&lt;a href="{&#36;forumurl_q}filtertf_trdftnt=Sell"&gt;&lt;span&gt;&lt;strong&gt;Sell&lt;/strong&gt;&lt;/span&gt;&lt;/a&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;&lt;td class="tcat" colspan="2"&gt;&lt;strong&gt;Condition&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="trow1 {&#36;filters_set['trdfcond']['active']['New']}" colspan="2"&gt;<br />
						&lt;a href="{&#36;forumurl_q}filtertf_trdfcond=New"&gt;&lt;span&gt;&lt;strong&gt;New&lt;/strong&gt;&lt;/span&gt;&lt;/a&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="trow1 {&#36;filters_set['trdfcond']['active']['Used']}" colspan="2"&gt;<br />
						&lt;a href="{&#36;forumurl_q}filtertf_trdfcond=Used"&gt;&lt;span&gt;&lt;strong&gt;Used&lt;/strong&gt;&lt;/span&gt;&lt;/a&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;&lt;td class="tcat" colspan="2"&gt;&lt;strong&gt;Payment Method&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="trow1 {&#36;filters_set['trdfpayment']['active']['PayPal']}" colspan="2"&gt;<br />
						&lt;a href="{&#36;forumurl_q}filtertf_trdfpayment=PayPal"&gt;&lt;span&gt;&lt;strong&gt;PayPal&lt;/strong&gt;&lt;/span&gt;&lt;/a&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="trow1 {&#36;filters_set['trdfpayment']['active']['AlertPay']}" colspan="2"&gt;<br />
						&lt;a href="{&#36;forumurl_q}filtertf_trdfpayment=AlertPay"&gt;&lt;span&gt;&lt;strong&gt;AlertPay&lt;/strong&gt;&lt;/span&gt;&lt;/a&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="trow1 {&#36;filters_set['trdfpayment']['active']['Wire Transfer']}" colspan="2"&gt;<br />
						&lt;a href="{&#36;forumurl_q}filtertf_trdfpayment=Wire Transfer"&gt;&lt;span&gt;&lt;strong&gt;Wire Transfer&lt;/strong&gt;&lt;/span&gt;&lt;/a&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;&lt;td class="tcat" colspan="2"&gt;&lt;strong&gt;Status&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="trow1 {&#36;filters_set['trdfstatus']['active']['Open']}" colspan="2"&gt;<br />
						&lt;a href="{&#36;forumurl_q}filtertf_trdfstatus=Open"&gt;&lt;span&gt;&lt;strong&gt;Open&lt;/strong&gt;&lt;/span&gt;&lt;/a&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="trow1 {&#36;filters_set['trdfstatus']['active']['Closed']}" colspan="2"&gt;<br />
						&lt;a href="{&#36;forumurl_q}filtertf_trdfstatus=Closed"&gt;&lt;span&gt;&lt;strong&gt;Closed&lt;/strong&gt;&lt;/span&gt;&lt;/a&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
			&lt;/table&gt;<br />
			&lt;br /&gt;<br />
			&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="{&#36;filters_set['__all']['visiblecss']}"&gt;<br />
				&lt;tr&gt;&lt;td class="thead"&gt;&lt;strong&gt;Trade Sorter&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;<br />
				&lt;tr&gt;&lt;td class="tcat"&gt;&lt;strong&gt;Sort By&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="trow1"&gt;<br />
						&lt;strong&gt;&lt;a href="{&#36;sorturl}&amp;amp;sortby=subject&amp;amp;order=asc"&gt;{&#36;lang-&gt;thread}&lt;/a&gt; {&#36;orderarrow['subject']}&lt;/strong&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="trow1"&gt;<br />
						&lt;strong&gt;&lt;a href="{&#36;sorturl}&amp;amp;sortby=starter&amp;amp;order=asc"&gt;{&#36;lang-&gt;author}&lt;/a&gt; {&#36;orderarrow['starter']}&lt;/strong&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="trow1"&gt;<br />
						&lt;strong&gt;&lt;a href="{&#36;sorturl}&amp;amp;sortby=replies&amp;amp;order=desc"&gt;{&#36;lang-&gt;replies}&lt;/a&gt; {&#36;orderarrow['replies']}&lt;/strong&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="trow1"&gt;<br />
						&lt;strong&gt;&lt;a href="{&#36;sorturl}&amp;amp;sortby=views&amp;amp;order=desc"&gt;{&#36;lang-&gt;views}&lt;/a&gt; {&#36;orderarrow['views']}&lt;/strong&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="trow1"&gt;<br />
						&lt;strong&gt;&lt;a href="{&#36;sorturl}&amp;amp;sortby=lastpost&amp;amp;order=desc"&gt;{&#36;lang-&gt;lastpost}&lt;/a&gt; {&#36;orderarrow['lastpost']}&lt;/strong&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				{&#36;ratingcol}<br />
			&lt;/table&gt;<br />
			&lt;br /&gt;<br />
			&lt;div&gt;<br />
				{&#36;newthread}<br />
			&lt;/div&gt;<br />
		&lt;/td&gt;<br />
		&lt;td valign="top"&gt;<br />
			{&#36;searchforum}<br />
			{&#36;rules}<br />
			&lt;table border="0" width="100%" style="{&#36;filters_set['__all']['visiblecss']}"&gt;<br />
				&lt;tr&gt;<br />
					{&#36;threads}{&#36;nullthreads}<br />
				&lt;/tr&gt;<br />
			&lt;/table&gt;<br />
			&lt;div class="float_left"&gt;<br />
				{&#36;multipage}<br />
			&lt;/div&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;br style="clear: both;" /&gt;<br />
&lt;br /&gt;<br />
&lt;div class="float_right" style="text-align: right;"&gt;<br />
	{&#36;inlinemod}<br />
&lt;/div&gt;<br />
&lt;br style="clear: both" /&gt;<br />
&lt;div class="smalltext" align="center"&gt;<br />
	{&#36;foruminfo['name']}&lt;br /&gt;Powered By &lt;a href="http://mybbhacks.zingaburga.com"&gt;XThreads&lt;/a&gt; - &lt;a href="http://mybbhacks.zingaburga.com"&gt;MyBB Hacks&lt;/a&gt;<br />
&lt;/div&gt;<br />
{&#36;inline_edit_js}<br />
</code></div></div>
All filtering URL laid here. If we changed the value list, maybe we need to change this template too. And we put the forum rule variable in this template.<br />
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> trdf_forumdisplay_threadlist_rating<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;tr&gt;<br />
	&lt;td class="trow1"&gt;<br />
		&lt;strong&gt;&lt;a href="{&#36;sorturl}&amp;amp;sortby=rating&amp;amp;order=desc"&gt;{&#36;lang-&gt;rating}&lt;/a&gt; {&#36;orderarrow['rating']}&lt;/strong&gt;<br />
		&lt;script type="text/javascript" src="jscripts/rating.js?ver=1400"&gt;&lt;/script&gt;<br />
		&lt;script type="text/javascript"&gt;<br />
		&lt;!--<br />
			lang.stars = new Array();<br />
			lang.stars[1] = "{&#36;lang-&gt;one_star}";<br />
			lang.stars[2] = "{&#36;lang-&gt;two_stars}";<br />
			lang.stars[3] = "{&#36;lang-&gt;three_stars}";<br />
			lang.stars[4] = "{&#36;lang-&gt;four_stars}";<br />
			lang.stars[5] = "{&#36;lang-&gt;five_stars}";<br />
		// <img src="https://gidenler.me/images/smilies/sag_ok.png" alt="Sağ ok" title="Sağ ok" class="smilie smilie_54" /><br />
		&lt;/script&gt;<br />
	&lt;/td&gt;<br />
&lt;/tr&gt;<br />
</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> trdf_forumdisplay_threads_sep<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;td colspan="{&#36;colspan}" style="display: none;"&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
</code></div></div>
We need the td to bypass the validator if there is a global announcement and there is no sticky thread in this forum <img src="https://gidenler.me/images/v2/smile/=D.gif" alt="Big Grin" title="Big Grin" class="smilie smilie_4" /><br />
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> trdf_forumdisplay_thread_modbit<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;td width="1" class="tcat" align="center" style="white-space: nowrap"&gt;&lt;input type="checkbox" class="checkbox" name="inlinemod_{&#36;multitid}" id="inlinemod_{&#36;multitid}" value="1" {&#36;inlinecheck}  /&gt;&lt;/td&gt;<br />
</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> trdf_forumdisplay_thread_null<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;td width="50%" valign="top"&gt;<br />
	&lt;table border="0" cellspacing="{&#36;GLOBALS['theme']['borderwidth']}" cellpadding="{&#36;GLOBALS['theme']['tablespace']}" class="tborder"&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="thead" align="center"&gt;<br />
				&lt;strong&gt;{&#36;GLOBALS['mybb']-&gt;settings['bbname']} Trading Forum&lt;/strong&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="tcat smalltext" align="center"&gt;<br />
				&lt;strong&gt;Buy Or Sell A Product In Our Trading Forum&lt;/strong&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1" align="center"&gt;<br />
				&lt;strong&gt;Curently, we have {&#36;GLOBALS['threadcount']} Transactions!&lt;/strong&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/table&gt;<br />
&lt;/td&gt;<br />
</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> trdf_forumdisplay_thread_rating<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;div align="center" class="{&#36;bgcolor}" id="rating_table_{&#36;thread['tid']}"&gt;<br />
	&lt;table&gt;<br />
		&lt;tr&gt;<br />
			&lt;td&gt;<br />
				&lt;ul class="star_rating{&#36;not_rated}" id="rating_thread_{&#36;thread['tid']}"&gt;<br />
					&lt;li style="width: {&#36;thread['width']}%" class="current_rating" id="current_rating_{&#36;thread['tid']}"&gt;{&#36;ratingvotesav}&lt;/li&gt;<br />
				&lt;/ul&gt;<br />
				&lt;script type="text/javascript"&gt;<br />
				&lt;!--<br />
					Rating.build_forumdisplay({&#36;thread['tid']}, { width: '{&#36;thread['width']}', extra_class: '{&#36;not_rated}', current_average: '{&#36;ratingvotesav}' });<br />
				// <img src="https://gidenler.me/images/smilies/sag_ok.png" alt="Sağ ok" title="Sağ ok" class="smilie smilie_54" /><br />
				&lt;/script&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/table&gt;<br />
&lt;/div&gt;<br />
</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> trdf_newreply_modoptions<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;tr&gt;<br />
&lt;td class="trow2" valign="top" colspan="2"&gt;&lt;div&gt;&lt;strong&gt;{&#36;lang-&gt;mod_options}&lt;/strong&gt;&lt;/div&gt;<br />
&lt;label&gt;&lt;input type="checkbox" class="checkbox" name="modoptions[closethread]" value="1"{&#36;closecheck} /&gt;&amp;nbsp;{&#36;lang-&gt;close_thread}&lt;/label&gt;&lt;br /&gt;<br />
&lt;label&gt;&lt;input type="checkbox" class="checkbox" name="modoptions[stickthread]" value="1"{&#36;stickycheck} /&gt;&amp;nbsp;{&#36;lang-&gt;stick_thread}&lt;/label&gt;<br />
&lt;/span&gt;<br />
&lt;/td&gt;<br />
&lt;/tr&gt;<br />
</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> trdf_newthread<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;{&#36;lang-&gt;newthread_in}&lt;/title&gt;<br />
{&#36;headerinclude}<br />
&lt;script type="text/javascript" src="jscripts/post.js?ver=1400"&gt;&lt;/script&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
{&#36;header}<br />
{&#36;preview}<br />
{&#36;thread_errors}<br />
{&#36;attacherror}<br />
&lt;form action="newthread.php?fid={&#36;fid}&amp;amp;processed=1" method="post" enctype="multipart/form-data" name="input"&gt;<br />
	&lt;input type="hidden" name="my_post_key" value="{&#36;mybb-&gt;post_code}" /&gt;<br />
	&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
		&lt;tr&gt;&lt;td class="thead" colspan="2"&gt;&lt;strong&gt;New Trade&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;<br />
		&lt;tr&gt;&lt;td class="tcat" colspan="2"&gt;&lt;strong&gt;Required Information&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow_sep" colspan="2"&gt;<br />
				&lt;div class="float_left"&gt;Need To:&lt;/div&gt;<br />
				&lt;div class="float_left" style="margin-left: 9px;"&gt;{&#36;tfinput['trdftnt']}&lt;/div&gt;<br />
				&lt;div class="float_left" style="margin-left: 19px;"&gt;Category:&lt;/div&gt;<br />
				&lt;div class="float_left" style="margin-left: 9px;"&gt;{&#36;tfinput['trdfcat']}&lt;/div&gt;<br />
				&lt;div class="float_left" style="margin-left: 19px;"&gt;Product Name:&lt;/div&gt;<br />
				&lt;div class="float_left" style="margin-left: 9px;"&gt;&lt;input type="text" class="textbox" name="subject" size="40" maxlength="85" value="{&#36;subject}" tabindex="1" /&gt;&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1 smalltext" colspan="2"&gt;<br />
				Please set whether you want to buy or sell a product. Choose a category of the product, and type the name of the product.<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow_sep" colspan="2"&gt;<br />
				&lt;div class="float_left"&gt;Quantity:&lt;/div&gt;<br />
				&lt;div class="float_left" style="margin-left: 9px;"&gt;{&#36;tfinput['trdfquantity']}&lt;/div&gt;<br />
				&lt;div class="float_left" style="margin-left: 19px;"&gt;Price:&lt;/div&gt;<br />
				&lt;div class="float_left" style="margin-left: 9px;"&gt;{&#36;tfinput['trdfminmax']} USD {&#36;tfinput['trdfprice']} for  {&#36;tfinput['trdfet']}&lt;/div&gt;<br />
				&lt;div class="float_left" style="margin-left: 19px;"&gt;Condition:&lt;/div&gt;<br />
				&lt;div class="float_left" style="margin-left: 9px;"&gt;{&#36;tfinput['trdfcond']}&lt;/div&gt;<br />
				&lt;div class="float_left" style="margin-left: 19px;"&gt;Status:&lt;/div&gt;<br />
				&lt;div class="float_left" style="margin-left: 9px;"&gt;{&#36;tfinput['trdfstatus']}&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1 smalltext" colspan="2"&gt;<br />
				You need to set the quantity of the product you want to buy/sell. You can set the minimum or maximum price for it. You need to set whether the price is for each product or it is a total price related to the quantity. Price format: x or x.xx You need to set whether the product you want to buy/sell is a new product or a used product. You can set whether the trading still available or not by set the status setting.<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;&lt;td class="tcat" colspan="2"&gt;&lt;strong&gt;Additional Information&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow2" width="1"&gt;<br />
				&lt;textarea name="message" id="message" rows="7" cols="60" tabindex="2"&gt;{&#36;message}&lt;/textarea&gt;<br />
			&lt;/td&gt;<br />
			&lt;td class="trow2 smalltext" valign="top"&gt;<br />
				If you have additional info about this trading, you can type it in the text area on the left.<br />
				&lt;br class="clear" /&gt;&lt;br /&gt;<br />
				If you have an image related to the product, you can upload it via the image uploader bellow. File format: jpeg or jpg or gif or png. Maximum file size: 100 kb. Maximum dimension: 1024 x 768 pixel. Minimum dimension: 320 x 240 pixel.<br />
				&lt;br class="clear" /&gt;<br />
				&lt;div align="center"&gt;{&#36;tfinput['trdfimg']}&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		{&#36;extra_threadfields}<br />
		&lt;tr&gt;&lt;td class="tcat" colspan="2"&gt;&lt;strong&gt;Miscellaneous&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;<br />
		&lt;tr&gt;&lt;td class="trow_sep" colspan="2"&gt;&lt;strong&gt;Payment Method&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow2 smalltext" valign="top" colspan="2"&gt;<br />
				You need to set what payment method you want to use for this trade. You can choose more than one payment method.<br />
				&lt;br class="clear" /&gt;<br />
				&lt;div&gt;{&#36;tfinput['trdfpayment']}&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		{&#36;subscriptionmethod}<br />
		{&#36;modoptions}<br />
		{&#36;captcha}<br />
	&lt;/table&gt;<br />
	&lt;br /&gt;<br />
	&lt;div style="text-align:center"&gt;&lt;input type="submit" class="button" name="submit" value="{&#36;lang-&gt;post_thread}" tabindex="4" accesskey="s" /&gt;  &lt;input type="submit" class="button" name="previewpost" value="{&#36;lang-&gt;preview_post}" tabindex="5" /&gt;{&#36;savedraftbutton}&lt;/div&gt;<br />
	&lt;input type="hidden" name="action" value="do_newthread" /&gt;<br />
	&lt;input type="hidden" name="posthash" value="{&#36;posthash}" /&gt;<br />
	&lt;input type="hidden" name="attachmentaid" value="" /&gt;<br />
	&lt;input type="hidden" name="attachmentact" value="" /&gt;<br />
	&lt;input type="hidden" name="quoted_ids" value="{&#36;quoted_ids}" /&gt;<br />
	&lt;input type="hidden" name="tid" value="{&#36;tid}" /&gt;<br />
	{&#36;editdraftpid}<br />
&lt;/form&gt;<br />
{&#36;forumrules}<br />
{&#36;footer}<br />
&lt;/body&gt;<br />
&lt;/html&gt;<br />
</code></div></div>
Again, we put the title and description for fields manually in this template. If we change the fields, maybe we need to edit this template too.<br />
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> trdf_postbit<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
{&#36;ignore_bit}<br />
&lt;a name="pid{&#36;post['pid']}" id="pid{&#36;post['pid']}"&gt;&lt;/a&gt;<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="{&#36;post_extra_style} {&#36;post_visibility}" id="post_{&#36;post['pid']}"&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="tcat"&gt;<br />
			{&#36;post['posturl']}&lt;strong&gt;&lt;span&gt;&lt;a href="{&#36;post['profilelink_plain']}" id="profile_{&#36;post['pid']}"&gt;{&#36;post['username_formatted']}&lt;/a&gt;&lt;/span&gt;&lt;/strong&gt; {&#36;post['onlinestatus']} - &lt;span class="smalltext"&gt;{&#36;post['postdate']} {&#36;post['posttime']}&lt;/span&gt;<br />
			&lt;div id="profile_{&#36;post['pid']}_popup" class="popup_menu" style="display: none;"&gt;<br />
				&lt;div class="popup_item_container"&gt;<br />
					&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
						&lt;tr&gt;<br />
							&lt;td class="trow1" valign="top" align="center"&gt;<br />
								&lt;div&gt;&lt;strong&gt;{&#36;post['profilelink']}&lt;/strong&gt;&lt;/div&gt;<br />
								&lt;div class="smalltext"&gt;{&#36;post['useravatar']}&lt;/div&gt;<br />
								&lt;div class="smalltext"&gt;{&#36;post['usertitle']}&lt;/div&gt;<br />
								&lt;div class="smalltext"&gt;{&#36;post['userstars']}&lt;/div&gt;<br />
								&lt;div class="smalltext"&gt;{&#36;post['groupimage']}&lt;/div&gt;<br />
								&lt;div class="smalltext"&gt;{&#36;post['user_details']}&lt;/div&gt;<br />
							&lt;/td&gt;<br />
						&lt;/tr&gt;<br />
						&lt;tr&gt;<br />
							&lt;td class="tcat" align="center"&gt;<br />
								{&#36;post['button_email']}{&#36;post['button_pm']}{&#36;post['button_www']}{&#36;post['button_find']}<br />
							&lt;/td&gt;<br />
						&lt;/tr&gt;<br />
					&lt;/table&gt;<br />
				&lt;/div&gt;<br />
			&lt;/div&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="{&#36;altbg}" valign="top"&gt;<br />
			&lt;table width="100%"&gt;<br />
				&lt;tr&gt;<br />
					&lt;td&gt;<br />
						&lt;div class="smalltext" style="float: left; margin-right: 9px;" id="post_meta_{&#36;post['pid']}"&gt;<br />
							&lt;strong&gt;{&#36;post['iplogged']}&lt;/strong&gt;<br />
						&lt;/div&gt;<br />
						&lt;div class=" float_left smalltext" style="margin-right: 9px;"&gt;<br />
							&lt;strong&gt;{&#36;post['icon']}{&#36;post['subject']} {&#36;post['subject_extra']}&lt;/strong&gt;<br />
						&lt;/div&gt;<br />
						&lt;div id="edited_by_{&#36;post['pid']}"&gt;{&#36;post['editedmsg']}&lt;/div&gt;<br />
						&lt;br /&gt;<br />
						&lt;div id="pid_{&#36;post['pid']}" style="padding: 5px 0 5px 0;"&gt;<br />
							{&#36;post['message']}<br />
						&lt;/div&gt;<br />
						{&#36;post['attachments']}<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
			&lt;/table&gt;<br />
			&lt;div class="float_right smalltext"&gt;<br />
				{&#36;post['button_edit']}{&#36;post['button_quickdelete']}{&#36;post['button_quote']}{&#36;post['button_multiquote']}{&#36;post['button_report']}{&#36;post['button_warn']}<br />
			&lt;/div&gt;<br />
			&lt;noscript&gt;<br />
				&lt;div class="float_left smalltext"&gt;<br />
					{&#36;post['button_email']}{&#36;post['button_pm']}{&#36;post['button_www']}{&#36;post['button_find']}<br />
				&lt;/div&gt;<br />
			&lt;/noscript&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;script type="text/javascript"&gt;<br />
// &lt;!--<br />
	if(use_xmlhttprequest == "1")<br />
	{<br />
		new PopupMenu("profile_{&#36;post['pid']}");<br />
	}<br />
// <img src="https://gidenler.me/images/smilies/sag_ok.png" alt="Sağ ok" title="Sağ ok" class="smilie smilie_54" /><br />
&lt;/script&gt;<br />
</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> trdf_postbit_first<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
{&#36;ignore_bit}<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" width="100%" style="{&#36;post_extra_style} {&#36;post_visibility}" id="post_{&#36;post['pid']}"&gt;<br />
	&lt;tr&gt;<br />
		&lt;td width="300" valign="top" style="text-align: center;"&gt;<br />
			&lt;table border="0" cellspacing="0" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="tcat" align="center"&gt;<br />
						&lt;span class="smalltext"&gt;{&#36;post['postdate']} {&#36;post['posttime']}&lt;/span&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="{&#36;altbg}" width="250" valign="top" style="text-align: center;"&gt;<br />
						&lt;a name="pid{&#36;post['pid']}" id="pid{&#36;post['pid']}"&gt;&lt;/a&gt;<br />
						&lt;strong&gt;&lt;span class="largetext"&gt;{&#36;post['profilelink']}&lt;/span&gt;&lt;/strong&gt; {&#36;post['onlinestatus']}&lt;br /&gt;<br />
						{&#36;post['useravatar']}&lt;br /&gt;<br />
						&lt;span class="smalltext"&gt;<br />
							{&#36;post['usertitle']}&lt;br /&gt;<br />
							{&#36;post['userstars']}<br />
							{&#36;post['groupimage']}&lt;br /&gt;<br />
							{&#36;post['user_details']}<br />
						&lt;/span&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="tcat" align="center"&gt;<br />
						&lt;span class="smalltext"&gt;<br />
							{&#36;post['button_email']}{&#36;post['button_pm']}{&#36;post['button_www']}{&#36;post['button_find']}<br />
						&lt;/span&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
			&lt;/table&gt;<br />
		&lt;/td&gt;<br />
		&lt;td valign="top"&gt;<br />
			&lt;table border="0" cellspacing="0" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="tcat" colspan="3"&gt;<br />
						{&#36;post['posturl']}<br />
						&lt;span class="smalltext"&gt;<br />
							&lt;strong&gt;{&#36;post['icon']}{&#36;GLOBALS['threadfields']['trdftnt']}: {&#36;post['subject_extra']}&lt;/strong&gt;<br />
						&lt;/span&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="{&#36;altbg}" width="160" valign="bottom" align="center"&gt;<br />
						&lt;a href="{&#36;GLOBALS['threadfields']['trdfimg']['url']}"&gt;{&#36;GLOBALS['threadfields']['trdfimg']['value']}&lt;/a&gt;<br />
					&lt;/td&gt;<br />
					&lt;td class="{&#36;altbg}" valign="top"&gt;<br />
						&lt;table width="100%" border="0"&gt;<br />
							&lt;tr&gt;<br />
								&lt;td colspan="3" align="center"&gt;<br />
									&lt;div class="float_right" id="post_meta_{&#36;post['pid']}"&gt;<br />
										&lt;strong&gt;{&#36;post['iplogged']}&lt;/strong&gt;<br />
									&lt;/div&gt;<br />
									&lt;div class="largetext"&gt;&lt;strong&gt;{&#36;post['subject']}&lt;/strong&gt;&lt;/div&gt;<br />
								&lt;/td&gt;<br />
							&lt;/tr&gt;<br />
							&lt;tr&gt;<br />
								&lt;td&gt;Quantity&lt;/td&gt;<br />
								&lt;td&gt;:&lt;/td&gt;<br />
								&lt;td&gt;{&#36;GLOBALS['threadfields']['trdfquantity']}&lt;/td&gt;<br />
							&lt;/tr&gt;<br />
							&lt;tr&gt;<br />
								&lt;td&gt;Condition&lt;/td&gt;<br />
								&lt;td&gt;:&lt;/td&gt;<br />
								&lt;td&gt;{&#36;GLOBALS['threadfields']['trdfcond']}&lt;/td&gt;<br />
							&lt;/tr&gt;<br />
							&lt;tr&gt;<br />
								&lt;td width="99"&gt;Price&lt;/td&gt;<br />
<br />
<br />
								&lt;td width="1"&gt;:&lt;/td&gt;<br />
								&lt;td&gt;{&#36;GLOBALS['threadfields']['trdfminmax']} USD {&#36;GLOBALS['threadfields']['trdfprice']} For {&#36;GLOBALS['threadfields']['trdfet']}&lt;/td&gt;<br />
							&lt;/tr&gt;<br />
							&lt;tr&gt;<br />
								&lt;td width="99"&gt;Payment&lt;/td&gt;<br />
								&lt;td width="1"&gt;:&lt;/td&gt;<br />
								&lt;td&gt;{&#36;GLOBALS['threadfields']['trdfpayment']}&lt;/td&gt;<br />
							&lt;/tr&gt;<br />
							&lt;tr&gt;<br />
								&lt;td width="99"&gt;Status&lt;/td&gt;<br />
								&lt;td width="1"&gt;:&lt;/td&gt;<br />
								&lt;td&gt;{&#36;GLOBALS['threadfields']['trdfstatus']}&lt;/td&gt;<br />
							&lt;/tr&gt;<br />
							&lt;tr&gt;<br />
								&lt;td width="99"&gt;Category&lt;/td&gt;<br />
								&lt;td width="1"&gt;:&lt;/td&gt;<br />
								&lt;td&gt;{&#36;GLOBALS['threadfields']['trdfcat']}&lt;/td&gt;<br />
							&lt;/tr&gt;<br />
						&lt;/table&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="{&#36;altbg}" valign="top" colspan="3"&gt;<br />
						&lt;table width="100%"&gt;<br />
							&lt;tr&gt;<br />
								&lt;td&gt;<br />
									&lt;div id="pid_{&#36;post['pid']}" style="padding: 5px 0 5px 0;"&gt;<br />
										{&#36;GLOBALS['threadfields']['trdfaddinfo']}{&#36;post['message']}<br />
									&lt;/div&gt;<br />
									{&#36;post['attachments']}<br />
									{&#36;post['signature']}<br />
									&lt;div id="edited_by_{&#36;post['pid']}"&gt;{&#36;post['editedmsg']}&lt;/div&gt;<br />
								&lt;/td&gt;<br />
							&lt;/tr&gt;<br />
						&lt;/table&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr valign="bottom"&gt;<br />
					&lt;td align="right" class="tcat" colspan="3"&gt;<br />
						{&#36;post['button_edit']}{&#36;post['button_quickdelete']}{&#36;post['button_quote']}{&#36;post['button_multiquote']}{&#36;post['button_report']}{&#36;post['button_warn']}{&#36;post['button_reply_pm']}{&#36;post['button_replyall_pm']}{&#36;post['button_forward_pm']}{&#36;post['button_delete_pm']}&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
			&lt;/table&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
&lt;/table&gt;<br />
</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> trdf_postbit_iplogged_hiden<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;a href="moderation.php?action=getip&amp;amp;pid={&#36;post['pid']}"&gt;IP&lt;/a&gt;<br />
</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> trdf_post_subscription_method<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;tr&gt;&lt;td class="trow_sep" colspan="2"&gt;Trade Subscription&lt;/td&gt;&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td class="trow1 smalltext" colspan="2"&gt;<br />
	Your customer will respond to your trade by replying this thread directly. This feature will make you easier to notice if there is a new respond to your trade.&lt;br /&gt;&lt;br /&gt;<br />
	&lt;label&gt;&lt;input type="radio" name="postoptions[subscriptionmethod]" {&#36;postoptions_subscriptionmethod_dont} value="" style="vertical-align: middle;" /&gt; {&#36;lang-&gt;no_subscribe}. You will not receive any notification if there is a respond to this trade.&lt;/label&gt;&lt;br /&gt;<br />
	&lt;label&gt;&lt;input type="radio" name="postoptions[subscriptionmethod]" {&#36;postoptions_subscriptionmethod_none} value="none" style="vertical-align: middle;" /&gt; {&#36;lang-&gt;no_email_subscribe}. You can check if there is a new respond to this trade by clicking the View New Subscribed Posts link in the header. You can manage your subscription trade in your User CP.&lt;/label&gt;&lt;br /&gt;<br />
	&lt;label&gt;&lt;input type="radio" name="postoptions[subscriptionmethod]" {&#36;postoptions_subscriptionmethod_instant} value="instant" style="vertical-align: middle;" /&gt; {&#36;lang-&gt;instant_email_subscribe}. If you choose this option, you will receive email notification if there is a new respond to this trade. You can check if there is a new respond to this trade by clicking the View New Subscribed Posts link in the header too. You can manage your subscription trade in your User CP.&lt;/label&gt;&lt;br /&gt;<br />
&lt;/td&gt;<br />
&lt;/tr&gt;<br />
</code></div></div>
We add additional description here. I'm using <a href="http://mybbhacks.zingaburga.com/showthread.php?tid=357" target="_blank" rel="noopener" class="mycode_url">View New Subscribed Posts</a> plugin from Yumi. So, maybe some description has a relationship with that plugin (link in header). Modify it as our needs.<br />
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> trdf_showthread<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;{&#36;thread['subject']}&lt;/title&gt;<br />
{&#36;headerinclude}<br />
&lt;script type="text/javascript"&gt;<br />
&lt;!--<br />
	var quickdelete_confirm = "{&#36;lang-&gt;quickdelete_confirm}";<br />
// <img src="https://gidenler.me/images/smilies/sag_ok.png" alt="Sağ ok" title="Sağ ok" class="smilie smilie_54" /><br />
&lt;/script&gt;<br />
&lt;script type="text/javascript" src="jscripts/thread.js?ver=1400"&gt;&lt;/script&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
{&#36;header}<br />
{&#36;pollbox}<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" style="clear: both; width: 100%;"&gt;<br />
	&lt;tr&gt;<br />
		&lt;td align="center"&gt;<br />
			&lt;div class="largetext"&gt;<br />
				&lt;strong&gt;{&#36;thread['subject']}&lt;/strong&gt;<br />
			&lt;/div&gt;<br />
			{&#36;ratethread}<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;br class="clear" /&gt;<br />
&lt;div id="posts"&gt;<br />
	{&#36;first_post}<br />
	&lt;br /&gt;<br />
	&lt;div align="center"&gt;<br />
		&lt;strong&gt;&amp;laquo; &lt;a href="{&#36;next_oldest_link}"&gt;{&#36;lang-&gt;next_oldest}&lt;/a&gt; | &lt;a href="{&#36;next_newest_link}"&gt;{&#36;lang-&gt;next_newest}&lt;/a&gt; &amp;raquo;&lt;/strong&gt;<br />
	&lt;/div&gt;<br />
	&lt;br /&gt;<br />
	{&#36;search_thread}<br />
	&lt;strong&gt;Responds&lt;/strong&gt;<br />
	&lt;br class="clear" /&gt;<br />
	{&#36;posts}<br />
&lt;/div&gt;<br />
&lt;br class="clear" /&gt;<br />
&lt;div class="float_left"&gt;<br />
	{&#36;multipage}<br />
&lt;/div&gt;<br />
&lt;div style="padding-top: 4px;" class="float_right"&gt;<br />
	{&#36;newreply}<br />
&lt;/div&gt;<br />
&lt;br style="clear: both;" /&gt;<br />
{&#36;quickreply}<br />
{&#36;threadexbox}<br />
{&#36;similarthreads}<br />
&lt;br /&gt;<br />
&lt;div class="smalltext" align="center"&gt;<br />
	Trading Forum&lt;br /&gt;Powered By &lt;a href="http://mybbhacks.zingaburga.com"&gt;XThreads&lt;/a&gt; - &lt;a href="http://mybbhacks.zingaburga.com"&gt;MyBB Hacks&lt;/a&gt;<br />
&lt;/div&gt;<br />
&lt;br class="clear" /&gt;<br />
&lt;div class="float_left"&gt;<br />
	&lt;ul class="thread_tools"&gt;<br />
		&lt;li class="printable"&gt;&lt;a href="printthread.php?tid={&#36;tid}"&gt;{&#36;lang-&gt;view_printable}&lt;/a&gt;&lt;/li&gt;<br />
		&lt;li class="sendthread"&gt;&lt;a href="sendthread.php?tid={&#36;tid}"&gt;{&#36;lang-&gt;send_thread}&lt;/a&gt;&lt;/li&gt;<br />
		&lt;li class="subscription_{&#36;add_remove_subscription}"&gt;&lt;a href="usercp2.php?action={&#36;add_remove_subscription}subscription&amp;amp;tid={&#36;tid}&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;{&#36;add_remove_subscription_text}&lt;/a&gt;&lt;/li&gt;<br />
	&lt;/ul&gt;<br />
&lt;/div&gt;<br />
&lt;div class="float_right" style="text-align: right;"&gt;<br />
	{&#36;moderationoptions}<br />
	{&#36;forumjump}<br />
&lt;/div&gt;<br />
&lt;br style="clear: both;" /&gt;<br />
{&#36;footer}<br />
&lt;/body&gt;<br />
&lt;/html&gt;<br />
</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> trdf_showthread_noreplies<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;br class="clear" /&gt;<br />
&lt;div id="xthreads_noreplies"&gt;<br />
	&lt;table border="0" cellspacing="{&#36;GLOBALS['theme']['borderwidth']}" cellpadding="{&#36;GLOBALS['theme']['tablespace']}" class="tborder"&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="tcat"&gt;<br />
				&lt;em&gt;&lt;strong&gt;No responds yet&lt;/strong&gt;&lt;/em&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/table&gt;<br />
&lt;/div&gt;<br />
</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> trdf_showthread_ratethread<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;div align="center"&gt;<br />
	&lt;table&gt;<br />
		&lt;tr&gt;<br />
			&lt;td&gt;<br />
				&lt;script type="text/javascript" src="jscripts/rating.js?ver=1400"&gt;&lt;/script&gt;<br />
				&lt;div id="success_rating_{&#36;thread['tid']}"&gt;&lt;/div&gt;<br />
				&lt;div class="inline_rating"&gt;<br />
					&lt;ul class="star_rating{&#36;not_rated}" id="rating_thread_{&#36;thread['tid']}"&gt;<br />
						&lt;li style="width: {&#36;thread['width']}%" class="current_rating" id="current_rating_{&#36;thread['tid']}"&gt;{&#36;ratingvotesav}&lt;/li&gt;<br />
						&lt;li&gt;&lt;a class="one_star" title="{&#36;lang-&gt;one_star}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=1&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;1&lt;/a&gt;&lt;/li&gt;<br />
						&lt;li&gt;&lt;a class="two_stars" title="{&#36;lang-&gt;two_stars}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=2&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;2&lt;/a&gt;&lt;/li&gt;<br />
						&lt;li&gt;&lt;a class="three_stars" title="{&#36;lang-&gt;three_stars}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=3&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;3&lt;/a&gt;&lt;/li&gt;<br />
						&lt;li&gt;&lt;a class="four_stars" title="{&#36;lang-&gt;four_stars}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=4&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;4&lt;/a&gt;&lt;/li&gt;<br />
						&lt;li&gt;&lt;a class="five_stars" title="{&#36;lang-&gt;five_stars}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=5&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;5&lt;/a&gt;&lt;/li&gt;<br />
					&lt;/ul&gt;<br />
				&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/table&gt;<br />
&lt;/div&gt;<br />
</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> trdf_showthread_search<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;div class="float_right"&gt;<br />
	&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}"&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="tcat"&gt;<br />
				&lt;form action="search.php" method="post"&gt;<br />
					&lt;input type="hidden" name="action" value="thread" /&gt;<br />
					&lt;input type="hidden" name="tid" value="{&#36;thread['tid']}" /&gt;<br />
					&lt;input type="text" name="keywords" value="{&#36;lang-&gt;enter_keywords}" onfocus="if(this.value == '{&#36;lang-&gt;enter_keywords}') { this.value = ''; }" onblur="if(this.value=='') { this.value='{&#36;lang-&gt;enter_keywords}'; }" class="textbox" size="25" /&gt;<br />
					&lt;input type="submit" class="button" value="{&#36;lang-&gt;search_thread}" /&gt;<br />
				&lt;/form&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/table&gt;<br />
&lt;/div&gt;<br />
</code></div></div>
<br />
</li>
</ol>
All templates above based on MyBB 1.4.<br />
<span style="font-weight: bold;" class="mycode_b">Updated:</span> <a href="http://mybbhacks.zingaburga.com/showthread.php?tid=443&amp;pid=3363#pid3363" target="_blank" rel="noopener" class="mycode_url">03 Sept 2010</a> <a href="http://mybbhacks.zingaburga.com/showthread.php?tid=443&amp;pid=7936#pid7936" target="_blank" rel="noopener" class="mycode_url">29 May 2011</a><br />
<br />
Screenshots:<br />
<br />
<!-- start: postbit_attachments_attachment -->
<!-- start: attachment_icon -->
<img src="https://gidenler.me/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=969" target="_blank" title="trdf_st.jpg">trdf_st.jpg</a>
<img src="/images/v2/link_icon.png" alt="link" height="10" width="10" /> (Dosya Boyutu: 19.04 KB / İndirme Sayısı: 1)
<!-- end: postbit_attachments_attachment --><!-- start: postbit_attachments_attachment -->
<!-- start: attachment_icon -->
<img src="https://gidenler.me/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=970" target="_blank" title="trdf_index.jpg">trdf_index.jpg</a>
<img src="/images/v2/link_icon.png" alt="link" height="10" width="10" /> (Dosya Boyutu: 43.55 KB / İndirme Sayısı: 0)
<!-- end: postbit_attachments_attachment --><!-- start: postbit_attachments_attachment -->
<!-- start: attachment_icon -->
<img src="https://gidenler.me/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=971" target="_blank" title="trdf_cat_1.jpg">trdf_cat_1.jpg</a>
<img src="/images/v2/link_icon.png" alt="link" height="10" width="10" /> (Dosya Boyutu: 43.2 KB / İndirme Sayısı: 0)
<!-- end: postbit_attachments_attachment --><br />
<br />
Live Demo:<br />
<a href="http://www.14.mynie.co.cc/forumdisplay.php?fid=35" target="_blank" rel="noopener" class="mycode_url">http://www.14.mynie.co.cc/forumdisplay.php?fid=35</a>]]></description>
			<content:encoded><![CDATA[Requirement: <span style="font-weight: bold;" class="mycode_b"><a href="http://mybbhacks.zingaburga.com/showthread.php?tid=288" target="_blank" rel="noopener" class="mycode_url">XThreads</a></span><br />
<span style="font-weight: bold;" class="mycode_b">Updated:</span> <a href="http://mybbhacks.zingaburga.com/showthread.php?tid=443&amp;pid=12427#pid12427" target="_blank" rel="noopener" class="mycode_url">7 October 2012</a><br />
<br />
We will try to create a simple trading forum with XThreads.<br />
<br />
Here is an example for it:<br />
<br />
Edit/create a forum. XThreads settings:<br />
<ol type="1" class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Prefix:</span> trdf_<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Thread Grouping:</span> 2<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Show first post on every showthread page:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Enable XThreads' Inline Forum Search:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Settings Overrides:</span><ul class="mycode_list"><li>Setting: Show Thread Options -&gt; Post Layout<br />
</li>
<li>Value: horizontal<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>postlayout=horizontal</code></div></div></li>
</ul>
</li>
<li><span style="font-weight: bold;" class="mycode_b">Allow Blank Post Message:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Hide Forum:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
We need to put this forum url manually in our templates (e.g: <span style="font-style: italic;" class="mycode_i">header</span> template).<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Custom WOL Text:</span><ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Forum Display:</span> Viewing Trading Forum<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">New Thread:</span> Create A New Trade<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">New Reply:</span> Responding &lt;a href="{1}"&gt;{2}&lt;/a&gt; Trade<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Show Thread:</span> Viewing &lt;a href="{1}"&gt;{2}&lt;/a&gt; Trade<br />
</li>
</ul>
</li>
</ol>
<br />
Forum settings:<br />
We will use the forum rules as our Trading Forum "Index" page. Because we can use HTML in the forum rules, so, we can style it with HTML. Just use our creativity for it.<br />
Additional Forum Settings:<br />
<ol type="1" class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Forum Rules:</span> Display rules for this forum on the thread listing<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Title:</span> Welcome To Our Trading Forum<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Rules:</span> Type whatever we want here.<br />
</li>
</ol>
<br />
Custom Thread Fields Setting:<br />
<ol type="1" class="mycode_list"><li>Listbox for Buy / Sell:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Need To<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> trdftnt<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select our trading forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Listbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Width:</span> 10<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Height:</span> 1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Values List:</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>Buy<br />
Sell</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Allow Filtering:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Hide Input Field:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
</ul>
<br />
</li>
<li>Listbox for Minimum Or Maximum Value For Price:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Minimum Or Maximum Value<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> trdfminmax<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select our trading forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Listbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Width:</span> 15<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Height:</span> 1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Values List:</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>Minimum<br />
Maximum</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 2<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Hide Input Field:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
</ul>
<br />
</li>
<li>Textbox for Price:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Price<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> trdfprice<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select our trading forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Width:</span> 10<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 3<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format:</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;?=number_format({VALUE},2)?&gt;</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Text Mask Filter:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>^&#92;d+(&#92;.&#92;d{2})?&#36;</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Hide Input Field:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['trdfprice']}</span>.<br />
</li>
</ul>
<br />
</li>
<li>Listbox for Product Condition:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Condition<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> trdfcond<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select our trading forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Listbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Width:</span> 10<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Height:</span> 1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Values List:</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>New<br />
Used</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 4<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Allow Filtering:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Hide Input Field:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
</ul>
<br />
</li>
<li>Listbox for Trading Status:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Status<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> trdfstatus<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select our trading forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Listbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Width:</span> 15<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Height:</span> 1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Values List:</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>Open<br />
Closed</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 5<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Allow Filtering:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Hide Input Field:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
</ul>
<br />
</li>
<li>Textbox for quantity of product user wants to sell/buy:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Quantity<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> trdfquantity<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select our trading forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Maximum Text Length:</span> 3<br />
Max quantity: 999<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Width:</span> 3<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 6<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Default Value:</span> 1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Text Mask Filter:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>^([1-9]|[1-9][0-9]|[1-9][0-9][0-9])&#36;</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Hide Input Field:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['trdfquantity']}</span>.<br />
</li>
</ul>
<br />
</li>
<li>Listbox for choosing whether the min/max price is for total or for each, related to the product quantity:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Each Or Total<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> trdfet<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select our trading forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Listbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Width:</span> 10<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Height:</span> 1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Values List:</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>Total<br />
Each</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 7<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Hide Input Field:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
</ul>
<br />
</li>
<li>Listbox for product category:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Category<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> trdfcat<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select our trading forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Listbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Width:</span> 15<br />
Modify it as our needs. Depends on the long of the line in value list.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Height:</span> 1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Values List:</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>Hardware<br />
Software<br />
Other</code></div></div>Modify it as our needs.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 8<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Allow Filtering:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Hide Input Field:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
</ul>
<br />
</li>
<li>File Input for Product Image:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Product Image<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> trdfimg<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select our trading forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> File<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Valid File Extensions:</span> gif|png|jpg|jpeg<br />
Modify it as our needs. It is the extensions of image that can be uploaded.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Maximum File Size:</span> 102400<br />
Modify it as our needs. It is a maximum file size (in bytes) that can be uploaded.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 9<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Only accept uploaded images:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Minimum Image Dimensions:</span> 160x120<br />
Modify it as our needs. It is the minimum images dimension that user can upload.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Maximum Image Dimensions:</span> 1024x768<br />
Modify it as our needs. It is the maximum images dimension that user can upload.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Image Thumbnail Generation:</span> 80x60|120x90|160x120|320x240<br />
Modify it as our needs. Depends on what thumbnails dimension we want to display for the image.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Blank Replacement Value:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;img src="images/no_image.gif" alt="" title="" /&gt;</code></div></div>
Because this field is not required, so we need to use a "default" image. Modify it as our needs, depends on which image we want to use.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format:</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;img src="{URL}/thumb160x120" alt="" title="" /&gt;</code></div></div>
</li>
<li><span style="font-weight: bold;" class="mycode_b">Hide Input Field:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
Please remember that we put the description manually in <span style="font-style: italic;" class="mycode_i">newthread</span> and <span style="font-style: italic;" class="mycode_i">edit_post_first</span> template. So, if we change the settings, maybe we need to change the template too.<br />
</li>
</ul>
<br />
</li>
<li>Checkboxes for Payment Method:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Payment Method<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> trdfpayment<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select our trading forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Checkboxes<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Values List:</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>PayPal<br />
AlertPay<br />
Wire Transfer</code></div></div>Modify it as our needs.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 10<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Allow Filtering:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Multiple Value Delimiter:</span> <div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>,&amp;nbsp;</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Hide Input Field:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
Maybe it is better if we use images....<br />
</li>
</ul>
<br />
</li>
</ol>
<br />
Now, we need to create new templates in Global Template.<br />
Admin CP -&gt; Templates &amp; Style -&gt; Templates -&gt; Global Templates:<br />
<ol type="1" class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> trdf_editpost_first<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;{&#36;mybb-&gt;settings['bbname']} - {&#36;lang-&gt;edit_post}&lt;/title&gt;<br />
{&#36;headerinclude}<br />
&lt;script type="text/javascript" src="jscripts/post.js?ver=1400"&gt;&lt;/script&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
{&#36;header}<br />
{&#36;preview}<br />
{&#36;post_errors}<br />
{&#36;attacherror}<br />
&lt;form action="editpost.php?pid={&#36;pid}&amp;amp;processed=1" method="post" enctype="multipart/form-data" name="input"&gt;<br />
	&lt;input type="hidden" name="my_post_key" value="{&#36;mybb-&gt;post_code}" /&gt;<br />
	&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
		&lt;tr&gt;&lt;td class="thead" colspan="2"&gt;&lt;strong&gt;Edit Trade&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;<br />
		&lt;tr&gt;&lt;td class="tcat" colspan="2"&gt;&lt;strong&gt;Required Information&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow_sep" colspan="2"&gt;<br />
				&lt;div class="float_left"&gt;Need To:&lt;/div&gt;<br />
				&lt;div class="float_left" style="margin-left: 9px;"&gt;{&#36;tfinput['trdftnt']}&lt;/div&gt;<br />
				&lt;div class="float_left" style="margin-left: 19px;"&gt;Category:&lt;/div&gt;<br />
				&lt;div class="float_left" style="margin-left: 9px;"&gt;{&#36;tfinput['trdfcat']}&lt;/div&gt;<br />
				&lt;div class="float_left" style="margin-left: 19px;"&gt;Product Name:&lt;/div&gt;<br />
				&lt;div class="float_left" style="margin-left: 9px;"&gt;&lt;input type="text" class="textbox" name="subject" size="40" maxlength="85" value="{&#36;subject}" tabindex="1" /&gt;&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1 smalltext" colspan="2"&gt;<br />
				Please set whether you want to buy or sell a product. Choose a category of the product, and type the name of the product.<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow_sep" colspan="2"&gt;<br />
				&lt;div class="float_left"&gt;Quantity:&lt;/div&gt;<br />
				&lt;div class="float_left" style="margin-left: 9px;"&gt;{&#36;tfinput['trdfquantity']}&lt;/div&gt;<br />
				&lt;div class="float_left" style="margin-left: 19px;"&gt;Price:&lt;/div&gt;<br />
				&lt;div class="float_left" style="margin-left: 9px;"&gt;{&#36;tfinput['trdfminmax']} USD {&#36;tfinput['trdfprice']} for  {&#36;tfinput['trdfet']}&lt;/div&gt;<br />
				&lt;div class="float_left" style="margin-left: 19px;"&gt;Condition:&lt;/div&gt;<br />
				&lt;div class="float_left" style="margin-left: 9px;"&gt;{&#36;tfinput['trdfcond']}&lt;/div&gt;<br />
				&lt;div class="float_left" style="margin-left: 19px;"&gt;Status:&lt;/div&gt;<br />
				&lt;div class="float_left" style="margin-left: 9px;"&gt;{&#36;tfinput['trdfstatus']}&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1 smalltext" colspan="2"&gt;<br />
				You need to set the quantity of the product you want to buy/sell. You can set the minimum or maximum price for it. You need to set whether the price is for each product or it is a total price related to the quantity. Price format: x or x.xx You need to set whether the product you want to buy/sell is a new product or a used product. You can set whether the trading still available or not by set the status setting.<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;&lt;td class="tcat" colspan="2"&gt;&lt;strong&gt;Additional Information&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow2" width="1"&gt;<br />
				&lt;textarea name="message" id="message" rows="7" cols="60" tabindex="3"&gt;{&#36;message}&lt;/textarea&gt;<br />
			&lt;/td&gt;<br />
			&lt;td class="trow2 smalltext" valign="top"&gt;<br />
				If you have additional info about this trading, you can type it in the text area on the left.<br />
				&lt;br class="clear" /&gt;&lt;br /&gt;<br />
				If you have an image related to the product, you can upload it via the image uploader bellow. File format: jpeg or jpg or gif or png. Maximum file size: 100 kb. Maximum dimension: 1024 x 768 pixel. Minimum dimension: 320 x 240 pixel.<br />
				&lt;br class="clear" /&gt;<br />
				&lt;div align="center"&gt;{&#36;tfinput['trdfimg']}&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		{&#36;extra_threadfields}<br />
		&lt;tr&gt;&lt;td class="tcat" colspan="2"&gt;&lt;strong&gt;Miscellaneous&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;<br />
		&lt;tr&gt;&lt;td class="trow_sep" colspan="2"&gt;&lt;strong&gt;Payment Method&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow2 smalltext" valign="top" colspan="2"&gt;<br />
				You need to set what payment method you want to use for this trade. You can choose more than one payment method.<br />
				&lt;br class="clear" /&gt;<br />
				&lt;div&gt;{&#36;tfinput['trdfpayment']}&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		{&#36;subscriptionmethod}<br />
	&lt;/table&gt;<br />
	{&#36;attachbox}<br />
	&lt;br /&gt;<br />
	&lt;div align="center"&gt;&lt;input type="submit" class="button" name="submit" value="{&#36;lang-&gt;update_post}" tabindex="3" /&gt;  &lt;input type="submit" class="button" name="previewpost" value="{&#36;lang-&gt;preview_post}" tabindex="4" /&gt;&lt;/div&gt;<br />
	&lt;input type="hidden" name="action" value="do_editpost" /&gt;<br />
	&lt;input type="hidden" name="posthash" value="{&#36;posthash}" /&gt;<br />
	&lt;input type="hidden" name="attachmentaid" value="" /&gt;<br />
	&lt;input type="hidden" name="attachmentact" value="" /&gt;<br />
&lt;/form&gt;<br />
&lt;br /&gt;<br />
&lt;form action="editpost.php" method="post" name="editpost"&gt;<br />
	&lt;input type="hidden" name="my_post_key" value="{&#36;mybb-&gt;post_code}" /&gt;<br />
	&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="thead" colspan="3"&gt;&lt;strong&gt;{&#36;lang-&gt;delete_post}&lt;/strong&gt;&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1" style="white-space: nowrap"&gt;&lt;input type="checkbox" class="checkbox" name="delete" value="1" tabindex="9" /&gt; &lt;strong&gt;{&#36;lang-&gt;delete_q}&lt;/strong&gt;&lt;/td&gt;<br />
			&lt;td class="trow1" width="100%"&gt;{&#36;lang-&gt;delete_1}&lt;br /&gt;&lt;span class="smalltext"&gt;{&#36;lang-&gt;delete_2}&lt;/span&gt;&lt;/td&gt;<br />
			&lt;td class="trow1"&gt;&lt;input type="submit" class="button" name="submit" value="{&#36;lang-&gt;delete_now}" tabindex="10" /&gt;&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/table&gt;<br />
	&lt;input type="hidden" name="action" value="deletepost" /&gt;<br />
	&lt;input type="hidden" name="pid" value="{&#36;pid}" /&gt;<br />
&lt;/form&gt;<br />
{&#36;footer}<br />
&lt;/body&gt;<br />
&lt;/html&gt;<br />
</code></div></div>
Well, we can see that the title and description for our custom thread fields typed manually in this template. Modify it as our needs.<br />
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> trdf_forumdisplay<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;{&#36;mybb-&gt;settings['bbname']} - {&#36;foruminfo['name']} &lt;/title&gt;<br />
{&#36;headerinclude}<br />
{&#36;rssdiscovery}<br />
&lt;script type="text/javascript"&gt;<br />
&lt;!--<br />
	lang.no_new_posts = "{&#36;lang-&gt;no_new_posts}";<br />
	lang.click_mark_read = "{&#36;lang-&gt;click_mark_read}";<br />
// <img src="https://gidenler.me/images/smilies/sag_ok.png" alt="Sağ ok" title="Sağ ok" class="smilie smilie_54" /><br />
&lt;/script&gt;<br />
&lt;style type="text/css"&gt;<br />
.filtertf_active {<br />
	background: #FFF6BF;<br />
}<br />
&lt;/style&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
{&#36;header}<br />
{&#36;moderatedby}<br />
{&#36;usersbrowsing}<br />
{&#36;subforums}<br />
{&#36;threadslist}<br />
{&#36;footer}<br />
&lt;/body&gt;<br />
&lt;/html&gt;<br />
</code></div></div>
Just removing the rules from this template.<br />
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> trdf_forumdisplay_group_sep<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;/tr&gt;&lt;tr&gt;</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> trdf_forumdisplay_nothreads<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;td&gt;<br />
	&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="tcat"&gt;<br />
				&lt;strong&gt;No Trade&lt;/strong&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td align="center" class="trow1"&gt;<br />
				{&#36;lang-&gt;nothreads}<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/table&gt;<br />
&lt;/td&gt;<br />
</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> trdf_forumdisplay_rules<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="{&#36;filters_set['__all']['hiddencss']}"&gt;<br />
&lt;tr&gt;<br />
&lt;td class="thead"&gt;&lt;strong&gt;{&#36;foruminfo['rulestitle']}&lt;/strong&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td class="trow1"&gt;{&#36;foruminfo['rules']}&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;<br />
</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> trdf_forumdisplay_searchforum_inline<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;table border="0" cellspacing="{&#36;GLOBALS['theme']['borderwidth']}" cellpadding="{&#36;GLOBALS['theme']['tablespace']}" class="tborder" style="clear: both;"&gt;<br />
	&lt;tr&gt;&lt;td class="thead"&gt;&lt;strong&gt;Filter &amp;amp; Search Trade&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="trow1" align="center"&gt;<br />
			&lt;form action="forumdisplay.php" method="get"&gt;<br />
				&lt;select name="filtertf_trdfcat"&gt;<br />
					&lt;option value=""&gt;All&lt;/option&gt;<br />
					&lt;option value="Hardware"{&#36;GLOBALS['filters_set']['trdfcat']['selected']['Hardware']}&gt;Hardware&lt;/option&gt;<br />
					&lt;option value="Software"{&#36;GLOBALS['filters_set']['trdfcat']['selected']['Software']}&gt;Software&lt;/option&gt;<br />
					&lt;option value="Other"{&#36;GLOBALS['filters_set']['trdfcat']['selected']['Other']}&gt;Other&lt;/option&gt;<br />
				&lt;/select&gt;<br />
				&lt;select name="filtertf_trdftnt"&gt;<br />
					&lt;option value=""&gt;All&lt;/option&gt;<br />
					&lt;option value="Buy"{&#36;GLOBALS['filters_set']['trdftnt']['selected']['Buy']}&gt;Buy&lt;/option&gt;<br />
					&lt;option value="Sell"{&#36;GLOBALS['filters_set']['trdftnt']['selected']['Sell']}&gt;Sale&lt;/option&gt;<br />
				&lt;/select&gt;<br />
				&lt;select name="filtertf_trdfcond"&gt;<br />
					&lt;option value=""&gt;All&lt;/option&gt;<br />
					&lt;option value="New"{&#36;GLOBALS['filters_set']['trdfcond']['selected']['New']}&gt;New&lt;/option&gt;<br />
					&lt;option value="Used"{&#36;GLOBALS['filters_set']['trdfcond']['selected']['Used']}&gt;Used&lt;/option&gt;<br />
				&lt;/select&gt;<br />
				&lt;select name="filtertf_trdfpayment"&gt;<br />
					&lt;option value=""&gt;All&lt;/option&gt;<br />
					&lt;option value="PayPal"{&#36;GLOBALS['filters_set']['trdfpayment']['selected']['PayPal']}&gt;PayPal&lt;/option&gt;<br />
					&lt;option value="AlertPay"{&#36;GLOBALS['filters_set']['trdfpayment']['selected']['AlertPay']}&gt;AlertPay&lt;/option&gt;<br />
					&lt;option value="Wire Transfer"{&#36;GLOBALS['filters_set']['trdfpayment']['selected']['Wire Transfer']}&gt;Wire Transfer&lt;/option&gt;<br />
				&lt;/select&gt;<br />
				&lt;select name="filtertf_trdfstatus"&gt;<br />
					&lt;option value=""&gt;All&lt;/option&gt;<br />
					&lt;option value="Open"{&#36;GLOBALS['filters_set']['trdfstatus']['selected']['Open']}&gt;Open&lt;/option&gt;<br />
					&lt;option value="Closed"{&#36;GLOBALS['filters_set']['trdfstatus']['selected']['Closed']}&gt;Closed&lt;/option&gt;<br />
				&lt;/select&gt;<br />
				&lt;input type="text" class="textbox" name="search" size="35" value="{&#36;searchval}" /&gt; {&#36;gobutton}<br />
				&lt;input type="hidden" name="fid" value="{&#36;fid}" /&gt;<br />
				&lt;input type="hidden" name="sortby" value="{&#36;sortby}" /&gt;<br />
				&lt;input type="hidden" name="order" value="{&#36;sortordernow}" /&gt;<br />
				&lt;input type="hidden" name="datecut" value="{&#36;datecut}" /&gt;<br />
			&lt;/form&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;br /&gt;<br />
</code></div></div>
I'm not quite sure....<br />
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> trdf_forumdisplay_sticky_sep<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;td colspan="{&#36;colspan}" style="display: none;"&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
</code></div></div>
We need that td to bypass the validator <img src="https://gidenler.me/images/v2/smile/=D.gif" alt="Big Grin" title="Big Grin" class="smilie smilie_4" /><br />
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> trdf_forumdisplay_thread<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;td width="50%" valign="top"&gt;<br />
	&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="thead" colspan="{&#36;colspan}" align="center"&gt;<br />
				&lt;strong&gt;&lt;a href="{&#36;thread['threadlink']}" class="{&#36;inline_edit_class} {&#36;new_class}" id="tid_{&#36;inline_edit_tid}"&gt;{&#36;thread['subject']}&lt;/a&gt;&lt;/strong&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="tcat smalltext" align="center"&gt;<br />
				&lt;strong&gt;{&#36;thread['profilelink']}, {&#36;thread['threaddate']} at {&#36;thread['threadtime']}&lt;/strong&gt;<br />
			&lt;/td&gt;<br />
			{&#36;modbit}<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1" align="center" valign="middle" colspan="{&#36;colspan}"&gt;<br />
				&lt;table width="100%" border="0" style="height: 189px;"&gt;<br />
					&lt;tr&gt;<br />
						&lt;td width="1" align="center" valign="middle"&gt;<br />
							&lt;a href="{&#36;thread['threadlink']}"&gt;{&#36;GLOBALS['threadfields']['trdfimg']['value']}&lt;/a&gt;<br />
							{&#36;rating}<br />
						&lt;/td&gt;<br />
						&lt;td valign="top" align="center"&gt;<br />
							&lt;div align="center"&gt;&lt;strong&gt;Quantity:&lt;/strong&gt;&lt;/div&gt;<br />
							&lt;div align="center" style="color: green; font-size: 16px;"&gt;<br />
								&lt;strong&gt;{&#36;GLOBALS['threadfields']['trdfquantity']}&lt;/strong&gt;<br />
							&lt;/div&gt;<br />
							&lt;br /&gt;<br />
							&lt;div align="center"&gt;<br />
								&lt;strong&gt;{&#36;GLOBALS['threadfields']['trdfminmax']}&lt;br /&gt;&#36; {&#36;GLOBALS['threadfields']['trdfprice']} For {&#36;GLOBALS['threadfields']['trdfet']}!&lt;/strong&gt;<br />
							&lt;/div&gt;<br />
							&lt;br /&gt;<br />
							&lt;img src="{&#36;theme['imgdir']}/{&#36;GLOBALS['threadfields']['trdftnt']}.png" alt="Need To {&#36;GLOBALS['threadfields']['trdftnt']}" title="Need To {&#36;GLOBALS['threadfields']['trdftnt']}" /&gt;<br />
							&lt;img src="{&#36;theme['imgdir']}/{&#36;GLOBALS['threadfields']['trdfstatus']}.png" alt="{&#36;GLOBALS['threadfields']['trdfstatus']}" title="{&#36;GLOBALS['threadfields']['trdfstatus']}" /&gt;<br />
							&lt;img src="{&#36;theme['imgdir']}/{&#36;GLOBALS['threadfields']['trdfcond']}.png" alt="{&#36;GLOBALS['threadfields']['trdfcond']}" title="{&#36;GLOBALS['threadfields']['trdfcond']}" /&gt;<br />
							&lt;br /&gt;<br />
						&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
				&lt;/table&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="tcat" colspan="{&#36;colspan}" align="center"&gt;<br />
				&lt;strong&gt;Payment: {&#36;GLOBALS['threadfields']['trdfpayment']}&lt;/strong&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="tfoot" align="center" colspan="{&#36;colspan}"&gt;<br />
				&lt;strong&gt;{&#36;thread['views']} Views,<br />
				&lt;a href="javascript:MyBB.whoPosted({&#36;thread['tid']});"&gt;{&#36;thread['replies']}&lt;/a&gt;{&#36;unapproved_posts} Responds&lt;/strong&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/table&gt;<br />
&lt;/td&gt;<br />
</code></div></div>
Well, we are using image for the Buy/Sell, Status and Condition (line #32 - #34). Modify it as our needs.<br />
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> trdf_forumdisplay_threadlist<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;table border="0" width="100%" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}"&gt;<br />
	&lt;tr&gt;<br />
		&lt;td width="200" valign="top"&gt;<br />
			&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="clear: both;"&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="thead" colspan="2"&gt;<br />
						&lt;div align="center"&gt;&lt;strong&gt;&lt;a href="{&#36;forumurl}"&gt;{&#36;foruminfo['name']}&lt;/a&gt;&lt;/strong&gt;&lt;/div&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;&lt;td class="tcat"&gt;&lt;strong&gt;Product Category&lt;/strong&gt;&lt;/td&gt;{&#36;inlinemodcol}&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="trow1 {&#36;filters_set['trdfcat']['active']['Hardware']}" colspan="2"&gt;<br />
						&lt;a href="{&#36;forumurl_q}filtertf_trdfcat=Hardware"&gt;&lt;span&gt;&lt;strong&gt;Hardware&lt;/strong&gt;&lt;/span&gt;&lt;/a&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="trow1 {&#36;filters_set['trdfcat']['active']['Software']}" colspan="2"&gt;<br />
						&lt;a href="{&#36;forumurl_q}filtertf_trdfcat=Software"&gt;&lt;span&gt;&lt;strong&gt;Software&lt;/strong&gt;&lt;/span&gt;&lt;/a&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="trow1 {&#36;filters_set['trdfcat']['active']['Other']}" colspan="2"&gt;<br />
						&lt;a href="{&#36;forumurl_q}filtertf_trdfcat=Other"&gt;&lt;span&gt;&lt;strong&gt;Other&lt;/strong&gt;&lt;/span&gt;&lt;/a&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;&lt;td class="tcat" colspan="2"&gt;&lt;strong&gt;Need To&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="trow1 {&#36;filters_set['trdftnt']['active']['Buy']}" colspan="2"&gt;<br />
						&lt;a href="{&#36;forumurl_q}filtertf_trdftnt=Buy"&gt;&lt;span&gt;&lt;strong&gt;Buy&lt;/strong&gt;&lt;/span&gt;&lt;/a&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="trow1 {&#36;filters_set['trdftnt']['active']['Sell']}" colspan="2"&gt;<br />
						&lt;a href="{&#36;forumurl_q}filtertf_trdftnt=Sell"&gt;&lt;span&gt;&lt;strong&gt;Sell&lt;/strong&gt;&lt;/span&gt;&lt;/a&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;&lt;td class="tcat" colspan="2"&gt;&lt;strong&gt;Condition&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="trow1 {&#36;filters_set['trdfcond']['active']['New']}" colspan="2"&gt;<br />
						&lt;a href="{&#36;forumurl_q}filtertf_trdfcond=New"&gt;&lt;span&gt;&lt;strong&gt;New&lt;/strong&gt;&lt;/span&gt;&lt;/a&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="trow1 {&#36;filters_set['trdfcond']['active']['Used']}" colspan="2"&gt;<br />
						&lt;a href="{&#36;forumurl_q}filtertf_trdfcond=Used"&gt;&lt;span&gt;&lt;strong&gt;Used&lt;/strong&gt;&lt;/span&gt;&lt;/a&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;&lt;td class="tcat" colspan="2"&gt;&lt;strong&gt;Payment Method&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="trow1 {&#36;filters_set['trdfpayment']['active']['PayPal']}" colspan="2"&gt;<br />
						&lt;a href="{&#36;forumurl_q}filtertf_trdfpayment=PayPal"&gt;&lt;span&gt;&lt;strong&gt;PayPal&lt;/strong&gt;&lt;/span&gt;&lt;/a&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="trow1 {&#36;filters_set['trdfpayment']['active']['AlertPay']}" colspan="2"&gt;<br />
						&lt;a href="{&#36;forumurl_q}filtertf_trdfpayment=AlertPay"&gt;&lt;span&gt;&lt;strong&gt;AlertPay&lt;/strong&gt;&lt;/span&gt;&lt;/a&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="trow1 {&#36;filters_set['trdfpayment']['active']['Wire Transfer']}" colspan="2"&gt;<br />
						&lt;a href="{&#36;forumurl_q}filtertf_trdfpayment=Wire Transfer"&gt;&lt;span&gt;&lt;strong&gt;Wire Transfer&lt;/strong&gt;&lt;/span&gt;&lt;/a&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;&lt;td class="tcat" colspan="2"&gt;&lt;strong&gt;Status&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="trow1 {&#36;filters_set['trdfstatus']['active']['Open']}" colspan="2"&gt;<br />
						&lt;a href="{&#36;forumurl_q}filtertf_trdfstatus=Open"&gt;&lt;span&gt;&lt;strong&gt;Open&lt;/strong&gt;&lt;/span&gt;&lt;/a&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="trow1 {&#36;filters_set['trdfstatus']['active']['Closed']}" colspan="2"&gt;<br />
						&lt;a href="{&#36;forumurl_q}filtertf_trdfstatus=Closed"&gt;&lt;span&gt;&lt;strong&gt;Closed&lt;/strong&gt;&lt;/span&gt;&lt;/a&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
			&lt;/table&gt;<br />
			&lt;br /&gt;<br />
			&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="{&#36;filters_set['__all']['visiblecss']}"&gt;<br />
				&lt;tr&gt;&lt;td class="thead"&gt;&lt;strong&gt;Trade Sorter&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;<br />
				&lt;tr&gt;&lt;td class="tcat"&gt;&lt;strong&gt;Sort By&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="trow1"&gt;<br />
						&lt;strong&gt;&lt;a href="{&#36;sorturl}&amp;amp;sortby=subject&amp;amp;order=asc"&gt;{&#36;lang-&gt;thread}&lt;/a&gt; {&#36;orderarrow['subject']}&lt;/strong&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="trow1"&gt;<br />
						&lt;strong&gt;&lt;a href="{&#36;sorturl}&amp;amp;sortby=starter&amp;amp;order=asc"&gt;{&#36;lang-&gt;author}&lt;/a&gt; {&#36;orderarrow['starter']}&lt;/strong&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="trow1"&gt;<br />
						&lt;strong&gt;&lt;a href="{&#36;sorturl}&amp;amp;sortby=replies&amp;amp;order=desc"&gt;{&#36;lang-&gt;replies}&lt;/a&gt; {&#36;orderarrow['replies']}&lt;/strong&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="trow1"&gt;<br />
						&lt;strong&gt;&lt;a href="{&#36;sorturl}&amp;amp;sortby=views&amp;amp;order=desc"&gt;{&#36;lang-&gt;views}&lt;/a&gt; {&#36;orderarrow['views']}&lt;/strong&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="trow1"&gt;<br />
						&lt;strong&gt;&lt;a href="{&#36;sorturl}&amp;amp;sortby=lastpost&amp;amp;order=desc"&gt;{&#36;lang-&gt;lastpost}&lt;/a&gt; {&#36;orderarrow['lastpost']}&lt;/strong&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				{&#36;ratingcol}<br />
			&lt;/table&gt;<br />
			&lt;br /&gt;<br />
			&lt;div&gt;<br />
				{&#36;newthread}<br />
			&lt;/div&gt;<br />
		&lt;/td&gt;<br />
		&lt;td valign="top"&gt;<br />
			{&#36;searchforum}<br />
			{&#36;rules}<br />
			&lt;table border="0" width="100%" style="{&#36;filters_set['__all']['visiblecss']}"&gt;<br />
				&lt;tr&gt;<br />
					{&#36;threads}{&#36;nullthreads}<br />
				&lt;/tr&gt;<br />
			&lt;/table&gt;<br />
			&lt;div class="float_left"&gt;<br />
				{&#36;multipage}<br />
			&lt;/div&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;br style="clear: both;" /&gt;<br />
&lt;br /&gt;<br />
&lt;div class="float_right" style="text-align: right;"&gt;<br />
	{&#36;inlinemod}<br />
&lt;/div&gt;<br />
&lt;br style="clear: both" /&gt;<br />
&lt;div class="smalltext" align="center"&gt;<br />
	{&#36;foruminfo['name']}&lt;br /&gt;Powered By &lt;a href="http://mybbhacks.zingaburga.com"&gt;XThreads&lt;/a&gt; - &lt;a href="http://mybbhacks.zingaburga.com"&gt;MyBB Hacks&lt;/a&gt;<br />
&lt;/div&gt;<br />
{&#36;inline_edit_js}<br />
</code></div></div>
All filtering URL laid here. If we changed the value list, maybe we need to change this template too. And we put the forum rule variable in this template.<br />
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> trdf_forumdisplay_threadlist_rating<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;tr&gt;<br />
	&lt;td class="trow1"&gt;<br />
		&lt;strong&gt;&lt;a href="{&#36;sorturl}&amp;amp;sortby=rating&amp;amp;order=desc"&gt;{&#36;lang-&gt;rating}&lt;/a&gt; {&#36;orderarrow['rating']}&lt;/strong&gt;<br />
		&lt;script type="text/javascript" src="jscripts/rating.js?ver=1400"&gt;&lt;/script&gt;<br />
		&lt;script type="text/javascript"&gt;<br />
		&lt;!--<br />
			lang.stars = new Array();<br />
			lang.stars[1] = "{&#36;lang-&gt;one_star}";<br />
			lang.stars[2] = "{&#36;lang-&gt;two_stars}";<br />
			lang.stars[3] = "{&#36;lang-&gt;three_stars}";<br />
			lang.stars[4] = "{&#36;lang-&gt;four_stars}";<br />
			lang.stars[5] = "{&#36;lang-&gt;five_stars}";<br />
		// <img src="https://gidenler.me/images/smilies/sag_ok.png" alt="Sağ ok" title="Sağ ok" class="smilie smilie_54" /><br />
		&lt;/script&gt;<br />
	&lt;/td&gt;<br />
&lt;/tr&gt;<br />
</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> trdf_forumdisplay_threads_sep<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;td colspan="{&#36;colspan}" style="display: none;"&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
</code></div></div>
We need the td to bypass the validator if there is a global announcement and there is no sticky thread in this forum <img src="https://gidenler.me/images/v2/smile/=D.gif" alt="Big Grin" title="Big Grin" class="smilie smilie_4" /><br />
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> trdf_forumdisplay_thread_modbit<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;td width="1" class="tcat" align="center" style="white-space: nowrap"&gt;&lt;input type="checkbox" class="checkbox" name="inlinemod_{&#36;multitid}" id="inlinemod_{&#36;multitid}" value="1" {&#36;inlinecheck}  /&gt;&lt;/td&gt;<br />
</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> trdf_forumdisplay_thread_null<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;td width="50%" valign="top"&gt;<br />
	&lt;table border="0" cellspacing="{&#36;GLOBALS['theme']['borderwidth']}" cellpadding="{&#36;GLOBALS['theme']['tablespace']}" class="tborder"&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="thead" align="center"&gt;<br />
				&lt;strong&gt;{&#36;GLOBALS['mybb']-&gt;settings['bbname']} Trading Forum&lt;/strong&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="tcat smalltext" align="center"&gt;<br />
				&lt;strong&gt;Buy Or Sell A Product In Our Trading Forum&lt;/strong&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1" align="center"&gt;<br />
				&lt;strong&gt;Curently, we have {&#36;GLOBALS['threadcount']} Transactions!&lt;/strong&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/table&gt;<br />
&lt;/td&gt;<br />
</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> trdf_forumdisplay_thread_rating<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;div align="center" class="{&#36;bgcolor}" id="rating_table_{&#36;thread['tid']}"&gt;<br />
	&lt;table&gt;<br />
		&lt;tr&gt;<br />
			&lt;td&gt;<br />
				&lt;ul class="star_rating{&#36;not_rated}" id="rating_thread_{&#36;thread['tid']}"&gt;<br />
					&lt;li style="width: {&#36;thread['width']}%" class="current_rating" id="current_rating_{&#36;thread['tid']}"&gt;{&#36;ratingvotesav}&lt;/li&gt;<br />
				&lt;/ul&gt;<br />
				&lt;script type="text/javascript"&gt;<br />
				&lt;!--<br />
					Rating.build_forumdisplay({&#36;thread['tid']}, { width: '{&#36;thread['width']}', extra_class: '{&#36;not_rated}', current_average: '{&#36;ratingvotesav}' });<br />
				// <img src="https://gidenler.me/images/smilies/sag_ok.png" alt="Sağ ok" title="Sağ ok" class="smilie smilie_54" /><br />
				&lt;/script&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/table&gt;<br />
&lt;/div&gt;<br />
</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> trdf_newreply_modoptions<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;tr&gt;<br />
&lt;td class="trow2" valign="top" colspan="2"&gt;&lt;div&gt;&lt;strong&gt;{&#36;lang-&gt;mod_options}&lt;/strong&gt;&lt;/div&gt;<br />
&lt;label&gt;&lt;input type="checkbox" class="checkbox" name="modoptions[closethread]" value="1"{&#36;closecheck} /&gt;&amp;nbsp;{&#36;lang-&gt;close_thread}&lt;/label&gt;&lt;br /&gt;<br />
&lt;label&gt;&lt;input type="checkbox" class="checkbox" name="modoptions[stickthread]" value="1"{&#36;stickycheck} /&gt;&amp;nbsp;{&#36;lang-&gt;stick_thread}&lt;/label&gt;<br />
&lt;/span&gt;<br />
&lt;/td&gt;<br />
&lt;/tr&gt;<br />
</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> trdf_newthread<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;{&#36;lang-&gt;newthread_in}&lt;/title&gt;<br />
{&#36;headerinclude}<br />
&lt;script type="text/javascript" src="jscripts/post.js?ver=1400"&gt;&lt;/script&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
{&#36;header}<br />
{&#36;preview}<br />
{&#36;thread_errors}<br />
{&#36;attacherror}<br />
&lt;form action="newthread.php?fid={&#36;fid}&amp;amp;processed=1" method="post" enctype="multipart/form-data" name="input"&gt;<br />
	&lt;input type="hidden" name="my_post_key" value="{&#36;mybb-&gt;post_code}" /&gt;<br />
	&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
		&lt;tr&gt;&lt;td class="thead" colspan="2"&gt;&lt;strong&gt;New Trade&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;<br />
		&lt;tr&gt;&lt;td class="tcat" colspan="2"&gt;&lt;strong&gt;Required Information&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow_sep" colspan="2"&gt;<br />
				&lt;div class="float_left"&gt;Need To:&lt;/div&gt;<br />
				&lt;div class="float_left" style="margin-left: 9px;"&gt;{&#36;tfinput['trdftnt']}&lt;/div&gt;<br />
				&lt;div class="float_left" style="margin-left: 19px;"&gt;Category:&lt;/div&gt;<br />
				&lt;div class="float_left" style="margin-left: 9px;"&gt;{&#36;tfinput['trdfcat']}&lt;/div&gt;<br />
				&lt;div class="float_left" style="margin-left: 19px;"&gt;Product Name:&lt;/div&gt;<br />
				&lt;div class="float_left" style="margin-left: 9px;"&gt;&lt;input type="text" class="textbox" name="subject" size="40" maxlength="85" value="{&#36;subject}" tabindex="1" /&gt;&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1 smalltext" colspan="2"&gt;<br />
				Please set whether you want to buy or sell a product. Choose a category of the product, and type the name of the product.<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow_sep" colspan="2"&gt;<br />
				&lt;div class="float_left"&gt;Quantity:&lt;/div&gt;<br />
				&lt;div class="float_left" style="margin-left: 9px;"&gt;{&#36;tfinput['trdfquantity']}&lt;/div&gt;<br />
				&lt;div class="float_left" style="margin-left: 19px;"&gt;Price:&lt;/div&gt;<br />
				&lt;div class="float_left" style="margin-left: 9px;"&gt;{&#36;tfinput['trdfminmax']} USD {&#36;tfinput['trdfprice']} for  {&#36;tfinput['trdfet']}&lt;/div&gt;<br />
				&lt;div class="float_left" style="margin-left: 19px;"&gt;Condition:&lt;/div&gt;<br />
				&lt;div class="float_left" style="margin-left: 9px;"&gt;{&#36;tfinput['trdfcond']}&lt;/div&gt;<br />
				&lt;div class="float_left" style="margin-left: 19px;"&gt;Status:&lt;/div&gt;<br />
				&lt;div class="float_left" style="margin-left: 9px;"&gt;{&#36;tfinput['trdfstatus']}&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1 smalltext" colspan="2"&gt;<br />
				You need to set the quantity of the product you want to buy/sell. You can set the minimum or maximum price for it. You need to set whether the price is for each product or it is a total price related to the quantity. Price format: x or x.xx You need to set whether the product you want to buy/sell is a new product or a used product. You can set whether the trading still available or not by set the status setting.<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;&lt;td class="tcat" colspan="2"&gt;&lt;strong&gt;Additional Information&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow2" width="1"&gt;<br />
				&lt;textarea name="message" id="message" rows="7" cols="60" tabindex="2"&gt;{&#36;message}&lt;/textarea&gt;<br />
			&lt;/td&gt;<br />
			&lt;td class="trow2 smalltext" valign="top"&gt;<br />
				If you have additional info about this trading, you can type it in the text area on the left.<br />
				&lt;br class="clear" /&gt;&lt;br /&gt;<br />
				If you have an image related to the product, you can upload it via the image uploader bellow. File format: jpeg or jpg or gif or png. Maximum file size: 100 kb. Maximum dimension: 1024 x 768 pixel. Minimum dimension: 320 x 240 pixel.<br />
				&lt;br class="clear" /&gt;<br />
				&lt;div align="center"&gt;{&#36;tfinput['trdfimg']}&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		{&#36;extra_threadfields}<br />
		&lt;tr&gt;&lt;td class="tcat" colspan="2"&gt;&lt;strong&gt;Miscellaneous&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;<br />
		&lt;tr&gt;&lt;td class="trow_sep" colspan="2"&gt;&lt;strong&gt;Payment Method&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow2 smalltext" valign="top" colspan="2"&gt;<br />
				You need to set what payment method you want to use for this trade. You can choose more than one payment method.<br />
				&lt;br class="clear" /&gt;<br />
				&lt;div&gt;{&#36;tfinput['trdfpayment']}&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		{&#36;subscriptionmethod}<br />
		{&#36;modoptions}<br />
		{&#36;captcha}<br />
	&lt;/table&gt;<br />
	&lt;br /&gt;<br />
	&lt;div style="text-align:center"&gt;&lt;input type="submit" class="button" name="submit" value="{&#36;lang-&gt;post_thread}" tabindex="4" accesskey="s" /&gt;  &lt;input type="submit" class="button" name="previewpost" value="{&#36;lang-&gt;preview_post}" tabindex="5" /&gt;{&#36;savedraftbutton}&lt;/div&gt;<br />
	&lt;input type="hidden" name="action" value="do_newthread" /&gt;<br />
	&lt;input type="hidden" name="posthash" value="{&#36;posthash}" /&gt;<br />
	&lt;input type="hidden" name="attachmentaid" value="" /&gt;<br />
	&lt;input type="hidden" name="attachmentact" value="" /&gt;<br />
	&lt;input type="hidden" name="quoted_ids" value="{&#36;quoted_ids}" /&gt;<br />
	&lt;input type="hidden" name="tid" value="{&#36;tid}" /&gt;<br />
	{&#36;editdraftpid}<br />
&lt;/form&gt;<br />
{&#36;forumrules}<br />
{&#36;footer}<br />
&lt;/body&gt;<br />
&lt;/html&gt;<br />
</code></div></div>
Again, we put the title and description for fields manually in this template. If we change the fields, maybe we need to edit this template too.<br />
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> trdf_postbit<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
{&#36;ignore_bit}<br />
&lt;a name="pid{&#36;post['pid']}" id="pid{&#36;post['pid']}"&gt;&lt;/a&gt;<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="{&#36;post_extra_style} {&#36;post_visibility}" id="post_{&#36;post['pid']}"&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="tcat"&gt;<br />
			{&#36;post['posturl']}&lt;strong&gt;&lt;span&gt;&lt;a href="{&#36;post['profilelink_plain']}" id="profile_{&#36;post['pid']}"&gt;{&#36;post['username_formatted']}&lt;/a&gt;&lt;/span&gt;&lt;/strong&gt; {&#36;post['onlinestatus']} - &lt;span class="smalltext"&gt;{&#36;post['postdate']} {&#36;post['posttime']}&lt;/span&gt;<br />
			&lt;div id="profile_{&#36;post['pid']}_popup" class="popup_menu" style="display: none;"&gt;<br />
				&lt;div class="popup_item_container"&gt;<br />
					&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
						&lt;tr&gt;<br />
							&lt;td class="trow1" valign="top" align="center"&gt;<br />
								&lt;div&gt;&lt;strong&gt;{&#36;post['profilelink']}&lt;/strong&gt;&lt;/div&gt;<br />
								&lt;div class="smalltext"&gt;{&#36;post['useravatar']}&lt;/div&gt;<br />
								&lt;div class="smalltext"&gt;{&#36;post['usertitle']}&lt;/div&gt;<br />
								&lt;div class="smalltext"&gt;{&#36;post['userstars']}&lt;/div&gt;<br />
								&lt;div class="smalltext"&gt;{&#36;post['groupimage']}&lt;/div&gt;<br />
								&lt;div class="smalltext"&gt;{&#36;post['user_details']}&lt;/div&gt;<br />
							&lt;/td&gt;<br />
						&lt;/tr&gt;<br />
						&lt;tr&gt;<br />
							&lt;td class="tcat" align="center"&gt;<br />
								{&#36;post['button_email']}{&#36;post['button_pm']}{&#36;post['button_www']}{&#36;post['button_find']}<br />
							&lt;/td&gt;<br />
						&lt;/tr&gt;<br />
					&lt;/table&gt;<br />
				&lt;/div&gt;<br />
			&lt;/div&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="{&#36;altbg}" valign="top"&gt;<br />
			&lt;table width="100%"&gt;<br />
				&lt;tr&gt;<br />
					&lt;td&gt;<br />
						&lt;div class="smalltext" style="float: left; margin-right: 9px;" id="post_meta_{&#36;post['pid']}"&gt;<br />
							&lt;strong&gt;{&#36;post['iplogged']}&lt;/strong&gt;<br />
						&lt;/div&gt;<br />
						&lt;div class=" float_left smalltext" style="margin-right: 9px;"&gt;<br />
							&lt;strong&gt;{&#36;post['icon']}{&#36;post['subject']} {&#36;post['subject_extra']}&lt;/strong&gt;<br />
						&lt;/div&gt;<br />
						&lt;div id="edited_by_{&#36;post['pid']}"&gt;{&#36;post['editedmsg']}&lt;/div&gt;<br />
						&lt;br /&gt;<br />
						&lt;div id="pid_{&#36;post['pid']}" style="padding: 5px 0 5px 0;"&gt;<br />
							{&#36;post['message']}<br />
						&lt;/div&gt;<br />
						{&#36;post['attachments']}<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
			&lt;/table&gt;<br />
			&lt;div class="float_right smalltext"&gt;<br />
				{&#36;post['button_edit']}{&#36;post['button_quickdelete']}{&#36;post['button_quote']}{&#36;post['button_multiquote']}{&#36;post['button_report']}{&#36;post['button_warn']}<br />
			&lt;/div&gt;<br />
			&lt;noscript&gt;<br />
				&lt;div class="float_left smalltext"&gt;<br />
					{&#36;post['button_email']}{&#36;post['button_pm']}{&#36;post['button_www']}{&#36;post['button_find']}<br />
				&lt;/div&gt;<br />
			&lt;/noscript&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;script type="text/javascript"&gt;<br />
// &lt;!--<br />
	if(use_xmlhttprequest == "1")<br />
	{<br />
		new PopupMenu("profile_{&#36;post['pid']}");<br />
	}<br />
// <img src="https://gidenler.me/images/smilies/sag_ok.png" alt="Sağ ok" title="Sağ ok" class="smilie smilie_54" /><br />
&lt;/script&gt;<br />
</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> trdf_postbit_first<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
{&#36;ignore_bit}<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" width="100%" style="{&#36;post_extra_style} {&#36;post_visibility}" id="post_{&#36;post['pid']}"&gt;<br />
	&lt;tr&gt;<br />
		&lt;td width="300" valign="top" style="text-align: center;"&gt;<br />
			&lt;table border="0" cellspacing="0" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="tcat" align="center"&gt;<br />
						&lt;span class="smalltext"&gt;{&#36;post['postdate']} {&#36;post['posttime']}&lt;/span&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="{&#36;altbg}" width="250" valign="top" style="text-align: center;"&gt;<br />
						&lt;a name="pid{&#36;post['pid']}" id="pid{&#36;post['pid']}"&gt;&lt;/a&gt;<br />
						&lt;strong&gt;&lt;span class="largetext"&gt;{&#36;post['profilelink']}&lt;/span&gt;&lt;/strong&gt; {&#36;post['onlinestatus']}&lt;br /&gt;<br />
						{&#36;post['useravatar']}&lt;br /&gt;<br />
						&lt;span class="smalltext"&gt;<br />
							{&#36;post['usertitle']}&lt;br /&gt;<br />
							{&#36;post['userstars']}<br />
							{&#36;post['groupimage']}&lt;br /&gt;<br />
							{&#36;post['user_details']}<br />
						&lt;/span&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="tcat" align="center"&gt;<br />
						&lt;span class="smalltext"&gt;<br />
							{&#36;post['button_email']}{&#36;post['button_pm']}{&#36;post['button_www']}{&#36;post['button_find']}<br />
						&lt;/span&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
			&lt;/table&gt;<br />
		&lt;/td&gt;<br />
		&lt;td valign="top"&gt;<br />
			&lt;table border="0" cellspacing="0" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="tcat" colspan="3"&gt;<br />
						{&#36;post['posturl']}<br />
						&lt;span class="smalltext"&gt;<br />
							&lt;strong&gt;{&#36;post['icon']}{&#36;GLOBALS['threadfields']['trdftnt']}: {&#36;post['subject_extra']}&lt;/strong&gt;<br />
						&lt;/span&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="{&#36;altbg}" width="160" valign="bottom" align="center"&gt;<br />
						&lt;a href="{&#36;GLOBALS['threadfields']['trdfimg']['url']}"&gt;{&#36;GLOBALS['threadfields']['trdfimg']['value']}&lt;/a&gt;<br />
					&lt;/td&gt;<br />
					&lt;td class="{&#36;altbg}" valign="top"&gt;<br />
						&lt;table width="100%" border="0"&gt;<br />
							&lt;tr&gt;<br />
								&lt;td colspan="3" align="center"&gt;<br />
									&lt;div class="float_right" id="post_meta_{&#36;post['pid']}"&gt;<br />
										&lt;strong&gt;{&#36;post['iplogged']}&lt;/strong&gt;<br />
									&lt;/div&gt;<br />
									&lt;div class="largetext"&gt;&lt;strong&gt;{&#36;post['subject']}&lt;/strong&gt;&lt;/div&gt;<br />
								&lt;/td&gt;<br />
							&lt;/tr&gt;<br />
							&lt;tr&gt;<br />
								&lt;td&gt;Quantity&lt;/td&gt;<br />
								&lt;td&gt;:&lt;/td&gt;<br />
								&lt;td&gt;{&#36;GLOBALS['threadfields']['trdfquantity']}&lt;/td&gt;<br />
							&lt;/tr&gt;<br />
							&lt;tr&gt;<br />
								&lt;td&gt;Condition&lt;/td&gt;<br />
								&lt;td&gt;:&lt;/td&gt;<br />
								&lt;td&gt;{&#36;GLOBALS['threadfields']['trdfcond']}&lt;/td&gt;<br />
							&lt;/tr&gt;<br />
							&lt;tr&gt;<br />
								&lt;td width="99"&gt;Price&lt;/td&gt;<br />
<br />
<br />
								&lt;td width="1"&gt;:&lt;/td&gt;<br />
								&lt;td&gt;{&#36;GLOBALS['threadfields']['trdfminmax']} USD {&#36;GLOBALS['threadfields']['trdfprice']} For {&#36;GLOBALS['threadfields']['trdfet']}&lt;/td&gt;<br />
							&lt;/tr&gt;<br />
							&lt;tr&gt;<br />
								&lt;td width="99"&gt;Payment&lt;/td&gt;<br />
								&lt;td width="1"&gt;:&lt;/td&gt;<br />
								&lt;td&gt;{&#36;GLOBALS['threadfields']['trdfpayment']}&lt;/td&gt;<br />
							&lt;/tr&gt;<br />
							&lt;tr&gt;<br />
								&lt;td width="99"&gt;Status&lt;/td&gt;<br />
								&lt;td width="1"&gt;:&lt;/td&gt;<br />
								&lt;td&gt;{&#36;GLOBALS['threadfields']['trdfstatus']}&lt;/td&gt;<br />
							&lt;/tr&gt;<br />
							&lt;tr&gt;<br />
								&lt;td width="99"&gt;Category&lt;/td&gt;<br />
								&lt;td width="1"&gt;:&lt;/td&gt;<br />
								&lt;td&gt;{&#36;GLOBALS['threadfields']['trdfcat']}&lt;/td&gt;<br />
							&lt;/tr&gt;<br />
						&lt;/table&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr&gt;<br />
					&lt;td class="{&#36;altbg}" valign="top" colspan="3"&gt;<br />
						&lt;table width="100%"&gt;<br />
							&lt;tr&gt;<br />
								&lt;td&gt;<br />
									&lt;div id="pid_{&#36;post['pid']}" style="padding: 5px 0 5px 0;"&gt;<br />
										{&#36;GLOBALS['threadfields']['trdfaddinfo']}{&#36;post['message']}<br />
									&lt;/div&gt;<br />
									{&#36;post['attachments']}<br />
									{&#36;post['signature']}<br />
									&lt;div id="edited_by_{&#36;post['pid']}"&gt;{&#36;post['editedmsg']}&lt;/div&gt;<br />
								&lt;/td&gt;<br />
							&lt;/tr&gt;<br />
						&lt;/table&gt;<br />
					&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
				&lt;tr valign="bottom"&gt;<br />
					&lt;td align="right" class="tcat" colspan="3"&gt;<br />
						{&#36;post['button_edit']}{&#36;post['button_quickdelete']}{&#36;post['button_quote']}{&#36;post['button_multiquote']}{&#36;post['button_report']}{&#36;post['button_warn']}{&#36;post['button_reply_pm']}{&#36;post['button_replyall_pm']}{&#36;post['button_forward_pm']}{&#36;post['button_delete_pm']}&lt;/td&gt;<br />
				&lt;/tr&gt;<br />
			&lt;/table&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
&lt;/table&gt;<br />
</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> trdf_postbit_iplogged_hiden<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;a href="moderation.php?action=getip&amp;amp;pid={&#36;post['pid']}"&gt;IP&lt;/a&gt;<br />
</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> trdf_post_subscription_method<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;tr&gt;&lt;td class="trow_sep" colspan="2"&gt;Trade Subscription&lt;/td&gt;&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td class="trow1 smalltext" colspan="2"&gt;<br />
	Your customer will respond to your trade by replying this thread directly. This feature will make you easier to notice if there is a new respond to your trade.&lt;br /&gt;&lt;br /&gt;<br />
	&lt;label&gt;&lt;input type="radio" name="postoptions[subscriptionmethod]" {&#36;postoptions_subscriptionmethod_dont} value="" style="vertical-align: middle;" /&gt; {&#36;lang-&gt;no_subscribe}. You will not receive any notification if there is a respond to this trade.&lt;/label&gt;&lt;br /&gt;<br />
	&lt;label&gt;&lt;input type="radio" name="postoptions[subscriptionmethod]" {&#36;postoptions_subscriptionmethod_none} value="none" style="vertical-align: middle;" /&gt; {&#36;lang-&gt;no_email_subscribe}. You can check if there is a new respond to this trade by clicking the View New Subscribed Posts link in the header. You can manage your subscription trade in your User CP.&lt;/label&gt;&lt;br /&gt;<br />
	&lt;label&gt;&lt;input type="radio" name="postoptions[subscriptionmethod]" {&#36;postoptions_subscriptionmethod_instant} value="instant" style="vertical-align: middle;" /&gt; {&#36;lang-&gt;instant_email_subscribe}. If you choose this option, you will receive email notification if there is a new respond to this trade. You can check if there is a new respond to this trade by clicking the View New Subscribed Posts link in the header too. You can manage your subscription trade in your User CP.&lt;/label&gt;&lt;br /&gt;<br />
&lt;/td&gt;<br />
&lt;/tr&gt;<br />
</code></div></div>
We add additional description here. I'm using <a href="http://mybbhacks.zingaburga.com/showthread.php?tid=357" target="_blank" rel="noopener" class="mycode_url">View New Subscribed Posts</a> plugin from Yumi. So, maybe some description has a relationship with that plugin (link in header). Modify it as our needs.<br />
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> trdf_showthread<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;{&#36;thread['subject']}&lt;/title&gt;<br />
{&#36;headerinclude}<br />
&lt;script type="text/javascript"&gt;<br />
&lt;!--<br />
	var quickdelete_confirm = "{&#36;lang-&gt;quickdelete_confirm}";<br />
// <img src="https://gidenler.me/images/smilies/sag_ok.png" alt="Sağ ok" title="Sağ ok" class="smilie smilie_54" /><br />
&lt;/script&gt;<br />
&lt;script type="text/javascript" src="jscripts/thread.js?ver=1400"&gt;&lt;/script&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
{&#36;header}<br />
{&#36;pollbox}<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" style="clear: both; width: 100%;"&gt;<br />
	&lt;tr&gt;<br />
		&lt;td align="center"&gt;<br />
			&lt;div class="largetext"&gt;<br />
				&lt;strong&gt;{&#36;thread['subject']}&lt;/strong&gt;<br />
			&lt;/div&gt;<br />
			{&#36;ratethread}<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;br class="clear" /&gt;<br />
&lt;div id="posts"&gt;<br />
	{&#36;first_post}<br />
	&lt;br /&gt;<br />
	&lt;div align="center"&gt;<br />
		&lt;strong&gt;&amp;laquo; &lt;a href="{&#36;next_oldest_link}"&gt;{&#36;lang-&gt;next_oldest}&lt;/a&gt; | &lt;a href="{&#36;next_newest_link}"&gt;{&#36;lang-&gt;next_newest}&lt;/a&gt; &amp;raquo;&lt;/strong&gt;<br />
	&lt;/div&gt;<br />
	&lt;br /&gt;<br />
	{&#36;search_thread}<br />
	&lt;strong&gt;Responds&lt;/strong&gt;<br />
	&lt;br class="clear" /&gt;<br />
	{&#36;posts}<br />
&lt;/div&gt;<br />
&lt;br class="clear" /&gt;<br />
&lt;div class="float_left"&gt;<br />
	{&#36;multipage}<br />
&lt;/div&gt;<br />
&lt;div style="padding-top: 4px;" class="float_right"&gt;<br />
	{&#36;newreply}<br />
&lt;/div&gt;<br />
&lt;br style="clear: both;" /&gt;<br />
{&#36;quickreply}<br />
{&#36;threadexbox}<br />
{&#36;similarthreads}<br />
&lt;br /&gt;<br />
&lt;div class="smalltext" align="center"&gt;<br />
	Trading Forum&lt;br /&gt;Powered By &lt;a href="http://mybbhacks.zingaburga.com"&gt;XThreads&lt;/a&gt; - &lt;a href="http://mybbhacks.zingaburga.com"&gt;MyBB Hacks&lt;/a&gt;<br />
&lt;/div&gt;<br />
&lt;br class="clear" /&gt;<br />
&lt;div class="float_left"&gt;<br />
	&lt;ul class="thread_tools"&gt;<br />
		&lt;li class="printable"&gt;&lt;a href="printthread.php?tid={&#36;tid}"&gt;{&#36;lang-&gt;view_printable}&lt;/a&gt;&lt;/li&gt;<br />
		&lt;li class="sendthread"&gt;&lt;a href="sendthread.php?tid={&#36;tid}"&gt;{&#36;lang-&gt;send_thread}&lt;/a&gt;&lt;/li&gt;<br />
		&lt;li class="subscription_{&#36;add_remove_subscription}"&gt;&lt;a href="usercp2.php?action={&#36;add_remove_subscription}subscription&amp;amp;tid={&#36;tid}&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;{&#36;add_remove_subscription_text}&lt;/a&gt;&lt;/li&gt;<br />
	&lt;/ul&gt;<br />
&lt;/div&gt;<br />
&lt;div class="float_right" style="text-align: right;"&gt;<br />
	{&#36;moderationoptions}<br />
	{&#36;forumjump}<br />
&lt;/div&gt;<br />
&lt;br style="clear: both;" /&gt;<br />
{&#36;footer}<br />
&lt;/body&gt;<br />
&lt;/html&gt;<br />
</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> trdf_showthread_noreplies<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;br class="clear" /&gt;<br />
&lt;div id="xthreads_noreplies"&gt;<br />
	&lt;table border="0" cellspacing="{&#36;GLOBALS['theme']['borderwidth']}" cellpadding="{&#36;GLOBALS['theme']['tablespace']}" class="tborder"&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="tcat"&gt;<br />
				&lt;em&gt;&lt;strong&gt;No responds yet&lt;/strong&gt;&lt;/em&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/table&gt;<br />
&lt;/div&gt;<br />
</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> trdf_showthread_ratethread<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;div align="center"&gt;<br />
	&lt;table&gt;<br />
		&lt;tr&gt;<br />
			&lt;td&gt;<br />
				&lt;script type="text/javascript" src="jscripts/rating.js?ver=1400"&gt;&lt;/script&gt;<br />
				&lt;div id="success_rating_{&#36;thread['tid']}"&gt;&lt;/div&gt;<br />
				&lt;div class="inline_rating"&gt;<br />
					&lt;ul class="star_rating{&#36;not_rated}" id="rating_thread_{&#36;thread['tid']}"&gt;<br />
						&lt;li style="width: {&#36;thread['width']}%" class="current_rating" id="current_rating_{&#36;thread['tid']}"&gt;{&#36;ratingvotesav}&lt;/li&gt;<br />
						&lt;li&gt;&lt;a class="one_star" title="{&#36;lang-&gt;one_star}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=1&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;1&lt;/a&gt;&lt;/li&gt;<br />
						&lt;li&gt;&lt;a class="two_stars" title="{&#36;lang-&gt;two_stars}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=2&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;2&lt;/a&gt;&lt;/li&gt;<br />
						&lt;li&gt;&lt;a class="three_stars" title="{&#36;lang-&gt;three_stars}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=3&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;3&lt;/a&gt;&lt;/li&gt;<br />
						&lt;li&gt;&lt;a class="four_stars" title="{&#36;lang-&gt;four_stars}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=4&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;4&lt;/a&gt;&lt;/li&gt;<br />
						&lt;li&gt;&lt;a class="five_stars" title="{&#36;lang-&gt;five_stars}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=5&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;5&lt;/a&gt;&lt;/li&gt;<br />
					&lt;/ul&gt;<br />
				&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/table&gt;<br />
&lt;/div&gt;<br />
</code></div></div>
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> trdf_showthread_search<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;div class="float_right"&gt;<br />
	&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}"&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="tcat"&gt;<br />
				&lt;form action="search.php" method="post"&gt;<br />
					&lt;input type="hidden" name="action" value="thread" /&gt;<br />
					&lt;input type="hidden" name="tid" value="{&#36;thread['tid']}" /&gt;<br />
					&lt;input type="text" name="keywords" value="{&#36;lang-&gt;enter_keywords}" onfocus="if(this.value == '{&#36;lang-&gt;enter_keywords}') { this.value = ''; }" onblur="if(this.value=='') { this.value='{&#36;lang-&gt;enter_keywords}'; }" class="textbox" size="25" /&gt;<br />
					&lt;input type="submit" class="button" value="{&#36;lang-&gt;search_thread}" /&gt;<br />
				&lt;/form&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/table&gt;<br />
&lt;/div&gt;<br />
</code></div></div>
<br />
</li>
</ol>
All templates above based on MyBB 1.4.<br />
<span style="font-weight: bold;" class="mycode_b">Updated:</span> <a href="http://mybbhacks.zingaburga.com/showthread.php?tid=443&amp;pid=3363#pid3363" target="_blank" rel="noopener" class="mycode_url">03 Sept 2010</a> <a href="http://mybbhacks.zingaburga.com/showthread.php?tid=443&amp;pid=7936#pid7936" target="_blank" rel="noopener" class="mycode_url">29 May 2011</a><br />
<br />
Screenshots:<br />
<br />
<!-- start: postbit_attachments_attachment -->
<!-- start: attachment_icon -->
<img src="https://gidenler.me/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=969" target="_blank" title="trdf_st.jpg">trdf_st.jpg</a>
<img src="/images/v2/link_icon.png" alt="link" height="10" width="10" /> (Dosya Boyutu: 19.04 KB / İndirme Sayısı: 1)
<!-- end: postbit_attachments_attachment --><!-- start: postbit_attachments_attachment -->
<!-- start: attachment_icon -->
<img src="https://gidenler.me/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=970" target="_blank" title="trdf_index.jpg">trdf_index.jpg</a>
<img src="/images/v2/link_icon.png" alt="link" height="10" width="10" /> (Dosya Boyutu: 43.55 KB / İndirme Sayısı: 0)
<!-- end: postbit_attachments_attachment --><!-- start: postbit_attachments_attachment -->
<!-- start: attachment_icon -->
<img src="https://gidenler.me/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=971" target="_blank" title="trdf_cat_1.jpg">trdf_cat_1.jpg</a>
<img src="/images/v2/link_icon.png" alt="link" height="10" width="10" /> (Dosya Boyutu: 43.2 KB / İndirme Sayısı: 0)
<!-- end: postbit_attachments_attachment --><br />
<br />
Live Demo:<br />
<a href="http://www.14.mynie.co.cc/forumdisplay.php?fid=35" target="_blank" rel="noopener" class="mycode_url">http://www.14.mynie.co.cc/forumdisplay.php?fid=35</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Suggestion Forum]]></title>
			<link>https://gidenler.me/thread-667.html</link>
			<pubDate>Fri, 14 Nov 2025 19:14:46 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://gidenler.me/member.php?action=profile&uid=2">Hasan</a>]]></dc:creator>
			<guid isPermaLink="false">https://gidenler.me/thread-667.html</guid>
			<description><![CDATA[Requirement: <span style="font-weight: bold;" class="mycode_b"><a href="http://mybbhacks.zingaburga.com/showthread.php?tid=288" target="_blank" rel="noopener" class="mycode_url">XThreads</a></span><br />
<span style="font-weight: bold;" class="mycode_b">Last Updated: <a href="http://mybbhacks.zingaburga.com/showthread.php?tid=708&amp;pid=12432#pid12432" target="_blank" rel="noopener" class="mycode_url">7 October 2012</a></span><br />
<br />
This idea based on the MyBB Ideas section. When viewing the section, I think we can use XThreads to create a similar system for our forum. But we will try to make it for more general purpose.<br />
<br />
Here is a simple example to do that:<br />
<br />
Create or edit a forum with these settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Prefix:</span> xtsug_<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Show first post on every showthread page:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Settings Overrides:</span><ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Setting:</span> Showthread Options -&gt; Post Layout<br />
<span style="font-weight: bold;" class="mycode_b">Value:</span> horizontal<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>postlayout=horizontal</code></div></div></li>
</ul>
</li>
<li><span style="font-weight: bold;" class="mycode_b">Custom WOL Text:</span><ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Forum Display:</span> <div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>Viewing &lt;a href="{1}"&gt;{2}&lt;/a&gt;</code></div></div>
</li>
<li><span style="font-weight: bold;" class="mycode_b">New Thread:</span> <div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>Submitting a new suggestion</code></div></div>
</li>
<li><span style="font-weight: bold;" class="mycode_b">New Reply:</span> <div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>Commenting &lt;a href="{1}"&gt;{2}&lt;/a&gt; suggestion</code></div></div>
</li>
<li><span style="font-weight: bold;" class="mycode_b">Show Thread:</span> <div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>Reading &lt;a href="{1}"&gt;{2}&lt;/a&gt; suggestion</code></div></div>
</li>
</ul>
Maybe we can disable the img and video tag and the post icons here (optional).<br />
</li>
</ul>
<br />
Create a Custom Thread Fields with these settings:<br />
AdminCP -&gt; Configuration -&gt; Custom Thread Fields<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Status<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> xtsug_status<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select our suggestion forum.'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Option Buttons<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Values List:</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>Confirmed<br />
Implemented<br />
Rejected</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Administrators<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Allow Filtering:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Blank Replacement Value</span> and <span style="font-weight: bold;" class="mycode_b">Display Format:</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;if &#36;thread['replies'] &gt; 0 then&gt;&lt;div style="padding-top: 9px;"&gt;&lt;a href="{&#36;threadurl}#posts"&gt;&lt;img src="images/comment.jpg" alt="" title="" /&gt; {&#36;thread['replies']}&lt;if &#36;thread['replies'] == 1 then&gt; Comment&lt;else&gt; Comments&lt;/if&gt;&lt;/a&gt;&lt;/div&gt;&lt;/if&gt;</code></div></div>This status can be used to set whether a suggestion already implemented, or already confirmed and in progress to be implemented, or rejected (we don't want to implement it). This status can be used for a very simple bug report.<br />
</li>
</ul>
<br />
Create new templates in Global Template:<br />
AdminCP -&gt; Templates &amp; Style -&gt; Templates -&gt; Global Templates<br />
<ol type="1" class="mycode_list"><li>xtsug_forumdisplay_thread<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;tr&gt;<br />
	{&#36;rating}<br />
	&lt;td class="trow1{&#36;thread_type_class}"&gt;<br />
		&lt;div&gt;<br />
			&lt;strong&gt;&lt;a href="{&#36;thread['threadlink']}" class="{&#36;inline_edit_class}" id="tid_{&#36;inline_edit_tid}"&gt;{&#36;thread['subject']}&lt;/a&gt;&lt;/strong&gt;<br />
		&lt;/div&gt;<br />
		&lt;div class="author smalltext" style="padding-top: 3px;"&gt;<br />
			Submitted by: {&#36;thread['profilelink']}, {&#36;thread['threaddate']}, {&#36;thread['threadtime']}<br />
		&lt;/div&gt;<br />
		&lt;div style="padding-top: 7px;"&gt;{&#36;thread['postpreview']}&lt;/div&gt;<br />
		{&#36;GLOBALS['threadfields']['xtsug_status']}<br />
	&lt;/td&gt;<br />
	{&#36;modbit}<br />
&lt;/tr&gt;<br />
</code></div></div>
<br />
</li>
<li>xtsug_forumdisplay_threadlist<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="thead" colspan="{&#36;colspan}"&gt;<br />
			&lt;div class="largetext" style="text-align: center;"&gt;&lt;strong&gt;{&#36;foruminfo['name']}&lt;/strong&gt;&lt;/div&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="tcat" colspan="2"&gt;<br />
			&lt;div class="float_right"&gt;<br />
				&lt;strong&gt;Filter:&lt;/strong&gt;<br />
				&lt;strong&gt;&lt;a href="{&#36;forumurl_q}filtertf_xtsug_status=Confirmed"&gt;Confirmed&lt;/a&gt;&lt;/strong&gt; |<br />
				&lt;strong&gt;&lt;a href="{&#36;forumurl_q}filtertf_xtsug_status=Implemented"&gt;Implemented&lt;/a&gt;&lt;/strong&gt; |<br />
				&lt;strong&gt;&lt;a href="{&#36;forumurl_q}filtertf_xtsug_status=Rejected"&gt;Rejected&lt;/a&gt;&lt;/strong&gt;<br />
			&lt;/div&gt;<br />
			&lt;div class="float_left"&gt;<br />
				&lt;strong&gt;Sort:&lt;/strong&gt;<br />
				&lt;strong&gt;&lt;a href="{&#36;sorturl}&amp;amp;sortby=started&amp;amp;order=asc"&gt;Recent Suggested&lt;/a&gt;&lt;/strong&gt; |<br />
				&lt;strong&gt;&lt;a href="{&#36;sorturl}&amp;amp;sortby=replies&amp;amp;order=desc"&gt;Most Comments&lt;/a&gt;&lt;/strong&gt;<br />
				{&#36;ratingcol}<br />
			&lt;/div&gt;<br />
		&lt;/td&gt;<br />
		{&#36;inlinemodcol}<br />
	&lt;/tr&gt;<br />
	{&#36;selectall}<br />
	{&#36;announcementlist}<br />
	{&#36;threads}{&#36;nullthreads}<br />
&lt;/table&gt;<br />
&lt;div class="float_left"&gt;<br />
	{&#36;multipage}<br />
&lt;/div&gt;<br />
&lt;div class="float_right" style="margin-top: 4px;"&gt;<br />
	{&#36;newthread}<br />
&lt;/div&gt;<br />
&lt;br style="clear: both;" /&gt;<br />
&lt;br /&gt;<br />
&lt;div class="float_right" style="text-align: right;"&gt;<br />
	{&#36;inlinemod}<br />
	{&#36;searchforum}<br />
	{&#36;forumjump}<br />
&lt;/div&gt;<br />
&lt;br style="clear: both" /&gt;<br />
&lt;div class="smalltext" align="center"&gt;<br />
	{&#36;foruminfo['name']}&lt;br /&gt;Powered By &lt;a href="http://mybbhacks.zingaburga.com"&gt;XThreads&lt;/a&gt; - &lt;a href="http://mybbhacks.zingaburga.com"&gt;MyBB Hacks&lt;/a&gt;<br />
&lt;/div&gt;<br />
{&#36;inline_edit_js}<br />
</code></div></div>
<br />
</li>
<li>xtsug_forumdisplay_threadlist_rating<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&amp;nbsp;| &lt;strong&gt;&lt;a href="{&#36;sorturl}&amp;amp;sortby=numratings&amp;amp;order=desc"&gt;Votes&lt;/a&gt;&lt;/strong&gt;<br />
</code></div></div>
<br />
</li>
<li>xtsug_forumdisplay_thread_rating<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;td align="center" class="{&#36;bgcolor}{&#36;thread_type_class}" id="rating_table_{&#36;thread['tid']}" width="1" valign="top"&gt;<br />
	&lt;a href="ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=1&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;&lt;img src="images/rate.jpg" alt="Vote" title="Vote" /&gt;&lt;/a&gt;<br />
	&lt;div&gt;&lt;strong&gt;{&#36;thread['numratings']}&lt;/strong&gt; Votes&lt;/div&gt;<br />
&lt;/td&gt;<br />
</code></div></div>
<br />
</li>
<li>xtsug_postbit<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
{&#36;ignore_bit}<br />
&lt;a name="pid{&#36;post['pid']}" id="pid{&#36;post['pid']}"&gt;&lt;/a&gt;<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" style="{&#36;post_extra_style} {&#36;post_visibility}" id="post_{&#36;post['pid']}" class="tborder"&gt;<br />
	&lt;tbody&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1 {&#36;unapproved_shade}"&gt;<br />
				&lt;div class="float_left smalltext"&gt;<br />
					by: &lt;a href="{&#36;post['profilelink_plain']}" id="profile_{&#36;post['pid']}"&gt;{&#36;post['username_formatted']}&lt;/a&gt;<br />
					&lt;br /&gt;{&#36;post['postdate']}, {&#36;post['posttime']} &lt;span id="edited_by_{&#36;post['pid']}"&gt;{&#36;post['editedmsg']}&lt;/span&gt;<br />
				&lt;/div&gt;<br />
				{&#36;post['posturl']}<br />
				&lt;div class="post_body clear" id="pid_{&#36;post['pid']}"&gt;{&#36;post['message']}&lt;/div&gt;<br />
				&lt;div class="post_meta" id="post_meta_{&#36;post['pid']}"&gt;{&#36;post['iplogged']}&lt;/div&gt;<br />
				&lt;div id="profile_{&#36;post['pid']}_popup" class="popup_menu" style="display: none;"&gt;<br />
					&lt;div class="popup_item_container"&gt;<br />
						&lt;table border="0" cellspacing="0" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
							&lt;tr&gt;<br />
								&lt;td class="trow1" valign="top" align="center"&gt;<br />
									&lt;div&gt;&lt;strong&gt;{&#36;post['profilelink']}&lt;/strong&gt;&lt;/div&gt;<br />
									&lt;div class="smalltext"&gt;{&#36;post['useravatar']}&lt;/div&gt;<br />
									&lt;div class="smalltext"&gt;{&#36;post['usertitle']}&lt;/div&gt;<br />
									&lt;div class="smalltext"&gt;{&#36;post['userstars']}&lt;/div&gt;<br />
									&lt;div class="smalltext"&gt;{&#36;post['groupimage']}&lt;/div&gt;<br />
									&lt;div class="smalltext"&gt;{&#36;post['user_details']}&lt;/div&gt;<br />
								&lt;/td&gt;<br />
							&lt;/tr&gt;<br />
							&lt;tr&gt;<br />
								&lt;td class="tcat" align="center"&gt;<br />
									{&#36;post['button_email']}<br />
									{&#36;post['button_pm']}<br />
									{&#36;post['button_www']}<br />
									{&#36;post['button_find']}<br />
									{&#36;post['button_rep']}<br />
								&lt;/td&gt;<br />
							&lt;/tr&gt;<br />
						&lt;/table&gt;<br />
					&lt;/div&gt;<br />
				&lt;/div&gt;<br />
				&lt;div class="post_management_buttons float_right clear"&gt;<br />
					{&#36;post['button_edit']}<br />
					{&#36;post['button_quickdelete']}<br />
					{&#36;post['button_quote']}<br />
					{&#36;post['button_multiquote']}<br />
					{&#36;post['button_report']}<br />
					{&#36;post['button_warn']}<br />
				&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/tbody&gt;<br />
&lt;/table&gt;<br />
&lt;script type="text/javascript"&gt;<br />
// &lt;!--<br />
	if(use_xmlhttprequest == "1")<br />
	{<br />
		new PopupMenu("profile_{&#36;post['pid']}");<br />
	}<br />
// <img src="https://gidenler.me/images/smilies/sag_ok.png" alt="Sağ ok" title="Sağ ok" class="smilie smilie_54" /><br />
&lt;/script&gt;<br />
</code></div></div>
<br />
</li>
<li>xtsug_postbit_first<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
{&#36;ignore_bit}<br />
&lt;a name="pid{&#36;post['pid']}" id="pid{&#36;post['pid']}"&gt;&lt;/a&gt;<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" style="{&#36;post_extra_style} {&#36;post_visibility}" id="post_{&#36;post['pid']}" width="100%"&gt;<br />
	&lt;tbody&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1 {&#36;unapproved_shade}"&gt;<br />
				&lt;div class="float_left smalltext"&gt;<br />
					Submitted by: &lt;a href="{&#36;post['profilelink_plain']}" id="profile_{&#36;post['pid']}"&gt;{&#36;post['username_formatted']}&lt;/a&gt;, {&#36;post['postdate']}, {&#36;post['posttime']} &lt;span id="edited_by_{&#36;post['pid']}"&gt;{&#36;post['editedmsg']}&lt;/span&gt;<br />
				&lt;/div&gt;<br />
				{&#36;post['posturl']}<br />
				&lt;div class="post_body clear" id="pid_{&#36;post['pid']}"&gt;{&#36;post['message']}&lt;/div&gt;<br />
				&lt;div class="post_meta" id="post_meta_{&#36;post['pid']}"&gt;{&#36;post['iplogged']}&lt;/div&gt;<br />
				&lt;div id="profile_{&#36;post['pid']}_popup" class="popup_menu" style="display: none;"&gt;<br />
					&lt;div class="popup_item_container"&gt;<br />
						&lt;table border="0" cellspacing="0" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
							&lt;tr&gt;<br />
								&lt;td class="trow1" valign="top" align="center"&gt;<br />
									&lt;div&gt;&lt;strong&gt;{&#36;post['profilelink']}&lt;/strong&gt;&lt;/div&gt;<br />
									&lt;div class="smalltext"&gt;{&#36;post['useravatar']}&lt;/div&gt;<br />
									&lt;div class="smalltext"&gt;{&#36;post['usertitle']}&lt;/div&gt;<br />
									&lt;div class="smalltext"&gt;{&#36;post['userstars']}&lt;/div&gt;<br />
									&lt;div class="smalltext"&gt;{&#36;post['groupimage']}&lt;/div&gt;<br />
									&lt;div class="smalltext"&gt;{&#36;post['user_details']}&lt;/div&gt;<br />
								&lt;/td&gt;<br />
							&lt;/tr&gt;<br />
							&lt;tr&gt;<br />
								&lt;td class="tcat" align="center"&gt;<br />
									{&#36;post['button_email']}<br />
									{&#36;post['button_pm']}<br />
									{&#36;post['button_www']}<br />
									{&#36;post['button_find']}<br />
									{&#36;post['button_rep']}<br />
								&lt;/td&gt;<br />
							&lt;/tr&gt;<br />
						&lt;/table&gt;<br />
					&lt;/div&gt;<br />
				&lt;/div&gt;<br />
				&lt;div class="post_management_buttons float_right clear"&gt;<br />
					{&#36;post['button_edit']}<br />
					{&#36;post['button_quickdelete']}<br />
					{&#36;post['button_quote']}<br />
					{&#36;post['button_multiquote']}<br />
					{&#36;post['button_report']}<br />
					{&#36;post['button_warn']}<br />
				&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/tbody&gt;<br />
&lt;/table&gt;<br />
&lt;script type="text/javascript"&gt;<br />
// &lt;!--<br />
	if(use_xmlhttprequest == "1")<br />
	{<br />
		new PopupMenu("profile_{&#36;post['pid']}");<br />
	}<br />
// <img src="https://gidenler.me/images/smilies/sag_ok.png" alt="Sağ ok" title="Sağ ok" class="smilie smilie_54" /><br />
&lt;/script&gt;<br />
</code></div></div>
<br />
</li>
<li>xtsug_postbit_first_posturl<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;div style="float: right; width: auto; vertical-align: top"&gt;{&#36;post['inlinecheck']}&lt;/div&gt;<br />
</code></div></div>
<br />
</li>
<li>xtsug_postbit_posturl<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;div style="float: right; width: auto; vertical-align: top"&gt;&lt;span class="smalltext"&gt;&lt;strong&gt;&lt;a href="{&#36;post['postlink']}#pid{&#36;post['pid']}"&gt;#{&#36;postcounter}&lt;/a&gt;&lt;/strong&gt;{&#36;post['inlinecheck']}&lt;/span&gt;&lt;/div&gt;<br />
</code></div></div>
<br />
</li>
<li>xtsug_showthread<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;{&#36;thread['subject']}&lt;/title&gt;<br />
{&#36;headerinclude}<br />
&lt;script type="text/javascript"&gt;<br />
&lt;!--<br />
	var quickdelete_confirm = "{&#36;lang-&gt;quickdelete_confirm}";<br />
// <img src="https://gidenler.me/images/smilies/sag_ok.png" alt="Sağ ok" title="Sağ ok" class="smilie smilie_54" /><br />
&lt;/script&gt;<br />
&lt;script type="text/javascript" src="jscripts/thread.js?ver=1600"&gt;&lt;/script&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
{&#36;header}<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="clear: both;"&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="thead" colspan="2"&gt;<br />
			&lt;div&gt;<br />
				&lt;strong&gt;{&#36;thread['subject']}&lt;/strong&gt;<br />
			&lt;/div&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
	&lt;tr&gt;<br />
		{&#36;ratethread}<br />
		&lt;td class="trow1"&gt;<br />
			{&#36;first_post}<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;br class="clear" /&gt;<br />
&lt;div class="largetext float_right clear"&gt;Comments&lt;/div&gt;<br />
&lt;div id="posts" class="clear"&gt;<br />
	{&#36;posts}<br />
&lt;/div&gt;<br />
&lt;div class="float_left"&gt;<br />
	{&#36;multipage}<br />
&lt;/div&gt;<br />
&lt;div style="padding-top: 4px;" class="float_right"&gt;<br />
	{&#36;newreply}<br />
&lt;/div&gt;<br />
&lt;br style="clear: both;" /&gt;<br />
{&#36;quickreply}<br />
{&#36;threadexbox}<br />
{&#36;similarthreads}<br />
&lt;br /&gt;<br />
&lt;div class="float_right" style="text-align: right;"&gt;<br />
	{&#36;moderationoptions}<br />
	{&#36;forumjump}<br />
&lt;/div&gt;<br />
&lt;br style="clear: both;" /&gt;<br />
{&#36;usersbrowsing}<br />
&lt;div class="smalltext" align="center"&gt;<br />
	{&#36;forum['name']}&lt;br /&gt;Powered By &lt;a href="http://mybbhacks.zingaburga.com"&gt;XThreads&lt;/a&gt; - &lt;a href="http://mybbhacks.zingaburga.com"&gt;MyBB Hacks&lt;/a&gt;<br />
&lt;/div&gt;<br />
{&#36;footer}<br />
&lt;/body&gt;<br />
&lt;/html&gt;<br />
</code></div></div>
<br />
</li>
<li>xtsug_showthread_noreplies<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;table border="0" cellspacing="{&#36;GLOBALS['theme']['borderwidth']}" cellpadding="{&#36;GLOBALS['theme']['tablespace']}" id="xthreads_noreplies" class="tborder"&gt;<br />
	&lt;tbody&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1"&gt;<br />
				&lt;div style="text-align: center;" class="post_body"&gt;There are no comments in this suggestion&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/tbody&gt;<br />
&lt;/table&gt;<br />
</code></div></div>
<br />
</li>
<li>xtsug_showthread_ratethread<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;td align="center" class="trow1" valign="top"&gt;<br />
	&lt;a href="ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=1&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;&lt;img src="images/rate.jpg" alt="Vote" title="Vote" /&gt;&lt;/a&gt;<br />
	&lt;div&gt;&lt;strong&gt;{&#36;thread['numratings']}&lt;/strong&gt; Votes&lt;/div&gt;<br />
&lt;/td&gt;<br />
</code></div></div>
</li>
</ol>
<br />
Additional Info:<ul class="mycode_list"><li>For displaying the suggestion preview in threadlist, like the screenshot, we need to install the <a href="http://mybbhacks.zingaburga.com/showthread.php?tid=267" target="_blank" rel="noopener" class="mycode_url">Thread Tooltip Preview</a> plugin.<br />
</li>
<li>There are two optional images needed: <span style="font-style: italic;" class="mycode_i">images/rate.jpg</span> and <span style="font-style: italic;" class="mycode_i">images/comment.jpg</span>.<br />
</li>
<li>I don't have many idea, so, I just use a similar layout there. But it is depends on our themes though. So, just modify it as our needs.<br />
</li>
<li>The templates above based on MyBB 1.6 template.<br />
</li>
</ul>
<br />
Screenshots:<br />
Threadlist - Showthread<br />
 <br />
<br />
Live Demo: <a href="http://www.14.mynie.co.cc/forumdisplay.php?fid=18" target="_blank" rel="noopener" class="mycode_url">http://www.14.mynie.co.cc/forumdisplay.php?fid=18</a><br />
<br />
Please tell me if I do something wrong. I'm still learning <img src="https://gidenler.me/images/v2/smile/o3.gif" alt="Smile" title="Smile" class="smilie smilie_1" /><br />
<br />
<span style="font-weight: bold;" class="mycode_b">Change Logs: <a href="http://mybbhacks.zingaburga.com/showthread.php?tid=708&amp;pid=6555#pid6555" target="_blank" rel="noopener" class="mycode_url">05 February 2011</a></span>]]></description>
			<content:encoded><![CDATA[Requirement: <span style="font-weight: bold;" class="mycode_b"><a href="http://mybbhacks.zingaburga.com/showthread.php?tid=288" target="_blank" rel="noopener" class="mycode_url">XThreads</a></span><br />
<span style="font-weight: bold;" class="mycode_b">Last Updated: <a href="http://mybbhacks.zingaburga.com/showthread.php?tid=708&amp;pid=12432#pid12432" target="_blank" rel="noopener" class="mycode_url">7 October 2012</a></span><br />
<br />
This idea based on the MyBB Ideas section. When viewing the section, I think we can use XThreads to create a similar system for our forum. But we will try to make it for more general purpose.<br />
<br />
Here is a simple example to do that:<br />
<br />
Create or edit a forum with these settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Prefix:</span> xtsug_<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Show first post on every showthread page:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Settings Overrides:</span><ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Setting:</span> Showthread Options -&gt; Post Layout<br />
<span style="font-weight: bold;" class="mycode_b">Value:</span> horizontal<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>postlayout=horizontal</code></div></div></li>
</ul>
</li>
<li><span style="font-weight: bold;" class="mycode_b">Custom WOL Text:</span><ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Forum Display:</span> <div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>Viewing &lt;a href="{1}"&gt;{2}&lt;/a&gt;</code></div></div>
</li>
<li><span style="font-weight: bold;" class="mycode_b">New Thread:</span> <div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>Submitting a new suggestion</code></div></div>
</li>
<li><span style="font-weight: bold;" class="mycode_b">New Reply:</span> <div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>Commenting &lt;a href="{1}"&gt;{2}&lt;/a&gt; suggestion</code></div></div>
</li>
<li><span style="font-weight: bold;" class="mycode_b">Show Thread:</span> <div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>Reading &lt;a href="{1}"&gt;{2}&lt;/a&gt; suggestion</code></div></div>
</li>
</ul>
Maybe we can disable the img and video tag and the post icons here (optional).<br />
</li>
</ul>
<br />
Create a Custom Thread Fields with these settings:<br />
AdminCP -&gt; Configuration -&gt; Custom Thread Fields<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Status<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> xtsug_status<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select our suggestion forum.'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Option Buttons<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Values List:</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>Confirmed<br />
Implemented<br />
Rejected</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Administrators<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Allow Filtering:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Blank Replacement Value</span> and <span style="font-weight: bold;" class="mycode_b">Display Format:</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;if &#36;thread['replies'] &gt; 0 then&gt;&lt;div style="padding-top: 9px;"&gt;&lt;a href="{&#36;threadurl}#posts"&gt;&lt;img src="images/comment.jpg" alt="" title="" /&gt; {&#36;thread['replies']}&lt;if &#36;thread['replies'] == 1 then&gt; Comment&lt;else&gt; Comments&lt;/if&gt;&lt;/a&gt;&lt;/div&gt;&lt;/if&gt;</code></div></div>This status can be used to set whether a suggestion already implemented, or already confirmed and in progress to be implemented, or rejected (we don't want to implement it). This status can be used for a very simple bug report.<br />
</li>
</ul>
<br />
Create new templates in Global Template:<br />
AdminCP -&gt; Templates &amp; Style -&gt; Templates -&gt; Global Templates<br />
<ol type="1" class="mycode_list"><li>xtsug_forumdisplay_thread<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;tr&gt;<br />
	{&#36;rating}<br />
	&lt;td class="trow1{&#36;thread_type_class}"&gt;<br />
		&lt;div&gt;<br />
			&lt;strong&gt;&lt;a href="{&#36;thread['threadlink']}" class="{&#36;inline_edit_class}" id="tid_{&#36;inline_edit_tid}"&gt;{&#36;thread['subject']}&lt;/a&gt;&lt;/strong&gt;<br />
		&lt;/div&gt;<br />
		&lt;div class="author smalltext" style="padding-top: 3px;"&gt;<br />
			Submitted by: {&#36;thread['profilelink']}, {&#36;thread['threaddate']}, {&#36;thread['threadtime']}<br />
		&lt;/div&gt;<br />
		&lt;div style="padding-top: 7px;"&gt;{&#36;thread['postpreview']}&lt;/div&gt;<br />
		{&#36;GLOBALS['threadfields']['xtsug_status']}<br />
	&lt;/td&gt;<br />
	{&#36;modbit}<br />
&lt;/tr&gt;<br />
</code></div></div>
<br />
</li>
<li>xtsug_forumdisplay_threadlist<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="thead" colspan="{&#36;colspan}"&gt;<br />
			&lt;div class="largetext" style="text-align: center;"&gt;&lt;strong&gt;{&#36;foruminfo['name']}&lt;/strong&gt;&lt;/div&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="tcat" colspan="2"&gt;<br />
			&lt;div class="float_right"&gt;<br />
				&lt;strong&gt;Filter:&lt;/strong&gt;<br />
				&lt;strong&gt;&lt;a href="{&#36;forumurl_q}filtertf_xtsug_status=Confirmed"&gt;Confirmed&lt;/a&gt;&lt;/strong&gt; |<br />
				&lt;strong&gt;&lt;a href="{&#36;forumurl_q}filtertf_xtsug_status=Implemented"&gt;Implemented&lt;/a&gt;&lt;/strong&gt; |<br />
				&lt;strong&gt;&lt;a href="{&#36;forumurl_q}filtertf_xtsug_status=Rejected"&gt;Rejected&lt;/a&gt;&lt;/strong&gt;<br />
			&lt;/div&gt;<br />
			&lt;div class="float_left"&gt;<br />
				&lt;strong&gt;Sort:&lt;/strong&gt;<br />
				&lt;strong&gt;&lt;a href="{&#36;sorturl}&amp;amp;sortby=started&amp;amp;order=asc"&gt;Recent Suggested&lt;/a&gt;&lt;/strong&gt; |<br />
				&lt;strong&gt;&lt;a href="{&#36;sorturl}&amp;amp;sortby=replies&amp;amp;order=desc"&gt;Most Comments&lt;/a&gt;&lt;/strong&gt;<br />
				{&#36;ratingcol}<br />
			&lt;/div&gt;<br />
		&lt;/td&gt;<br />
		{&#36;inlinemodcol}<br />
	&lt;/tr&gt;<br />
	{&#36;selectall}<br />
	{&#36;announcementlist}<br />
	{&#36;threads}{&#36;nullthreads}<br />
&lt;/table&gt;<br />
&lt;div class="float_left"&gt;<br />
	{&#36;multipage}<br />
&lt;/div&gt;<br />
&lt;div class="float_right" style="margin-top: 4px;"&gt;<br />
	{&#36;newthread}<br />
&lt;/div&gt;<br />
&lt;br style="clear: both;" /&gt;<br />
&lt;br /&gt;<br />
&lt;div class="float_right" style="text-align: right;"&gt;<br />
	{&#36;inlinemod}<br />
	{&#36;searchforum}<br />
	{&#36;forumjump}<br />
&lt;/div&gt;<br />
&lt;br style="clear: both" /&gt;<br />
&lt;div class="smalltext" align="center"&gt;<br />
	{&#36;foruminfo['name']}&lt;br /&gt;Powered By &lt;a href="http://mybbhacks.zingaburga.com"&gt;XThreads&lt;/a&gt; - &lt;a href="http://mybbhacks.zingaburga.com"&gt;MyBB Hacks&lt;/a&gt;<br />
&lt;/div&gt;<br />
{&#36;inline_edit_js}<br />
</code></div></div>
<br />
</li>
<li>xtsug_forumdisplay_threadlist_rating<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&amp;nbsp;| &lt;strong&gt;&lt;a href="{&#36;sorturl}&amp;amp;sortby=numratings&amp;amp;order=desc"&gt;Votes&lt;/a&gt;&lt;/strong&gt;<br />
</code></div></div>
<br />
</li>
<li>xtsug_forumdisplay_thread_rating<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;td align="center" class="{&#36;bgcolor}{&#36;thread_type_class}" id="rating_table_{&#36;thread['tid']}" width="1" valign="top"&gt;<br />
	&lt;a href="ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=1&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;&lt;img src="images/rate.jpg" alt="Vote" title="Vote" /&gt;&lt;/a&gt;<br />
	&lt;div&gt;&lt;strong&gt;{&#36;thread['numratings']}&lt;/strong&gt; Votes&lt;/div&gt;<br />
&lt;/td&gt;<br />
</code></div></div>
<br />
</li>
<li>xtsug_postbit<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
{&#36;ignore_bit}<br />
&lt;a name="pid{&#36;post['pid']}" id="pid{&#36;post['pid']}"&gt;&lt;/a&gt;<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" style="{&#36;post_extra_style} {&#36;post_visibility}" id="post_{&#36;post['pid']}" class="tborder"&gt;<br />
	&lt;tbody&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1 {&#36;unapproved_shade}"&gt;<br />
				&lt;div class="float_left smalltext"&gt;<br />
					by: &lt;a href="{&#36;post['profilelink_plain']}" id="profile_{&#36;post['pid']}"&gt;{&#36;post['username_formatted']}&lt;/a&gt;<br />
					&lt;br /&gt;{&#36;post['postdate']}, {&#36;post['posttime']} &lt;span id="edited_by_{&#36;post['pid']}"&gt;{&#36;post['editedmsg']}&lt;/span&gt;<br />
				&lt;/div&gt;<br />
				{&#36;post['posturl']}<br />
				&lt;div class="post_body clear" id="pid_{&#36;post['pid']}"&gt;{&#36;post['message']}&lt;/div&gt;<br />
				&lt;div class="post_meta" id="post_meta_{&#36;post['pid']}"&gt;{&#36;post['iplogged']}&lt;/div&gt;<br />
				&lt;div id="profile_{&#36;post['pid']}_popup" class="popup_menu" style="display: none;"&gt;<br />
					&lt;div class="popup_item_container"&gt;<br />
						&lt;table border="0" cellspacing="0" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
							&lt;tr&gt;<br />
								&lt;td class="trow1" valign="top" align="center"&gt;<br />
									&lt;div&gt;&lt;strong&gt;{&#36;post['profilelink']}&lt;/strong&gt;&lt;/div&gt;<br />
									&lt;div class="smalltext"&gt;{&#36;post['useravatar']}&lt;/div&gt;<br />
									&lt;div class="smalltext"&gt;{&#36;post['usertitle']}&lt;/div&gt;<br />
									&lt;div class="smalltext"&gt;{&#36;post['userstars']}&lt;/div&gt;<br />
									&lt;div class="smalltext"&gt;{&#36;post['groupimage']}&lt;/div&gt;<br />
									&lt;div class="smalltext"&gt;{&#36;post['user_details']}&lt;/div&gt;<br />
								&lt;/td&gt;<br />
							&lt;/tr&gt;<br />
							&lt;tr&gt;<br />
								&lt;td class="tcat" align="center"&gt;<br />
									{&#36;post['button_email']}<br />
									{&#36;post['button_pm']}<br />
									{&#36;post['button_www']}<br />
									{&#36;post['button_find']}<br />
									{&#36;post['button_rep']}<br />
								&lt;/td&gt;<br />
							&lt;/tr&gt;<br />
						&lt;/table&gt;<br />
					&lt;/div&gt;<br />
				&lt;/div&gt;<br />
				&lt;div class="post_management_buttons float_right clear"&gt;<br />
					{&#36;post['button_edit']}<br />
					{&#36;post['button_quickdelete']}<br />
					{&#36;post['button_quote']}<br />
					{&#36;post['button_multiquote']}<br />
					{&#36;post['button_report']}<br />
					{&#36;post['button_warn']}<br />
				&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/tbody&gt;<br />
&lt;/table&gt;<br />
&lt;script type="text/javascript"&gt;<br />
// &lt;!--<br />
	if(use_xmlhttprequest == "1")<br />
	{<br />
		new PopupMenu("profile_{&#36;post['pid']}");<br />
	}<br />
// <img src="https://gidenler.me/images/smilies/sag_ok.png" alt="Sağ ok" title="Sağ ok" class="smilie smilie_54" /><br />
&lt;/script&gt;<br />
</code></div></div>
<br />
</li>
<li>xtsug_postbit_first<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
{&#36;ignore_bit}<br />
&lt;a name="pid{&#36;post['pid']}" id="pid{&#36;post['pid']}"&gt;&lt;/a&gt;<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" style="{&#36;post_extra_style} {&#36;post_visibility}" id="post_{&#36;post['pid']}" width="100%"&gt;<br />
	&lt;tbody&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1 {&#36;unapproved_shade}"&gt;<br />
				&lt;div class="float_left smalltext"&gt;<br />
					Submitted by: &lt;a href="{&#36;post['profilelink_plain']}" id="profile_{&#36;post['pid']}"&gt;{&#36;post['username_formatted']}&lt;/a&gt;, {&#36;post['postdate']}, {&#36;post['posttime']} &lt;span id="edited_by_{&#36;post['pid']}"&gt;{&#36;post['editedmsg']}&lt;/span&gt;<br />
				&lt;/div&gt;<br />
				{&#36;post['posturl']}<br />
				&lt;div class="post_body clear" id="pid_{&#36;post['pid']}"&gt;{&#36;post['message']}&lt;/div&gt;<br />
				&lt;div class="post_meta" id="post_meta_{&#36;post['pid']}"&gt;{&#36;post['iplogged']}&lt;/div&gt;<br />
				&lt;div id="profile_{&#36;post['pid']}_popup" class="popup_menu" style="display: none;"&gt;<br />
					&lt;div class="popup_item_container"&gt;<br />
						&lt;table border="0" cellspacing="0" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
							&lt;tr&gt;<br />
								&lt;td class="trow1" valign="top" align="center"&gt;<br />
									&lt;div&gt;&lt;strong&gt;{&#36;post['profilelink']}&lt;/strong&gt;&lt;/div&gt;<br />
									&lt;div class="smalltext"&gt;{&#36;post['useravatar']}&lt;/div&gt;<br />
									&lt;div class="smalltext"&gt;{&#36;post['usertitle']}&lt;/div&gt;<br />
									&lt;div class="smalltext"&gt;{&#36;post['userstars']}&lt;/div&gt;<br />
									&lt;div class="smalltext"&gt;{&#36;post['groupimage']}&lt;/div&gt;<br />
									&lt;div class="smalltext"&gt;{&#36;post['user_details']}&lt;/div&gt;<br />
								&lt;/td&gt;<br />
							&lt;/tr&gt;<br />
							&lt;tr&gt;<br />
								&lt;td class="tcat" align="center"&gt;<br />
									{&#36;post['button_email']}<br />
									{&#36;post['button_pm']}<br />
									{&#36;post['button_www']}<br />
									{&#36;post['button_find']}<br />
									{&#36;post['button_rep']}<br />
								&lt;/td&gt;<br />
							&lt;/tr&gt;<br />
						&lt;/table&gt;<br />
					&lt;/div&gt;<br />
				&lt;/div&gt;<br />
				&lt;div class="post_management_buttons float_right clear"&gt;<br />
					{&#36;post['button_edit']}<br />
					{&#36;post['button_quickdelete']}<br />
					{&#36;post['button_quote']}<br />
					{&#36;post['button_multiquote']}<br />
					{&#36;post['button_report']}<br />
					{&#36;post['button_warn']}<br />
				&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/tbody&gt;<br />
&lt;/table&gt;<br />
&lt;script type="text/javascript"&gt;<br />
// &lt;!--<br />
	if(use_xmlhttprequest == "1")<br />
	{<br />
		new PopupMenu("profile_{&#36;post['pid']}");<br />
	}<br />
// <img src="https://gidenler.me/images/smilies/sag_ok.png" alt="Sağ ok" title="Sağ ok" class="smilie smilie_54" /><br />
&lt;/script&gt;<br />
</code></div></div>
<br />
</li>
<li>xtsug_postbit_first_posturl<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;div style="float: right; width: auto; vertical-align: top"&gt;{&#36;post['inlinecheck']}&lt;/div&gt;<br />
</code></div></div>
<br />
</li>
<li>xtsug_postbit_posturl<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;div style="float: right; width: auto; vertical-align: top"&gt;&lt;span class="smalltext"&gt;&lt;strong&gt;&lt;a href="{&#36;post['postlink']}#pid{&#36;post['pid']}"&gt;#{&#36;postcounter}&lt;/a&gt;&lt;/strong&gt;{&#36;post['inlinecheck']}&lt;/span&gt;&lt;/div&gt;<br />
</code></div></div>
<br />
</li>
<li>xtsug_showthread<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;{&#36;thread['subject']}&lt;/title&gt;<br />
{&#36;headerinclude}<br />
&lt;script type="text/javascript"&gt;<br />
&lt;!--<br />
	var quickdelete_confirm = "{&#36;lang-&gt;quickdelete_confirm}";<br />
// <img src="https://gidenler.me/images/smilies/sag_ok.png" alt="Sağ ok" title="Sağ ok" class="smilie smilie_54" /><br />
&lt;/script&gt;<br />
&lt;script type="text/javascript" src="jscripts/thread.js?ver=1600"&gt;&lt;/script&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
{&#36;header}<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="clear: both;"&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="thead" colspan="2"&gt;<br />
			&lt;div&gt;<br />
				&lt;strong&gt;{&#36;thread['subject']}&lt;/strong&gt;<br />
			&lt;/div&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
	&lt;tr&gt;<br />
		{&#36;ratethread}<br />
		&lt;td class="trow1"&gt;<br />
			{&#36;first_post}<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;br class="clear" /&gt;<br />
&lt;div class="largetext float_right clear"&gt;Comments&lt;/div&gt;<br />
&lt;div id="posts" class="clear"&gt;<br />
	{&#36;posts}<br />
&lt;/div&gt;<br />
&lt;div class="float_left"&gt;<br />
	{&#36;multipage}<br />
&lt;/div&gt;<br />
&lt;div style="padding-top: 4px;" class="float_right"&gt;<br />
	{&#36;newreply}<br />
&lt;/div&gt;<br />
&lt;br style="clear: both;" /&gt;<br />
{&#36;quickreply}<br />
{&#36;threadexbox}<br />
{&#36;similarthreads}<br />
&lt;br /&gt;<br />
&lt;div class="float_right" style="text-align: right;"&gt;<br />
	{&#36;moderationoptions}<br />
	{&#36;forumjump}<br />
&lt;/div&gt;<br />
&lt;br style="clear: both;" /&gt;<br />
{&#36;usersbrowsing}<br />
&lt;div class="smalltext" align="center"&gt;<br />
	{&#36;forum['name']}&lt;br /&gt;Powered By &lt;a href="http://mybbhacks.zingaburga.com"&gt;XThreads&lt;/a&gt; - &lt;a href="http://mybbhacks.zingaburga.com"&gt;MyBB Hacks&lt;/a&gt;<br />
&lt;/div&gt;<br />
{&#36;footer}<br />
&lt;/body&gt;<br />
&lt;/html&gt;<br />
</code></div></div>
<br />
</li>
<li>xtsug_showthread_noreplies<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;table border="0" cellspacing="{&#36;GLOBALS['theme']['borderwidth']}" cellpadding="{&#36;GLOBALS['theme']['tablespace']}" id="xthreads_noreplies" class="tborder"&gt;<br />
	&lt;tbody&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1"&gt;<br />
				&lt;div style="text-align: center;" class="post_body"&gt;There are no comments in this suggestion&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/tbody&gt;<br />
&lt;/table&gt;<br />
</code></div></div>
<br />
</li>
<li>xtsug_showthread_ratethread<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code><br />
&lt;td align="center" class="trow1" valign="top"&gt;<br />
	&lt;a href="ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=1&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;&lt;img src="images/rate.jpg" alt="Vote" title="Vote" /&gt;&lt;/a&gt;<br />
	&lt;div&gt;&lt;strong&gt;{&#36;thread['numratings']}&lt;/strong&gt; Votes&lt;/div&gt;<br />
&lt;/td&gt;<br />
</code></div></div>
</li>
</ol>
<br />
Additional Info:<ul class="mycode_list"><li>For displaying the suggestion preview in threadlist, like the screenshot, we need to install the <a href="http://mybbhacks.zingaburga.com/showthread.php?tid=267" target="_blank" rel="noopener" class="mycode_url">Thread Tooltip Preview</a> plugin.<br />
</li>
<li>There are two optional images needed: <span style="font-style: italic;" class="mycode_i">images/rate.jpg</span> and <span style="font-style: italic;" class="mycode_i">images/comment.jpg</span>.<br />
</li>
<li>I don't have many idea, so, I just use a similar layout there. But it is depends on our themes though. So, just modify it as our needs.<br />
</li>
<li>The templates above based on MyBB 1.6 template.<br />
</li>
</ul>
<br />
Screenshots:<br />
Threadlist - Showthread<br />
 <br />
<br />
Live Demo: <a href="http://www.14.mynie.co.cc/forumdisplay.php?fid=18" target="_blank" rel="noopener" class="mycode_url">http://www.14.mynie.co.cc/forumdisplay.php?fid=18</a><br />
<br />
Please tell me if I do something wrong. I'm still learning <img src="https://gidenler.me/images/v2/smile/o3.gif" alt="Smile" title="Smile" class="smilie smilie_1" /><br />
<br />
<span style="font-weight: bold;" class="mycode_b">Change Logs: <a href="http://mybbhacks.zingaburga.com/showthread.php?tid=708&amp;pid=6555#pid6555" target="_blank" rel="noopener" class="mycode_url">05 February 2011</a></span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Profile Forum]]></title>
			<link>https://gidenler.me/thread-666.html</link>
			<pubDate>Fri, 14 Nov 2025 19:09:46 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://gidenler.me/member.php?action=profile&uid=2">Hasan</a>]]></dc:creator>
			<guid isPermaLink="false">https://gidenler.me/thread-666.html</guid>
			<description><![CDATA[Requirement: <span style="font-weight: bold;" class="mycode_b"><a href="http://mybbhacks.zingaburga.com/showthread.php?tid=288" target="_blank" rel="noopener" class="mycode_url">XThreads</a></span><br />
<br />
With XThreads, we can create profile forum. The basic idea is, our member can create a profile thread, which is contains their character in a game. They can upload their screenshots from the game, and fill various info about their character. And they can edit it whenever they want.<br />
<br />
Unfortunately, it is hard to give an example for each game, so, we will take The Sims game in this example. If we want to apply it for another game, we need to modify the info / XThreads thread fields to make it suitable with that game.<br />
<br />
Possibility for another usage: we can use it as another profile page for our member. With XThreads <span style="font-style: italic;" class="mycode_i">Viewable by Usergroups</span> settings, we can create "private" info for the profile thread. And, because XThreads has an ability to choose in which forum id(s) a XThreads thread field can be used, it will make us easier to choose which usegroup can create a profile thread. We can combine it with forum permission.<br />
<br />
We can use the forum permission for this example too: if we have a RPG forum which has more than one usergroup as clan, we can set the forum permission for each usergroup / clan. And then, we can set the forum related to a clan with custom XThreads thread field. So, each usergroup / clan will has different info / stats. Plus, if we want to create some "private" info / stats (viewable by that clan member only), we can use XThreads <span style="font-style: italic;" class="mycode_i">Viewable by Usergroups</span> feature. Great, huh? A lot of "magic" can be done by XThreads!<br />
<br />
Here is a simple example to create a Profile Forum (based on The Sims Game):<br />
<br />
1. Textbox for Sim's Name:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Your Sim's Name<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> profname<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select a forum that we will apply the profile forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Textbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['profname']}</span>.<br />
</li>
</ul>
<br />
2. Listbox for Sim's Gender:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Your Sim's Gender<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> profgender<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select the profile forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Listbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Height:</span> 1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Values List:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>Male<br />
Female</code></div></div>Do we need to modify it? <img src="https://gidenler.me/images/v2/smile/=D.gif" alt="Big Grin" title="Big Grin" class="smilie smilie_4" /><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 2<br />
Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['profgender']}</span>.<br />
</li>
</ul>
<br />
3. Listbox for Sim's Status:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Your Sim's Status<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> profstatus<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select the profile forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Listbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Height:</span> 1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Values List:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>Single<br />
Married</code></div></div>Modify it as our need.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 3<br />
Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['profstatus']}</span>.<br />
</li>
</ul>
<br />
4. Listbox for Sim's Main Career:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Your Sim's Main Career<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> profcareer<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select the profile forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Listbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Height:</span> 1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Values List:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>None<br />
Business<br />
Entertainment<br />
Law Enforcement</code></div></div>Modify it as our need.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 4<br />
Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['profcareer']}</span>.<br />
</li>
</ul>
<br />
5. Textbox for Family Friends:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Family Friends<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> profffriends<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Description:</span> The number of your family friends. e.g: 99. Leave it blank if you didn't have any friends yet.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select the profile forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Textbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 5<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Blank Replacement Value:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;em&gt;None&lt;/em&gt;</code></div></div>
</li>
<li><span style="font-weight: bold;" class="mycode_b">Text Mask Filter:</span> <div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>^[0-9]{1,3}&#36;</code></div></div>I'm not quite sure how much the maximum number of family friends for a Sim.<br />
Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['profffriends']}</span>.<br />
</li>
</ul>
<br />
6. Textbox for Sim's Age:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Your Sim's Age<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> profage<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Description:</span> Your Sim's age in year. e.g: 9. Leave it blank if it is less than 1 year.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select the profile forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Textbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 6<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Blank Replacement Value:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;em&gt;Less than one year old&lt;/em&gt;</code></div></div>
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>{VALUE} Years Old</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Text Mask Filter:</span> <div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>^[0-9]{1,2}&#36;</code></div></div>I hope it is enough.<br />
Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['profage']}</span>.<br />
</li>
</ul>
<br />
7. File Input for Sim's Picture:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Your Sim's Picture<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> profpic<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Description:</span> Upload your Sim's picture - Required<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select the profile forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> File<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Valid File Extensions:</span> gif|png|jpg|jpeg<br />
Modify it as our needs. It is the extensions of image that can be uploaded.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Maximum File Size:</span> 1048576<br />
Modify it as our needs. It is a maximum file size (in bytes) that can be uploaded. In this example, 1 Mb.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 7<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Only accept uploaded images:</span> Yes<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Image Thumbnail Generation:</span> 160x120<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;img src="{URL}/thumb160x120" alt="" title="" style="margin: 3px;" /&gt;</code></div></div>
Variable for displaying this value in our template: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['profpic']['value']}</span><br />
</li>
</ul>
<br />
8. Listbox for Sim's Skill:<br />
Repeat this step as our needs. Just remember to use a different <span style="font-style: italic;" class="mycode_i">Title</span> and <span style="font-style: italic;" class="mycode_i">Key</span>. And modify the <span style="font-style: italic;" class="mycode_i">Blank Replacement Value</span> and the <span style="font-style: italic;" class="mycode_i">Display Format</span> too, especially for the word <span style="font-style: italic;" class="mycode_i">Cooking Level</span>.<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Cooking Skill<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> profcooking<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select the profile forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Listbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Height:</span> 1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Values List:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>1<br />
2<br />
3<br />
4<br />
5<br />
6<br />
7<br />
8<br />
9<br />
10</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 8<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Blank Replacement Value:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;tr&gt;&lt;td width="150"&gt;Cooking Level&lt;/td&gt;<br />
&lt;td width="1"&gt;:&lt;/td&gt;<br />
&lt;td&gt;<br />
&lt;div class="tcat" style="width: 250px;" align="center"&gt;<br />
&lt;strong&gt;Level 0&lt;/strong&gt;<br />
&lt;/div&gt;<br />
&lt;/td&gt;<br />
&lt;/tr&gt;</code></div></div>
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;tr&gt;&lt;td width="150"&gt;Cooking Level&lt;/td&gt;<br />
&lt;td width="1"&gt;:&lt;/td&gt;<br />
&lt;td&gt;<br />
&lt;div class="tcat" style="width: 250px;"&gt;<br />
&lt;div class="thead" style="width: {VALUE}0%; white-space: nowrap;"&gt;<br />
&lt;span style="margin-left: 9px;"&gt;&lt;strong&gt;Level {VALUE}&lt;/strong&gt;&lt;/span&gt;<br />
&lt;/div&gt;<br />
&lt;/div&gt;<br />
&lt;/td&gt;&lt;/tr&gt;</code></div></div>
Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['profcooking']}</span>.<br />
Use different variable if we repeat this step. Modify the <span style="font-style: italic;" class="mycode_i">profcooking</span> word to match with the key.<br />
Example:<br />
Key: profbody<br />
Variable: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['profbody']}</span><br />
</li>
</ul>
<br />
Optional step: We can create another File input for Additional Sim's Pictures. Just use another <span style="font-style: italic;" class="mycode_i">Key</span> for that. Example:<br />
<br />
Opt 1. File input for Additional Sim's Pictures.<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Your Add Sim's Picture<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> profpic1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Description:</span> Upload an additional picture - Not required<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select the profile forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> File<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Valid File Extensions:</span> gif|png|jpg|jpeg<br />
Modify it as our needs. It is the extensions of image that can be uploaded.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Maximum File Size:</span> 1048576<br />
Modify it as our needs. It is a maximum file size (in bytes) that can be uploaded. In this example, 1 Mb.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 9<br />
Modify it as our need.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Only accept uploaded images:</span> Yes<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Image Thumbnail Generation:</span> 160x120<br />
Modify it as our needs. It is thumbnail sizes that we can use for this image.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Blank Replacement Value:</span> <span style="font-family: Courier;" class="mycode_font">&amp;nbsp;</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format:</span> <div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;a href="{URL}"&gt;&lt;img src="{URL}/thumb160x120" alt="" title="{&#36;GLOBALS['threadfields']['profdesc1']}" style="border: 1px solid #C1C1C1; padding: 3px; margin: 3px;" /&gt;&lt;/a&gt;</code></div></div>
Variable for displaying this value in our template: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['profpic1']['value']}</span><br />
If we didn't use the <span style="font-style: italic;" class="mycode_i">Opt 2</span> step, remove <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['profdesc1']}</span> variable from the <span style="font-style: italic;" class="mycode_i">title</span> attribute.<br />
</li>
</ul>
<br />
Opt 2. Textbox for Additional Picture Description:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Additional Picture Description 1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> profdesc1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Description:</span> Description for the additional picture - Not Required<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select the profile forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Textbox<br />
I think 255 chars is enough.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 10<br />
Modify it as our needs.<br />
</li>
</ul>
<br />
Repeat two steps above depend on max images that user can upload. And use different <span style="font-style: italic;" class="mycode_i">Key</span>.<br />
<br />
9. Now, XThreads Options in Forum settings (the Profile Forum):<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Prefix:</span> <span style="font-style: italic;" class="mycode_i">prof_</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Thread Grouping:</span> 2<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Show first post on every showthread page:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Enable XThreads' Inline Forum Search:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Force Postbit Layout:</span> Force horizontal postbit layout<br />
</li>
</ul>
<br />
Optional setting: Set forum permission for which usergroup can create thread in this forum.<br />
<br />
10. Create new templates in Global Template:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> prof_forumdisplay_group_sep<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;/tr&gt;<br />
&lt;tr&gt;</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> prof_forumdisplay_nothreads<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;td&gt;<br />
	&lt;table border="0" cellspacing="{&#36;GLOBALS['theme']['borderwidth']}" cellpadding="{&#36;GLOBALS['theme']['tablespace']}" class="tborder" style="clear: both;"&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="thead" align="center" colspan="{&#36;GLOBALS['colspan']}"&gt;<br />
				&lt;div&gt;&lt;strong&gt;Add Your Sims!&lt;/strong&gt;&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1" align="center"&gt;<br />
				Show us your Sims! You can edit your Sim's stats and pictures whenever you want!<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/table&gt;<br />
&lt;/td&gt;</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> prof_forumdisplay_thread<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;td width="50%" valign="top"&gt;<br />
	&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="clear: both;"&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="thead" align="center" colspan="{&#36;colspan}"&gt;<br />
				&lt;div&gt;&lt;strong&gt;&lt;a href="{&#36;thread['threadlink']}" class="{&#36;inline_edit_class} {&#36;new_class}" id="tid_{&#36;inline_edit_tid}"&gt;{&#36;thread['subject']}&lt;/a&gt;&lt;/strong&gt;&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="{&#36;bgcolor}" width="1"&gt;<br />
				&lt;div align="center"&gt;<br />
					{&#36;GLOBALS['threadfields']['profpic']['value']}<br />
				&lt;/div&gt;<br />
			&lt;/td&gt;<br />
			&lt;td class="{&#36;bgcolor}" width="100%"&gt;<br />
				&lt;table border="0" width="100%"&gt;<br />
					&lt;tr&gt;<br />
						&lt;td&gt;Sim's Owner&lt;/td&gt;&lt;td width="1"&gt;:&lt;/td&gt;&lt;td&gt;{&#36;thread['profilelink']}&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
					&lt;tr&gt;<br />
						&lt;td&gt;Sim's Name&lt;/td&gt;&lt;td width="1"&gt;:&lt;/td&gt;<br />
						&lt;td&gt;&lt;a href="{&#36;thread['threadlink']}"&gt;{&#36;GLOBALS['threadfields']['profname']}&lt;/a&gt;&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
					{&#36;rating}<br />
					&lt;tr&gt;<br />
						&lt;td&gt;Sim's Viewed&lt;/td&gt;&lt;td width="1"&gt;:&lt;/td&gt;&lt;td&gt;{&#36;thread['views']}&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
					&lt;tr&gt;<br />
						&lt;td valign="top"&gt;Commented&lt;/td&gt;<br />
						&lt;td width="1" valign="top"&gt;:&lt;/td&gt;<br />
						&lt;td valign="top"&gt;<br />
							&lt;a href="javascript:MyBB.whoPosted({&#36;thread['tid']});"&gt;{&#36;thread['replies']}&lt;/a&gt;{&#36;unapproved_posts}<br />
						&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
				&lt;/table&gt;<br />
			&lt;/td&gt;<br />
			{&#36;modbit}<br />
		&lt;/tr&gt;<br />
	&lt;/table&gt;<br />
&lt;/td&gt;</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> prof_forumdisplay_threadlist<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;div class="float_left"&gt;<br />
	{&#36;multipage}<br />
&lt;/div&gt;<br />
&lt;div class="float_right"&gt;<br />
	{&#36;newthread}<br />
&lt;/div&gt;<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="clear: both;"&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="thead" colspan="{&#36;colspan}"&gt;<br />
			&lt;div align="center"&gt;<br />
				&lt;strong&gt;{&#36;foruminfo['name']}&lt;/strong&gt;<br />
			&lt;/div&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="tcat smalltext" width="100%" colspan="2"&gt;<br />
			&lt;span class="float_left"&gt;<br />
				&lt;strong&gt;Sort By: &lt;a href="{&#36;sorturl}&amp;amp;sortby=subject&amp;amp;order=asc"&gt;{&#36;lang-&gt;thread}&lt;/a&gt; {&#36;orderarrow['subject']} | &lt;a href="{&#36;sorturl}&amp;amp;sortby=starter&amp;amp;order=asc"&gt;{&#36;lang-&gt;author}&lt;/a&gt; {&#36;orderarrow['starter']} | &lt;a href="{&#36;sorturl}&amp;amp;sortby=replies&amp;amp;order=desc"&gt;{&#36;lang-&gt;replies}&lt;/a&gt; {&#36;orderarrow['replies']} | &lt;a href="{&#36;sorturl}&amp;amp;sortby=views&amp;amp;order=desc"&gt;{&#36;lang-&gt;views}&lt;/a&gt; {&#36;orderarrow['views']} {&#36;ratingcol} | &lt;a href="{&#36;sorturl}&amp;amp;sortby=lastpost&amp;amp;order=desc"&gt;{&#36;lang-&gt;lastpost}&lt;/a&gt; {&#36;orderarrow['lastpost']}&lt;/strong&gt;<br />
			&lt;/span&gt;<br />
			&lt;span class="float_right"&gt;<br />
				&lt;strong&gt;&lt;a href="misc.php?action=markread&amp;amp;fid={&#36;fid}"&gt;{&#36;lang-&gt;markforum_read}&lt;/a&gt; | &lt;a href="usercp2.php?action={&#36;add_remove_subscription}subscription&amp;amp;type=forum&amp;amp;fid={&#36;fid}&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;{&#36;add_remove_subscription_text}&lt;/a&gt;{&#36;clearstoredpass}&lt;/strong&gt;<br />
			&lt;/span&gt;<br />
		&lt;/td&gt;<br />
		{&#36;inlinemodcol}<br />
	&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;br class="clear" /&gt;<br />
&lt;table border="0" width="100%" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}"&gt;<br />
	&lt;tr&gt;<br />
		{&#36;threads}{&#36;nullthreads}<br />
	&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;br class="clear" /&gt;<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="clear: both;"&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="tcat" colspan="{&#36;colspan}"&gt;<br />
			&lt;span class="float_left"&gt;<br />
				&lt;form action="forumdisplay.php" method="get"&gt;<br />
					&lt;input type="hidden" name="fid" value="{&#36;fid}" /&gt;<br />
					&lt;select name="sortby"&gt;<br />
						&lt;option value="subject" {&#36;sortsel['subject']}&gt;{&#36;lang-&gt;sort_by_subject}&lt;/option&gt;<br />
						&lt;option value="lastpost" {&#36;sortsel['lastpost']}&gt;{&#36;lang-&gt;sort_by_lastpost}&lt;/option&gt;<br />
						&lt;option value="starter" {&#36;sortsel['starter']}&gt;{&#36;lang-&gt;sort_by_starter}&lt;/option&gt;<br />
						&lt;option value="started" {&#36;sortsel['started']}&gt;{&#36;lang-&gt;sort_by_started}&lt;/option&gt;<br />
						{&#36;ratingsort}<br />
						&lt;option value="replies" {&#36;sortsel['replies']}&gt;{&#36;lang-&gt;sort_by_replies}&lt;/option&gt;<br />
						&lt;option value="views" {&#36;sortsel['views']}&gt;{&#36;lang-&gt;sort_by_views}&lt;/option&gt;<br />
					&lt;/select&gt;<br />
					&lt;select name="order"&gt;<br />
						&lt;option value="asc" {&#36;ordersel['asc']}&gt;{&#36;lang-&gt;sort_order_asc}&lt;/option&gt;<br />
						&lt;option value="desc" {&#36;ordersel['desc']}&gt;{&#36;lang-&gt;sort_order_desc}&lt;/option&gt;<br />
					&lt;/select&gt;<br />
					&lt;select name="datecut"&gt;<br />
						&lt;option value="1" {&#36;datecutsel['1']}&gt;{&#36;lang-&gt;datelimit_1day}&lt;/option&gt;<br />
						&lt;option value="5" {&#36;datecutsel['5']}&gt;{&#36;lang-&gt;datelimit_5days}&lt;/option&gt;<br />
						&lt;option value="10" {&#36;datecutsel['10']}&gt;{&#36;lang-&gt;datelimit_10days}&lt;/option&gt;<br />
						&lt;option value="20" {&#36;datecutsel['20']}&gt;{&#36;lang-&gt;datelimit_20days}&lt;/option&gt;<br />
						&lt;option value="50" {&#36;datecutsel['50']}&gt;{&#36;lang-&gt;datelimit_50days}&lt;/option&gt;<br />
						&lt;option value="75" {&#36;datecutsel['75']}&gt;{&#36;lang-&gt;datelimit_75days}&lt;/option&gt;<br />
						&lt;option value="100" {&#36;datecutsel['100']}&gt;{&#36;lang-&gt;datelimit_100days}&lt;/option&gt;<br />
						&lt;option value="365" {&#36;datecutsel['365']}&gt;{&#36;lang-&gt;datelimit_lastyear}&lt;/option&gt;<br />
						&lt;option value="9999" {&#36;datecutsel['9999']}&gt;{&#36;lang-&gt;datelimit_beginning}&lt;/option&gt;<br />
					&lt;/select&gt;<br />
					{&#36;gobutton}<br />
				&lt;/form&gt;<br />
			&lt;/span&gt;<br />
			&lt;span class="float_right"&gt;<br />
				{&#36;forumjump}<br />
			&lt;/span&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="tfoot" align="center" colspan="{&#36;colspan}"&gt;<br />
			&lt;strong&gt;&lt;a href="http://mybbhacks.zingaburga.com"&gt;XThreads&lt;/a&gt; - &lt;a href="http://mybbhacks.zingaburga.com"&gt;MyBB Hacks&lt;/a&gt;&lt;/strong&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;div class="float_left"&gt;<br />
	{&#36;multipage}<br />
&lt;/div&gt;<br />
&lt;div class="float_right" style="margin-top: 4px;"&gt;<br />
	{&#36;newthread}<br />
&lt;/div&gt;<br />
&lt;br style="clear: both;" /&gt;<br />
&lt;br /&gt;<br />
&lt;div class="float_left"&gt;<br />
	&lt;div class="float_left"&gt;<br />
		&lt;dl class="thread_legend smalltext"&gt;<br />
			&lt;dd&gt;&lt;img src="{&#36;theme['imgdir']}/newfolder.gif" alt="{&#36;lang-&gt;new_thread}" title="{&#36;lang-&gt;new_thread}" /&gt; {&#36;lang-&gt;new_thread}&lt;/dd&gt;<br />
			&lt;dd&gt;&lt;img src="{&#36;theme['imgdir']}/newhotfolder.gif" alt="{&#36;lang-&gt;new_hot_thread}" title="{&#36;lang-&gt;new_hot_thread}" /&gt; {&#36;lang-&gt;new_hot_thread}&lt;/dd&gt;<br />
			&lt;dd&gt;&lt;img src="{&#36;theme['imgdir']}/hotfolder.gif" alt="{&#36;lang-&gt;hot_thread}" title="{&#36;lang-&gt;hot_thread}" /&gt; {&#36;lang-&gt;hot_thread}&lt;/dd&gt;<br />
		&lt;/dl&gt;<br />
	&lt;/div&gt;<br />
<br />
	&lt;div class="float_left"&gt;<br />
		&lt;dl class="thread_legend smalltext"&gt;<br />
			&lt;dd&gt;&lt;img src="{&#36;theme['imgdir']}/folder.gif" alt="{&#36;lang-&gt;no_new_thread}" title="{&#36;lang-&gt;no_new_thread}" /&gt; {&#36;lang-&gt;no_new_thread}&lt;/dd&gt;<br />
			&lt;dd&gt;&lt;img src="{&#36;theme['imgdir']}/dot_folder.gif" alt="{&#36;lang-&gt;posts_by_you}" title="{&#36;lang-&gt;posts_by_you}" /&gt; {&#36;lang-&gt;posts_by_you}&lt;/dd&gt;<br />
			&lt;dd&gt;&lt;img src="{&#36;theme['imgdir']}/lockfolder.gif" alt="{&#36;lang-&gt;locked_thread}" title="{&#36;lang-&gt;locked_thread}" /&gt; {&#36;lang-&gt;locked_thread}&lt;/dd&gt;<br />
		&lt;/dl&gt;<br />
	&lt;/div&gt;<br />
	&lt;br style="clear: both" /&gt;<br />
&lt;/div&gt;<br />
<br />
&lt;div class="float_right" style="text-align: right;"&gt;<br />
	{&#36;searchforum}<br />
	{&#36;inlinemod}<br />
&lt;/div&gt;<br />
&lt;br style="clear: both" /&gt;<br />
{&#36;inline_edit_js}</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> prof_forumdisplay_threadlist_rating<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>| &lt;a href="{&#36;sorturl}&amp;amp;sortby=rating&amp;amp;order=desc"&gt;{&#36;lang-&gt;rating}&lt;/a&gt; {&#36;orderarrow['rating']}<br />
&lt;script type="text/javascript" src="jscripts/rating.js?ver=1400"&gt;&lt;/script&gt;<br />
&lt;script type="text/javascript"&gt;<br />
&lt;!--<br />
	lang.stars = new Array();<br />
	lang.stars[1] = "{&#36;lang-&gt;one_star}";<br />
	lang.stars[2] = "{&#36;lang-&gt;two_stars}";<br />
	lang.stars[3] = "{&#36;lang-&gt;three_stars}";<br />
	lang.stars[4] = "{&#36;lang-&gt;four_stars}";<br />
	lang.stars[5] = "{&#36;lang-&gt;five_stars}";<br />
// <img src="https://gidenler.me/images/smilies/sag_ok.png" alt="Sağ ok" title="Sağ ok" class="smilie smilie_54" /><br />
&lt;/script&gt;</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> prof_forumdisplay_thread_null<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;td width="50%" valign="top"&gt;<br />
	&lt;table border="0" cellspacing="{&#36;GLOBALS['theme']['borderwidth']}" cellpadding="{&#36;GLOBALS['theme']['tablespace']}" class="tborder" style="clear: both;"&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="thead" align="center" colspan="{&#36;GLOBALS['colspan']}"&gt;<br />
				&lt;div&gt;&lt;strong&gt;Add Your Sims!&lt;/strong&gt;&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1" style="text-align: justify;"&gt;<br />
				Show us your Sims! You can edit your Sim's stats and pictures whenever you want!<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="tfoot" align="center"&gt;<br />
				&lt;strong&gt;Total Sims Added: {&#36;GLOBALS['threadcount']} Sims&lt;/strong&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/table&gt;<br />
&lt;/td&gt;</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> prof_forumdisplay_thread_rating<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;tr&gt;<br />
	&lt;td&gt;Sim's Rating&lt;/td&gt;<br />
	&lt;td&gt;:&lt;/td&gt;<br />
	&lt;td&gt;<br />
		&lt;div class="float_left" id="rating_table_{&#36;thread['tid']}"&gt;<br />
			&lt;ul class="star_rating{&#36;not_rated}" id="rating_thread_{&#36;thread['tid']}"&gt;<br />
				&lt;li style="width: {&#36;thread['width']}%" class="current_rating" id="current_rating_{&#36;thread['tid']}"&gt;{&#36;ratingvotesav}&lt;/li&gt;<br />
			&lt;/ul&gt;<br />
			&lt;script type="text/javascript"&gt;<br />
			&lt;!--<br />
				Rating.build_forumdisplay({&#36;thread['tid']}, { width: '{&#36;thread['width']}', extra_class: '{&#36;not_rated}', current_average: '{&#36;ratingvotesav}' });<br />
			// <img src="https://gidenler.me/images/smilies/sag_ok.png" alt="Sağ ok" title="Sağ ok" class="smilie smilie_54" /><br />
			&lt;/script&gt;<br />
		&lt;/div&gt;<br />
	&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
	&lt;td&gt;Sim's Rated&lt;/td&gt;<br />
	&lt;td&gt;:&lt;/td&gt;<br />
	&lt;td&gt;<br />
		{&#36;thread['numratings']}<br />
	&lt;/td&gt;<br />
&lt;/tr&gt;</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> prof_postbit<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;div class="float_left" style="width: 49%; margin: 0px 3px 0px 4px;"&gt;<br />
{&#36;ignore_bit}<br />
&lt;a name="pid{&#36;post['pid']}" id="pid{&#36;post['pid']}"&gt;&lt;/a&gt;<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="{&#36;post_extra_style} {&#36;post_visibility}" id="post_{&#36;post['pid']}"&gt;<br />
	&lt;tbody&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="tcat"&gt;<br />
				&lt;div class="float_left smalltext"&gt;<br />
					 {&#36;post['onlinestatus']}&lt;strong&gt;{&#36;post['profilelink']}&lt;/strong&gt; {&#36;post['postdate']}, {&#36;post['posttime']} &lt;span id="edited_by_{&#36;post['pid']}"&gt;{&#36;post['editedmsg']}&lt;/span&gt;<br />
				&lt;/div&gt;<br />
				{&#36;post['posturl']}<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow2 post_content {&#36;unapproved_shade}"&gt;<br />
				&lt;table cellspacing="0" cellpadding="0" border="0" style="width: 100%;"&gt;<br />
					&lt;tr&gt;<br />
						&lt;td&gt;<br />
							&lt;div class="post_body" id="pid_{&#36;post['pid']}"&gt;<br />
								{&#36;post['message']}<br />
							&lt;/div&gt;<br />
							&lt;div class="post_meta" id="post_meta_{&#36;post['pid']}"&gt;<br />
								{&#36;post['iplogged']}<br />
							&lt;/div&gt;<br />
						&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
				&lt;/table&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1 post_buttons {&#36;unapproved_shade}"&gt;<br />
				&lt;div class="post_management_buttons float_right"&gt;{&#36;post['button_edit']}{&#36;post['button_quickdelete']}{&#36;post['button_quote']}{&#36;post['button_multiquote']}{&#36;post['button_report']}{&#36;post['button_warn']}{&#36;post['button_reply_pm']}{&#36;post['button_replyall_pm']}{&#36;post['button_forward_pm']}{&#36;post['button_delete_pm']}<br />
				&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/tbody&gt;<br />
&lt;/table&gt;<br />
&lt;/div&gt;</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> prof_postbit_first<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>{&#36;ignore_bit}<br />
&lt;a name="pid{&#36;post['pid']}" id="pid{&#36;post['pid']}"&gt;&lt;/a&gt;<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="{&#36;post_extra_style} {&#36;post_visibility}" id="post_{&#36;post['pid']}"&gt;<br />
	&lt;tbody&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1 {&#36;unapproved_shade}"&gt;<br />
				&lt;table cellspacing="0" cellpadding="0" border="0" style="width: 100%;"&gt;<br />
					&lt;tr&gt;<br />
						&lt;td class="post_avatar" width="1" style="{&#36;post['avatar_padding']}"&gt;<br />
							{&#36;post['useravatar']}<br />
						&lt;/td&gt;<br />
						&lt;td class="post_author"&gt;<br />
							&lt;strong&gt;&lt;span class="largetext"&gt;{&#36;post['profilelink']}&lt;/span&gt;&lt;/strong&gt; {&#36;post['onlinestatus']}&lt;br /&gt;<br />
							&lt;span class="smalltext"&gt;<br />
								{&#36;post['usertitle']}&lt;br /&gt;<br />
								{&#36;post['userstars']}<br />
								{&#36;post['groupimage']}<br />
							&lt;/span&gt;<br />
						&lt;/td&gt;<br />
						&lt;td class="smalltext post_author_info" width="165"&gt;<br />
							{&#36;post['user_details']}<br />
						&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
				&lt;/table&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1 {&#36;unapproved_shade}"&gt;<br />
				&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="clear: both;"&gt;<br />
					&lt;tr&gt;<br />
						&lt;td width="50%" valign="top"&gt;<br />
							&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" width="100%" class="trow1"&gt;<br />
								&lt;tr&gt;<br />
									&lt;td class="thead" colspan="2" align="center"&gt;<br />
										&lt;strong&gt;{&#36;GLOBALS['threadfields']['profname']}'s Profile&lt;/strong&gt;<br />
									&lt;/td&gt;<br />
								&lt;/tr&gt;<br />
								&lt;tr&gt;<br />
									&lt;td width="1"&gt;<br />
										{&#36;GLOBALS['threadfields']['profpic']['value']}<br />
									&lt;/td&gt;<br />
									&lt;td&gt;<br />
										&lt;table border="0" width="100%" class="trow1"&gt;<br />
											&lt;tr&gt;<br />
												&lt;td&gt;Sim's Name&lt;/td&gt;&lt;td width="1"&gt;:&lt;/td&gt;&lt;td&gt;{&#36;GLOBALS['threadfields']['profname']}&lt;/td&gt;<br />
											&lt;/tr&gt;<br />
											&lt;tr&gt;<br />
												&lt;td&gt;Sim's Gender&lt;/td&gt;&lt;td width="1"&gt;:&lt;/td&gt;&lt;td&gt;{&#36;GLOBALS['threadfields']['profgender']}&lt;/td&gt;<br />
											&lt;/tr&gt;<br />
											&lt;tr&gt;<br />
												&lt;td&gt;Sim's Status&lt;/td&gt;&lt;td width="1"&gt;:&lt;/td&gt;&lt;td&gt;{&#36;GLOBALS['threadfields']['profstatus']}&lt;/td&gt;<br />
											&lt;/tr&gt;<br />
											&lt;tr&gt;<br />
												&lt;td&gt;Sim's Career&lt;/td&gt;&lt;td width="1"&gt;:&lt;/td&gt;&lt;td&gt;{&#36;GLOBALS['threadfields']['profcareer']}&lt;/td&gt;<br />
											&lt;/tr&gt;<br />
											&lt;tr&gt;<br />
												&lt;td&gt;Sim's Friends&lt;/td&gt;&lt;td width="1"&gt;:&lt;/td&gt;&lt;td&gt;{&#36;GLOBALS['threadfields']['profffriends']}&lt;/td&gt;<br />
											&lt;/tr&gt;<br />
											&lt;tr&gt;<br />
												&lt;td&gt;Sim's Age&lt;/td&gt;&lt;td width="1"&gt;:&lt;/td&gt;&lt;td&gt;{&#36;GLOBALS['threadfields']['profage']}&lt;/td&gt;<br />
											&lt;/tr&gt;<br />
										&lt;/table&gt;<br />
									&lt;/td&gt;<br />
								&lt;/tr&gt;<br />
							&lt;/table&gt;<br />
						&lt;/td&gt;<br />
						&lt;td&gt;&amp;nbsp;&lt;/td&gt;<br />
						&lt;td width="50%" valign="top"&gt;<br />
							&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" width="100%" class="trow1"&gt;<br />
								&lt;tr&gt;<br />
									&lt;td class="thead" align="center"&gt;<br />
										&lt;strong&gt;{&#36;GLOBALS['threadfields']['profname']}'s Skills&lt;/strong&gt;<br />
									&lt;/td&gt;<br />
								&lt;/tr&gt;<br />
								&lt;tr&gt;<br />
									&lt;td&gt;<br />
										&lt;table border="0" width="100%" class="trow1"&gt;<br />
											{&#36;GLOBALS['threadfields']['profcooking']}<br />
											{&#36;GLOBALS['threadfields']['profmechanical']}<br />
											{&#36;GLOBALS['threadfields']['profcharisma']}<br />
											{&#36;GLOBALS['threadfields']['profcreativity']}<br />
											{&#36;GLOBALS['threadfields']['profbody']}<br />
											{&#36;GLOBALS['threadfields']['proflogic']}<br />
										&lt;/table&gt;<br />
									&lt;/td&gt;<br />
								&lt;/tr&gt;<br />
							&lt;/table&gt;<br />
						&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
					&lt;tr&gt;<br />
						&lt;td colspan="3"&gt;<br />
							&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" width="100%" class="trow1"&gt;<br />
								&lt;tr&gt;<br />
									&lt;td class="thead" colspan="2" align="center" valign="middle"&gt;<br />
										&lt;strong&gt;{&#36;GLOBALS['threadfields']['profname']}'s Pictures&lt;/strong&gt;<br />
									&lt;/td&gt;<br />
								&lt;/tr&gt;<br />
								&lt;tr&gt;<br />
									&lt;td align="center"&gt;<br />
										{&#36;GLOBALS['threadfields']['profpic1']['value']}<br />
										{&#36;GLOBALS['threadfields']['profpic2']['value']}<br />
										{&#36;GLOBALS['threadfields']['profpic3']['value']}<br />
										{&#36;GLOBALS['threadfields']['profpic4']['value']}<br />
										{&#36;GLOBALS['threadfields']['profpic5']['value']}<br />
									&lt;/td&gt;<br />
								&lt;/tr&gt;<br />
							&lt;/table&gt;<br />
						&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
				&lt;/table&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
<br />
		&lt;tr&gt;<br />
			&lt;td class="tcat"&gt;<br />
				&lt;div class="float_left smalltext"&gt;<br />
					{&#36;post['postdate']}, {&#36;post['posttime']} &lt;span id="edited_by_{&#36;post['pid']}"&gt;{&#36;post['editedmsg']}&lt;/span&gt;<br />
				&lt;/div&gt;<br />
				{&#36;post['posturl']}<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
<br />
		&lt;tr&gt;<br />
			&lt;td class="trow2 post_content {&#36;unapproved_shade}"&gt;<br />
				&lt;span class="smalltext"&gt;&lt;strong&gt;{&#36;post['icon']}{&#36;post['subject']} {&#36;post['subject_extra']}&lt;/strong&gt;&lt;/span&gt;<br />
<br />
				&lt;div class="post_body" id="pid_{&#36;post['pid']}"&gt;<br />
					{&#36;post['message']}<br />
				&lt;/div&gt;<br />
				{&#36;post['attachments']}<br />
				{&#36;post['signature']}<br />
<br />
				&lt;div class="post_meta" id="post_meta_{&#36;post['pid']}"&gt;<br />
				{&#36;post['iplogged']}<br />
				&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1 post_buttons {&#36;unapproved_shade}"&gt;<br />
				&lt;div class="author_buttons float_left"&gt;<br />
					{&#36;post['button_email']}{&#36;post['button_pm']}{&#36;post['button_www']}{&#36;post['button_find']}<br />
				&lt;/div&gt;<br />
				&lt;div class="post_management_buttons float_right"&gt;{&#36;post['button_edit']}{&#36;post['button_quickdelete']}{&#36;post['button_quote']}{&#36;post['button_multiquote']}{&#36;post['button_report']}{&#36;post['button_warn']}{&#36;post['button_reply_pm']}{&#36;post['button_replyall_pm']}{&#36;post['button_forward_pm']}{&#36;post['button_delete_pm']}<br />
				&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/tbody&gt;<br />
&lt;/table&gt;</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> prof_showthread<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;{&#36;thread['subject']}&lt;/title&gt;<br />
{&#36;headerinclude}<br />
&lt;script type="text/javascript"&gt;<br />
&lt;!--<br />
	var quickdelete_confirm = "{&#36;lang-&gt;quickdelete_confirm}";<br />
// <img src="https://gidenler.me/images/smilies/sag_ok.png" alt="Sağ ok" title="Sağ ok" class="smilie smilie_54" /><br />
&lt;/script&gt;<br />
&lt;script type="text/javascript" src="jscripts/thread.js?ver=1400"&gt;&lt;/script&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
{&#36;header}<br />
{&#36;pollbox}<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="clear: both; border-bottom-width: 0;"&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="thead" colspan="2"&gt;<br />
			&lt;div style="float: right;"&gt;<br />
				&lt;span class="smalltext"&gt;&lt;strong&gt;&lt;a href="showthread.php?mode=threaded&amp;amp;tid={&#36;tid}&amp;amp;pid={&#36;pid}#pid{&#36;pid}"&gt;{&#36;lang-&gt;threaded}&lt;/a&gt; | &lt;a href="showthread.php?mode=linear&amp;amp;tid={&#36;tid}&amp;amp;pid={&#36;pid}#pid{&#36;pid}"&gt;{&#36;lang-&gt;linear}&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;<br />
			&lt;/div&gt;<br />
			&lt;div&gt;<br />
				&lt;strong&gt;{&#36;thread['subject']}&lt;/strong&gt;<br />
			&lt;/div&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
	{&#36;classic_header}<br />
&lt;/table&gt;<br />
&lt;div&gt;<br />
	{&#36;first_post}<br />
&lt;/div&gt;<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="border-top-width: 0;"&gt;<br />
	&lt;tr&gt;<br />
		&lt;td colspan="2" class="tfoot"&gt;<br />
			{&#36;search_thread}<br />
			&lt;div&gt;<br />
				&lt;strong&gt;&amp;laquo; &lt;a href="{&#36;next_oldest_link}"&gt;{&#36;lang-&gt;next_oldest}&lt;/a&gt; | &lt;a href="{&#36;next_newest_link}"&gt;{&#36;lang-&gt;next_newest}&lt;/a&gt; &amp;raquo;&lt;/strong&gt;<br />
			&lt;/div&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;br class="clear" /&gt;<br />
&lt;div class="float_left"&gt;<br />
	{&#36;multipage}<br />
&lt;/div&gt;<br />
&lt;div class="float_right"&gt;<br />
	{&#36;newreply}<br />
&lt;/div&gt;<br />
{&#36;ratethread}<br />
&lt;br class="clear" /&gt;<br />
&lt;div id="posts"&gt;<br />
	{&#36;posts}<br />
&lt;/div&gt;<br />
&lt;br style="clear: both;" /&gt;<br />
&lt;div class="float_left"&gt;<br />
	{&#36;multipage}<br />
&lt;/div&gt;<br />
&lt;div style="padding-top: 4px;" class="float_right"&gt;<br />
	{&#36;newreply}<br />
&lt;/div&gt;<br />
&lt;br style="clear: both;" /&gt;<br />
{&#36;quickreply}<br />
{&#36;threadexbox}<br />
{&#36;similarthreads}<br />
&lt;br /&gt;<br />
&lt;div class="float_left"&gt;<br />
	&lt;ul class="thread_tools"&gt;<br />
		&lt;li class="printable"&gt;&lt;a href="printthread.php?tid={&#36;tid}"&gt;{&#36;lang-&gt;view_printable}&lt;/a&gt;&lt;/li&gt;<br />
		&lt;li class="sendthread"&gt;&lt;a href="sendthread.php?tid={&#36;tid}"&gt;{&#36;lang-&gt;send_thread}&lt;/a&gt;&lt;/li&gt;<br />
		&lt;li class="subscription_{&#36;add_remove_subscription}"&gt;&lt;a href="usercp2.php?action={&#36;add_remove_subscription}subscription&amp;amp;tid={&#36;tid}&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;{&#36;add_remove_subscription_text}&lt;/a&gt;&lt;/li&gt;<br />
	&lt;/ul&gt;<br />
&lt;/div&gt;<br />
<br />
&lt;div class="float_right" style="text-align: right;"&gt;<br />
	{&#36;moderationoptions}<br />
	{&#36;forumjump}<br />
&lt;/div&gt;<br />
&lt;br style="clear: both;" /&gt;<br />
{&#36;footer}<br />
&lt;/body&gt;<br />
&lt;/html&gt;</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> prof_showthread_noreplies<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;div id="xthreads_noreplies"&gt;<br />
&lt;table border="0" cellspacing="{&#36;GLOBALS['theme']['borderwidth']}" cellpadding="{&#36;GLOBALS['theme']['tablespace']}" class="tborder"&gt;<br />
	&lt;tbody&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="tcat"&gt;<br />
				&lt;div class="float_left smalltext"&gt;<br />
					 &lt;strong&gt;Leave Your Comments For This Sim&lt;/strong&gt;<br />
				&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1"&gt;<br />
				&lt;div class="post_body"&gt;<br />
					You can leave your comments for this Sims.<br />
				&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/tbody&gt;<br />
&lt;/table&gt;<br />
&lt;/div&gt;</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> prof_showthread_ratethread<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;div style="margin-top: 6px; padding-right: 10px;" class="float_right"&gt;<br />
		&lt;script type="text/javascript" src="jscripts/rating.js?ver=1400"&gt;&lt;/script&gt;<br />
		&lt;div id="success_rating_{&#36;thread['tid']}" style="float: left; padding-top: 2px; padding-right: 10px;"&gt;&amp;nbsp;&lt;/div&gt;<br />
		&lt;strong style="float: left; padding-right: 10px;"&gt;Sim's Rating&lt;/strong&gt;<br />
		&lt;div class="inline_rating"&gt;<br />
			&lt;ul class="star_rating{&#36;not_rated}" id="rating_thread_{&#36;thread['tid']}"&gt;<br />
				&lt;li style="width: {&#36;thread['width']}%" class="current_rating" id="current_rating_{&#36;thread['tid']}"&gt;{&#36;ratingvotesav}&lt;/li&gt;<br />
				&lt;li&gt;&lt;a class="one_star" title="{&#36;lang-&gt;one_star}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=1&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;1&lt;/a&gt;&lt;/li&gt;<br />
				&lt;li&gt;&lt;a class="two_stars" title="{&#36;lang-&gt;two_stars}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=2&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;2&lt;/a&gt;&lt;/li&gt;<br />
				&lt;li&gt;&lt;a class="three_stars" title="{&#36;lang-&gt;three_stars}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=3&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;3&lt;/a&gt;&lt;/li&gt;<br />
				&lt;li&gt;&lt;a class="four_stars" title="{&#36;lang-&gt;four_stars}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=4&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;4&lt;/a&gt;&lt;/li&gt;<br />
				&lt;li&gt;&lt;a class="five_stars" title="{&#36;lang-&gt;five_stars}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=5&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;5&lt;/a&gt;&lt;/li&gt;<br />
			&lt;/ul&gt;<br />
		&lt;/div&gt;<br />
&lt;/div&gt;</code></div></div>
</li>
</ul>
<br />
Please let me know if I missed somethings <img src="https://gidenler.me/images/v2/smile/o3.gif" alt="Smile" title="Smile" class="smilie smilie_1" /><br />
<br />
Screenshots:<br />
<br />
1. User create a product review thread:<br />
<br />
<img src="http://i46.tinypic.com/drf8qw.jpg" loading="lazy"  alt="[Resim: drf8qw.jpg]" class="mycode_img" /><br />
<br />
2. User view the post:<br />
<br />
<img src="http://i45.tinypic.com/25qu2zc.jpg" loading="lazy"  alt="[Resim: 25qu2zc.jpg]" class="mycode_img" /><br />
<br />
3. Thread List:<br />
<br />
<img src="http://i45.tinypic.com/xyofr.jpg" loading="lazy"  alt="[Resim: xyofr.jpg]" class="mycode_img" /><br />
<br />
I have created a live demo for this:<br />
<a href="http://www.14.mynie.co.cc/forumdisplay.php?fid=6" target="_blank" rel="noopener" class="mycode_url">http://www.14.mynie.co.cc/forumdisplay.php?fid=6</a>]]></description>
			<content:encoded><![CDATA[Requirement: <span style="font-weight: bold;" class="mycode_b"><a href="http://mybbhacks.zingaburga.com/showthread.php?tid=288" target="_blank" rel="noopener" class="mycode_url">XThreads</a></span><br />
<br />
With XThreads, we can create profile forum. The basic idea is, our member can create a profile thread, which is contains their character in a game. They can upload their screenshots from the game, and fill various info about their character. And they can edit it whenever they want.<br />
<br />
Unfortunately, it is hard to give an example for each game, so, we will take The Sims game in this example. If we want to apply it for another game, we need to modify the info / XThreads thread fields to make it suitable with that game.<br />
<br />
Possibility for another usage: we can use it as another profile page for our member. With XThreads <span style="font-style: italic;" class="mycode_i">Viewable by Usergroups</span> settings, we can create "private" info for the profile thread. And, because XThreads has an ability to choose in which forum id(s) a XThreads thread field can be used, it will make us easier to choose which usegroup can create a profile thread. We can combine it with forum permission.<br />
<br />
We can use the forum permission for this example too: if we have a RPG forum which has more than one usergroup as clan, we can set the forum permission for each usergroup / clan. And then, we can set the forum related to a clan with custom XThreads thread field. So, each usergroup / clan will has different info / stats. Plus, if we want to create some "private" info / stats (viewable by that clan member only), we can use XThreads <span style="font-style: italic;" class="mycode_i">Viewable by Usergroups</span> feature. Great, huh? A lot of "magic" can be done by XThreads!<br />
<br />
Here is a simple example to create a Profile Forum (based on The Sims Game):<br />
<br />
1. Textbox for Sim's Name:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Your Sim's Name<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> profname<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select a forum that we will apply the profile forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Textbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['profname']}</span>.<br />
</li>
</ul>
<br />
2. Listbox for Sim's Gender:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Your Sim's Gender<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> profgender<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select the profile forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Listbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Height:</span> 1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Values List:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>Male<br />
Female</code></div></div>Do we need to modify it? <img src="https://gidenler.me/images/v2/smile/=D.gif" alt="Big Grin" title="Big Grin" class="smilie smilie_4" /><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 2<br />
Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['profgender']}</span>.<br />
</li>
</ul>
<br />
3. Listbox for Sim's Status:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Your Sim's Status<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> profstatus<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select the profile forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Listbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Height:</span> 1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Values List:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>Single<br />
Married</code></div></div>Modify it as our need.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 3<br />
Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['profstatus']}</span>.<br />
</li>
</ul>
<br />
4. Listbox for Sim's Main Career:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Your Sim's Main Career<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> profcareer<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select the profile forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Listbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Height:</span> 1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Values List:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>None<br />
Business<br />
Entertainment<br />
Law Enforcement</code></div></div>Modify it as our need.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 4<br />
Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['profcareer']}</span>.<br />
</li>
</ul>
<br />
5. Textbox for Family Friends:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Family Friends<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> profffriends<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Description:</span> The number of your family friends. e.g: 99. Leave it blank if you didn't have any friends yet.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select the profile forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Textbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 5<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Blank Replacement Value:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;em&gt;None&lt;/em&gt;</code></div></div>
</li>
<li><span style="font-weight: bold;" class="mycode_b">Text Mask Filter:</span> <div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>^[0-9]{1,3}&#36;</code></div></div>I'm not quite sure how much the maximum number of family friends for a Sim.<br />
Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['profffriends']}</span>.<br />
</li>
</ul>
<br />
6. Textbox for Sim's Age:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Your Sim's Age<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> profage<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Description:</span> Your Sim's age in year. e.g: 9. Leave it blank if it is less than 1 year.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select the profile forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Textbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 6<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Blank Replacement Value:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;em&gt;Less than one year old&lt;/em&gt;</code></div></div>
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>{VALUE} Years Old</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Text Mask Filter:</span> <div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>^[0-9]{1,2}&#36;</code></div></div>I hope it is enough.<br />
Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['profage']}</span>.<br />
</li>
</ul>
<br />
7. File Input for Sim's Picture:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Your Sim's Picture<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> profpic<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Description:</span> Upload your Sim's picture - Required<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select the profile forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> File<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Valid File Extensions:</span> gif|png|jpg|jpeg<br />
Modify it as our needs. It is the extensions of image that can be uploaded.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Maximum File Size:</span> 1048576<br />
Modify it as our needs. It is a maximum file size (in bytes) that can be uploaded. In this example, 1 Mb.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 7<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Only accept uploaded images:</span> Yes<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Image Thumbnail Generation:</span> 160x120<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;img src="{URL}/thumb160x120" alt="" title="" style="margin: 3px;" /&gt;</code></div></div>
Variable for displaying this value in our template: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['profpic']['value']}</span><br />
</li>
</ul>
<br />
8. Listbox for Sim's Skill:<br />
Repeat this step as our needs. Just remember to use a different <span style="font-style: italic;" class="mycode_i">Title</span> and <span style="font-style: italic;" class="mycode_i">Key</span>. And modify the <span style="font-style: italic;" class="mycode_i">Blank Replacement Value</span> and the <span style="font-style: italic;" class="mycode_i">Display Format</span> too, especially for the word <span style="font-style: italic;" class="mycode_i">Cooking Level</span>.<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Cooking Skill<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> profcooking<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select the profile forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Listbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Height:</span> 1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Values List:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>1<br />
2<br />
3<br />
4<br />
5<br />
6<br />
7<br />
8<br />
9<br />
10</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 8<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Blank Replacement Value:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;tr&gt;&lt;td width="150"&gt;Cooking Level&lt;/td&gt;<br />
&lt;td width="1"&gt;:&lt;/td&gt;<br />
&lt;td&gt;<br />
&lt;div class="tcat" style="width: 250px;" align="center"&gt;<br />
&lt;strong&gt;Level 0&lt;/strong&gt;<br />
&lt;/div&gt;<br />
&lt;/td&gt;<br />
&lt;/tr&gt;</code></div></div>
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;tr&gt;&lt;td width="150"&gt;Cooking Level&lt;/td&gt;<br />
&lt;td width="1"&gt;:&lt;/td&gt;<br />
&lt;td&gt;<br />
&lt;div class="tcat" style="width: 250px;"&gt;<br />
&lt;div class="thead" style="width: {VALUE}0%; white-space: nowrap;"&gt;<br />
&lt;span style="margin-left: 9px;"&gt;&lt;strong&gt;Level {VALUE}&lt;/strong&gt;&lt;/span&gt;<br />
&lt;/div&gt;<br />
&lt;/div&gt;<br />
&lt;/td&gt;&lt;/tr&gt;</code></div></div>
Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['profcooking']}</span>.<br />
Use different variable if we repeat this step. Modify the <span style="font-style: italic;" class="mycode_i">profcooking</span> word to match with the key.<br />
Example:<br />
Key: profbody<br />
Variable: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['profbody']}</span><br />
</li>
</ul>
<br />
Optional step: We can create another File input for Additional Sim's Pictures. Just use another <span style="font-style: italic;" class="mycode_i">Key</span> for that. Example:<br />
<br />
Opt 1. File input for Additional Sim's Pictures.<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Your Add Sim's Picture<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> profpic1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Description:</span> Upload an additional picture - Not required<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select the profile forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> File<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Valid File Extensions:</span> gif|png|jpg|jpeg<br />
Modify it as our needs. It is the extensions of image that can be uploaded.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Maximum File Size:</span> 1048576<br />
Modify it as our needs. It is a maximum file size (in bytes) that can be uploaded. In this example, 1 Mb.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 9<br />
Modify it as our need.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Only accept uploaded images:</span> Yes<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Image Thumbnail Generation:</span> 160x120<br />
Modify it as our needs. It is thumbnail sizes that we can use for this image.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Blank Replacement Value:</span> <span style="font-family: Courier;" class="mycode_font">&amp;nbsp;</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format:</span> <div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;a href="{URL}"&gt;&lt;img src="{URL}/thumb160x120" alt="" title="{&#36;GLOBALS['threadfields']['profdesc1']}" style="border: 1px solid #C1C1C1; padding: 3px; margin: 3px;" /&gt;&lt;/a&gt;</code></div></div>
Variable for displaying this value in our template: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['profpic1']['value']}</span><br />
If we didn't use the <span style="font-style: italic;" class="mycode_i">Opt 2</span> step, remove <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['profdesc1']}</span> variable from the <span style="font-style: italic;" class="mycode_i">title</span> attribute.<br />
</li>
</ul>
<br />
Opt 2. Textbox for Additional Picture Description:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Additional Picture Description 1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> profdesc1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Description:</span> Description for the additional picture - Not Required<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select the profile forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Textbox<br />
I think 255 chars is enough.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 10<br />
Modify it as our needs.<br />
</li>
</ul>
<br />
Repeat two steps above depend on max images that user can upload. And use different <span style="font-style: italic;" class="mycode_i">Key</span>.<br />
<br />
9. Now, XThreads Options in Forum settings (the Profile Forum):<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Prefix:</span> <span style="font-style: italic;" class="mycode_i">prof_</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Thread Grouping:</span> 2<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Show first post on every showthread page:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Enable XThreads' Inline Forum Search:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Force Postbit Layout:</span> Force horizontal postbit layout<br />
</li>
</ul>
<br />
Optional setting: Set forum permission for which usergroup can create thread in this forum.<br />
<br />
10. Create new templates in Global Template:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> prof_forumdisplay_group_sep<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;/tr&gt;<br />
&lt;tr&gt;</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> prof_forumdisplay_nothreads<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;td&gt;<br />
	&lt;table border="0" cellspacing="{&#36;GLOBALS['theme']['borderwidth']}" cellpadding="{&#36;GLOBALS['theme']['tablespace']}" class="tborder" style="clear: both;"&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="thead" align="center" colspan="{&#36;GLOBALS['colspan']}"&gt;<br />
				&lt;div&gt;&lt;strong&gt;Add Your Sims!&lt;/strong&gt;&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1" align="center"&gt;<br />
				Show us your Sims! You can edit your Sim's stats and pictures whenever you want!<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/table&gt;<br />
&lt;/td&gt;</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> prof_forumdisplay_thread<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;td width="50%" valign="top"&gt;<br />
	&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="clear: both;"&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="thead" align="center" colspan="{&#36;colspan}"&gt;<br />
				&lt;div&gt;&lt;strong&gt;&lt;a href="{&#36;thread['threadlink']}" class="{&#36;inline_edit_class} {&#36;new_class}" id="tid_{&#36;inline_edit_tid}"&gt;{&#36;thread['subject']}&lt;/a&gt;&lt;/strong&gt;&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="{&#36;bgcolor}" width="1"&gt;<br />
				&lt;div align="center"&gt;<br />
					{&#36;GLOBALS['threadfields']['profpic']['value']}<br />
				&lt;/div&gt;<br />
			&lt;/td&gt;<br />
			&lt;td class="{&#36;bgcolor}" width="100%"&gt;<br />
				&lt;table border="0" width="100%"&gt;<br />
					&lt;tr&gt;<br />
						&lt;td&gt;Sim's Owner&lt;/td&gt;&lt;td width="1"&gt;:&lt;/td&gt;&lt;td&gt;{&#36;thread['profilelink']}&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
					&lt;tr&gt;<br />
						&lt;td&gt;Sim's Name&lt;/td&gt;&lt;td width="1"&gt;:&lt;/td&gt;<br />
						&lt;td&gt;&lt;a href="{&#36;thread['threadlink']}"&gt;{&#36;GLOBALS['threadfields']['profname']}&lt;/a&gt;&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
					{&#36;rating}<br />
					&lt;tr&gt;<br />
						&lt;td&gt;Sim's Viewed&lt;/td&gt;&lt;td width="1"&gt;:&lt;/td&gt;&lt;td&gt;{&#36;thread['views']}&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
					&lt;tr&gt;<br />
						&lt;td valign="top"&gt;Commented&lt;/td&gt;<br />
						&lt;td width="1" valign="top"&gt;:&lt;/td&gt;<br />
						&lt;td valign="top"&gt;<br />
							&lt;a href="javascript:MyBB.whoPosted({&#36;thread['tid']});"&gt;{&#36;thread['replies']}&lt;/a&gt;{&#36;unapproved_posts}<br />
						&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
				&lt;/table&gt;<br />
			&lt;/td&gt;<br />
			{&#36;modbit}<br />
		&lt;/tr&gt;<br />
	&lt;/table&gt;<br />
&lt;/td&gt;</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> prof_forumdisplay_threadlist<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;div class="float_left"&gt;<br />
	{&#36;multipage}<br />
&lt;/div&gt;<br />
&lt;div class="float_right"&gt;<br />
	{&#36;newthread}<br />
&lt;/div&gt;<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="clear: both;"&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="thead" colspan="{&#36;colspan}"&gt;<br />
			&lt;div align="center"&gt;<br />
				&lt;strong&gt;{&#36;foruminfo['name']}&lt;/strong&gt;<br />
			&lt;/div&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="tcat smalltext" width="100%" colspan="2"&gt;<br />
			&lt;span class="float_left"&gt;<br />
				&lt;strong&gt;Sort By: &lt;a href="{&#36;sorturl}&amp;amp;sortby=subject&amp;amp;order=asc"&gt;{&#36;lang-&gt;thread}&lt;/a&gt; {&#36;orderarrow['subject']} | &lt;a href="{&#36;sorturl}&amp;amp;sortby=starter&amp;amp;order=asc"&gt;{&#36;lang-&gt;author}&lt;/a&gt; {&#36;orderarrow['starter']} | &lt;a href="{&#36;sorturl}&amp;amp;sortby=replies&amp;amp;order=desc"&gt;{&#36;lang-&gt;replies}&lt;/a&gt; {&#36;orderarrow['replies']} | &lt;a href="{&#36;sorturl}&amp;amp;sortby=views&amp;amp;order=desc"&gt;{&#36;lang-&gt;views}&lt;/a&gt; {&#36;orderarrow['views']} {&#36;ratingcol} | &lt;a href="{&#36;sorturl}&amp;amp;sortby=lastpost&amp;amp;order=desc"&gt;{&#36;lang-&gt;lastpost}&lt;/a&gt; {&#36;orderarrow['lastpost']}&lt;/strong&gt;<br />
			&lt;/span&gt;<br />
			&lt;span class="float_right"&gt;<br />
				&lt;strong&gt;&lt;a href="misc.php?action=markread&amp;amp;fid={&#36;fid}"&gt;{&#36;lang-&gt;markforum_read}&lt;/a&gt; | &lt;a href="usercp2.php?action={&#36;add_remove_subscription}subscription&amp;amp;type=forum&amp;amp;fid={&#36;fid}&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;{&#36;add_remove_subscription_text}&lt;/a&gt;{&#36;clearstoredpass}&lt;/strong&gt;<br />
			&lt;/span&gt;<br />
		&lt;/td&gt;<br />
		{&#36;inlinemodcol}<br />
	&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;br class="clear" /&gt;<br />
&lt;table border="0" width="100%" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}"&gt;<br />
	&lt;tr&gt;<br />
		{&#36;threads}{&#36;nullthreads}<br />
	&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;br class="clear" /&gt;<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="clear: both;"&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="tcat" colspan="{&#36;colspan}"&gt;<br />
			&lt;span class="float_left"&gt;<br />
				&lt;form action="forumdisplay.php" method="get"&gt;<br />
					&lt;input type="hidden" name="fid" value="{&#36;fid}" /&gt;<br />
					&lt;select name="sortby"&gt;<br />
						&lt;option value="subject" {&#36;sortsel['subject']}&gt;{&#36;lang-&gt;sort_by_subject}&lt;/option&gt;<br />
						&lt;option value="lastpost" {&#36;sortsel['lastpost']}&gt;{&#36;lang-&gt;sort_by_lastpost}&lt;/option&gt;<br />
						&lt;option value="starter" {&#36;sortsel['starter']}&gt;{&#36;lang-&gt;sort_by_starter}&lt;/option&gt;<br />
						&lt;option value="started" {&#36;sortsel['started']}&gt;{&#36;lang-&gt;sort_by_started}&lt;/option&gt;<br />
						{&#36;ratingsort}<br />
						&lt;option value="replies" {&#36;sortsel['replies']}&gt;{&#36;lang-&gt;sort_by_replies}&lt;/option&gt;<br />
						&lt;option value="views" {&#36;sortsel['views']}&gt;{&#36;lang-&gt;sort_by_views}&lt;/option&gt;<br />
					&lt;/select&gt;<br />
					&lt;select name="order"&gt;<br />
						&lt;option value="asc" {&#36;ordersel['asc']}&gt;{&#36;lang-&gt;sort_order_asc}&lt;/option&gt;<br />
						&lt;option value="desc" {&#36;ordersel['desc']}&gt;{&#36;lang-&gt;sort_order_desc}&lt;/option&gt;<br />
					&lt;/select&gt;<br />
					&lt;select name="datecut"&gt;<br />
						&lt;option value="1" {&#36;datecutsel['1']}&gt;{&#36;lang-&gt;datelimit_1day}&lt;/option&gt;<br />
						&lt;option value="5" {&#36;datecutsel['5']}&gt;{&#36;lang-&gt;datelimit_5days}&lt;/option&gt;<br />
						&lt;option value="10" {&#36;datecutsel['10']}&gt;{&#36;lang-&gt;datelimit_10days}&lt;/option&gt;<br />
						&lt;option value="20" {&#36;datecutsel['20']}&gt;{&#36;lang-&gt;datelimit_20days}&lt;/option&gt;<br />
						&lt;option value="50" {&#36;datecutsel['50']}&gt;{&#36;lang-&gt;datelimit_50days}&lt;/option&gt;<br />
						&lt;option value="75" {&#36;datecutsel['75']}&gt;{&#36;lang-&gt;datelimit_75days}&lt;/option&gt;<br />
						&lt;option value="100" {&#36;datecutsel['100']}&gt;{&#36;lang-&gt;datelimit_100days}&lt;/option&gt;<br />
						&lt;option value="365" {&#36;datecutsel['365']}&gt;{&#36;lang-&gt;datelimit_lastyear}&lt;/option&gt;<br />
						&lt;option value="9999" {&#36;datecutsel['9999']}&gt;{&#36;lang-&gt;datelimit_beginning}&lt;/option&gt;<br />
					&lt;/select&gt;<br />
					{&#36;gobutton}<br />
				&lt;/form&gt;<br />
			&lt;/span&gt;<br />
			&lt;span class="float_right"&gt;<br />
				{&#36;forumjump}<br />
			&lt;/span&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="tfoot" align="center" colspan="{&#36;colspan}"&gt;<br />
			&lt;strong&gt;&lt;a href="http://mybbhacks.zingaburga.com"&gt;XThreads&lt;/a&gt; - &lt;a href="http://mybbhacks.zingaburga.com"&gt;MyBB Hacks&lt;/a&gt;&lt;/strong&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;div class="float_left"&gt;<br />
	{&#36;multipage}<br />
&lt;/div&gt;<br />
&lt;div class="float_right" style="margin-top: 4px;"&gt;<br />
	{&#36;newthread}<br />
&lt;/div&gt;<br />
&lt;br style="clear: both;" /&gt;<br />
&lt;br /&gt;<br />
&lt;div class="float_left"&gt;<br />
	&lt;div class="float_left"&gt;<br />
		&lt;dl class="thread_legend smalltext"&gt;<br />
			&lt;dd&gt;&lt;img src="{&#36;theme['imgdir']}/newfolder.gif" alt="{&#36;lang-&gt;new_thread}" title="{&#36;lang-&gt;new_thread}" /&gt; {&#36;lang-&gt;new_thread}&lt;/dd&gt;<br />
			&lt;dd&gt;&lt;img src="{&#36;theme['imgdir']}/newhotfolder.gif" alt="{&#36;lang-&gt;new_hot_thread}" title="{&#36;lang-&gt;new_hot_thread}" /&gt; {&#36;lang-&gt;new_hot_thread}&lt;/dd&gt;<br />
			&lt;dd&gt;&lt;img src="{&#36;theme['imgdir']}/hotfolder.gif" alt="{&#36;lang-&gt;hot_thread}" title="{&#36;lang-&gt;hot_thread}" /&gt; {&#36;lang-&gt;hot_thread}&lt;/dd&gt;<br />
		&lt;/dl&gt;<br />
	&lt;/div&gt;<br />
<br />
	&lt;div class="float_left"&gt;<br />
		&lt;dl class="thread_legend smalltext"&gt;<br />
			&lt;dd&gt;&lt;img src="{&#36;theme['imgdir']}/folder.gif" alt="{&#36;lang-&gt;no_new_thread}" title="{&#36;lang-&gt;no_new_thread}" /&gt; {&#36;lang-&gt;no_new_thread}&lt;/dd&gt;<br />
			&lt;dd&gt;&lt;img src="{&#36;theme['imgdir']}/dot_folder.gif" alt="{&#36;lang-&gt;posts_by_you}" title="{&#36;lang-&gt;posts_by_you}" /&gt; {&#36;lang-&gt;posts_by_you}&lt;/dd&gt;<br />
			&lt;dd&gt;&lt;img src="{&#36;theme['imgdir']}/lockfolder.gif" alt="{&#36;lang-&gt;locked_thread}" title="{&#36;lang-&gt;locked_thread}" /&gt; {&#36;lang-&gt;locked_thread}&lt;/dd&gt;<br />
		&lt;/dl&gt;<br />
	&lt;/div&gt;<br />
	&lt;br style="clear: both" /&gt;<br />
&lt;/div&gt;<br />
<br />
&lt;div class="float_right" style="text-align: right;"&gt;<br />
	{&#36;searchforum}<br />
	{&#36;inlinemod}<br />
&lt;/div&gt;<br />
&lt;br style="clear: both" /&gt;<br />
{&#36;inline_edit_js}</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> prof_forumdisplay_threadlist_rating<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>| &lt;a href="{&#36;sorturl}&amp;amp;sortby=rating&amp;amp;order=desc"&gt;{&#36;lang-&gt;rating}&lt;/a&gt; {&#36;orderarrow['rating']}<br />
&lt;script type="text/javascript" src="jscripts/rating.js?ver=1400"&gt;&lt;/script&gt;<br />
&lt;script type="text/javascript"&gt;<br />
&lt;!--<br />
	lang.stars = new Array();<br />
	lang.stars[1] = "{&#36;lang-&gt;one_star}";<br />
	lang.stars[2] = "{&#36;lang-&gt;two_stars}";<br />
	lang.stars[3] = "{&#36;lang-&gt;three_stars}";<br />
	lang.stars[4] = "{&#36;lang-&gt;four_stars}";<br />
	lang.stars[5] = "{&#36;lang-&gt;five_stars}";<br />
// <img src="https://gidenler.me/images/smilies/sag_ok.png" alt="Sağ ok" title="Sağ ok" class="smilie smilie_54" /><br />
&lt;/script&gt;</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> prof_forumdisplay_thread_null<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;td width="50%" valign="top"&gt;<br />
	&lt;table border="0" cellspacing="{&#36;GLOBALS['theme']['borderwidth']}" cellpadding="{&#36;GLOBALS['theme']['tablespace']}" class="tborder" style="clear: both;"&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="thead" align="center" colspan="{&#36;GLOBALS['colspan']}"&gt;<br />
				&lt;div&gt;&lt;strong&gt;Add Your Sims!&lt;/strong&gt;&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1" style="text-align: justify;"&gt;<br />
				Show us your Sims! You can edit your Sim's stats and pictures whenever you want!<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="tfoot" align="center"&gt;<br />
				&lt;strong&gt;Total Sims Added: {&#36;GLOBALS['threadcount']} Sims&lt;/strong&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/table&gt;<br />
&lt;/td&gt;</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> prof_forumdisplay_thread_rating<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;tr&gt;<br />
	&lt;td&gt;Sim's Rating&lt;/td&gt;<br />
	&lt;td&gt;:&lt;/td&gt;<br />
	&lt;td&gt;<br />
		&lt;div class="float_left" id="rating_table_{&#36;thread['tid']}"&gt;<br />
			&lt;ul class="star_rating{&#36;not_rated}" id="rating_thread_{&#36;thread['tid']}"&gt;<br />
				&lt;li style="width: {&#36;thread['width']}%" class="current_rating" id="current_rating_{&#36;thread['tid']}"&gt;{&#36;ratingvotesav}&lt;/li&gt;<br />
			&lt;/ul&gt;<br />
			&lt;script type="text/javascript"&gt;<br />
			&lt;!--<br />
				Rating.build_forumdisplay({&#36;thread['tid']}, { width: '{&#36;thread['width']}', extra_class: '{&#36;not_rated}', current_average: '{&#36;ratingvotesav}' });<br />
			// <img src="https://gidenler.me/images/smilies/sag_ok.png" alt="Sağ ok" title="Sağ ok" class="smilie smilie_54" /><br />
			&lt;/script&gt;<br />
		&lt;/div&gt;<br />
	&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
	&lt;td&gt;Sim's Rated&lt;/td&gt;<br />
	&lt;td&gt;:&lt;/td&gt;<br />
	&lt;td&gt;<br />
		{&#36;thread['numratings']}<br />
	&lt;/td&gt;<br />
&lt;/tr&gt;</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> prof_postbit<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;div class="float_left" style="width: 49%; margin: 0px 3px 0px 4px;"&gt;<br />
{&#36;ignore_bit}<br />
&lt;a name="pid{&#36;post['pid']}" id="pid{&#36;post['pid']}"&gt;&lt;/a&gt;<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="{&#36;post_extra_style} {&#36;post_visibility}" id="post_{&#36;post['pid']}"&gt;<br />
	&lt;tbody&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="tcat"&gt;<br />
				&lt;div class="float_left smalltext"&gt;<br />
					 {&#36;post['onlinestatus']}&lt;strong&gt;{&#36;post['profilelink']}&lt;/strong&gt; {&#36;post['postdate']}, {&#36;post['posttime']} &lt;span id="edited_by_{&#36;post['pid']}"&gt;{&#36;post['editedmsg']}&lt;/span&gt;<br />
				&lt;/div&gt;<br />
				{&#36;post['posturl']}<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow2 post_content {&#36;unapproved_shade}"&gt;<br />
				&lt;table cellspacing="0" cellpadding="0" border="0" style="width: 100%;"&gt;<br />
					&lt;tr&gt;<br />
						&lt;td&gt;<br />
							&lt;div class="post_body" id="pid_{&#36;post['pid']}"&gt;<br />
								{&#36;post['message']}<br />
							&lt;/div&gt;<br />
							&lt;div class="post_meta" id="post_meta_{&#36;post['pid']}"&gt;<br />
								{&#36;post['iplogged']}<br />
							&lt;/div&gt;<br />
						&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
				&lt;/table&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1 post_buttons {&#36;unapproved_shade}"&gt;<br />
				&lt;div class="post_management_buttons float_right"&gt;{&#36;post['button_edit']}{&#36;post['button_quickdelete']}{&#36;post['button_quote']}{&#36;post['button_multiquote']}{&#36;post['button_report']}{&#36;post['button_warn']}{&#36;post['button_reply_pm']}{&#36;post['button_replyall_pm']}{&#36;post['button_forward_pm']}{&#36;post['button_delete_pm']}<br />
				&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/tbody&gt;<br />
&lt;/table&gt;<br />
&lt;/div&gt;</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> prof_postbit_first<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>{&#36;ignore_bit}<br />
&lt;a name="pid{&#36;post['pid']}" id="pid{&#36;post['pid']}"&gt;&lt;/a&gt;<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="{&#36;post_extra_style} {&#36;post_visibility}" id="post_{&#36;post['pid']}"&gt;<br />
	&lt;tbody&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1 {&#36;unapproved_shade}"&gt;<br />
				&lt;table cellspacing="0" cellpadding="0" border="0" style="width: 100%;"&gt;<br />
					&lt;tr&gt;<br />
						&lt;td class="post_avatar" width="1" style="{&#36;post['avatar_padding']}"&gt;<br />
							{&#36;post['useravatar']}<br />
						&lt;/td&gt;<br />
						&lt;td class="post_author"&gt;<br />
							&lt;strong&gt;&lt;span class="largetext"&gt;{&#36;post['profilelink']}&lt;/span&gt;&lt;/strong&gt; {&#36;post['onlinestatus']}&lt;br /&gt;<br />
							&lt;span class="smalltext"&gt;<br />
								{&#36;post['usertitle']}&lt;br /&gt;<br />
								{&#36;post['userstars']}<br />
								{&#36;post['groupimage']}<br />
							&lt;/span&gt;<br />
						&lt;/td&gt;<br />
						&lt;td class="smalltext post_author_info" width="165"&gt;<br />
							{&#36;post['user_details']}<br />
						&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
				&lt;/table&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1 {&#36;unapproved_shade}"&gt;<br />
				&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="clear: both;"&gt;<br />
					&lt;tr&gt;<br />
						&lt;td width="50%" valign="top"&gt;<br />
							&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" width="100%" class="trow1"&gt;<br />
								&lt;tr&gt;<br />
									&lt;td class="thead" colspan="2" align="center"&gt;<br />
										&lt;strong&gt;{&#36;GLOBALS['threadfields']['profname']}'s Profile&lt;/strong&gt;<br />
									&lt;/td&gt;<br />
								&lt;/tr&gt;<br />
								&lt;tr&gt;<br />
									&lt;td width="1"&gt;<br />
										{&#36;GLOBALS['threadfields']['profpic']['value']}<br />
									&lt;/td&gt;<br />
									&lt;td&gt;<br />
										&lt;table border="0" width="100%" class="trow1"&gt;<br />
											&lt;tr&gt;<br />
												&lt;td&gt;Sim's Name&lt;/td&gt;&lt;td width="1"&gt;:&lt;/td&gt;&lt;td&gt;{&#36;GLOBALS['threadfields']['profname']}&lt;/td&gt;<br />
											&lt;/tr&gt;<br />
											&lt;tr&gt;<br />
												&lt;td&gt;Sim's Gender&lt;/td&gt;&lt;td width="1"&gt;:&lt;/td&gt;&lt;td&gt;{&#36;GLOBALS['threadfields']['profgender']}&lt;/td&gt;<br />
											&lt;/tr&gt;<br />
											&lt;tr&gt;<br />
												&lt;td&gt;Sim's Status&lt;/td&gt;&lt;td width="1"&gt;:&lt;/td&gt;&lt;td&gt;{&#36;GLOBALS['threadfields']['profstatus']}&lt;/td&gt;<br />
											&lt;/tr&gt;<br />
											&lt;tr&gt;<br />
												&lt;td&gt;Sim's Career&lt;/td&gt;&lt;td width="1"&gt;:&lt;/td&gt;&lt;td&gt;{&#36;GLOBALS['threadfields']['profcareer']}&lt;/td&gt;<br />
											&lt;/tr&gt;<br />
											&lt;tr&gt;<br />
												&lt;td&gt;Sim's Friends&lt;/td&gt;&lt;td width="1"&gt;:&lt;/td&gt;&lt;td&gt;{&#36;GLOBALS['threadfields']['profffriends']}&lt;/td&gt;<br />
											&lt;/tr&gt;<br />
											&lt;tr&gt;<br />
												&lt;td&gt;Sim's Age&lt;/td&gt;&lt;td width="1"&gt;:&lt;/td&gt;&lt;td&gt;{&#36;GLOBALS['threadfields']['profage']}&lt;/td&gt;<br />
											&lt;/tr&gt;<br />
										&lt;/table&gt;<br />
									&lt;/td&gt;<br />
								&lt;/tr&gt;<br />
							&lt;/table&gt;<br />
						&lt;/td&gt;<br />
						&lt;td&gt;&amp;nbsp;&lt;/td&gt;<br />
						&lt;td width="50%" valign="top"&gt;<br />
							&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" width="100%" class="trow1"&gt;<br />
								&lt;tr&gt;<br />
									&lt;td class="thead" align="center"&gt;<br />
										&lt;strong&gt;{&#36;GLOBALS['threadfields']['profname']}'s Skills&lt;/strong&gt;<br />
									&lt;/td&gt;<br />
								&lt;/tr&gt;<br />
								&lt;tr&gt;<br />
									&lt;td&gt;<br />
										&lt;table border="0" width="100%" class="trow1"&gt;<br />
											{&#36;GLOBALS['threadfields']['profcooking']}<br />
											{&#36;GLOBALS['threadfields']['profmechanical']}<br />
											{&#36;GLOBALS['threadfields']['profcharisma']}<br />
											{&#36;GLOBALS['threadfields']['profcreativity']}<br />
											{&#36;GLOBALS['threadfields']['profbody']}<br />
											{&#36;GLOBALS['threadfields']['proflogic']}<br />
										&lt;/table&gt;<br />
									&lt;/td&gt;<br />
								&lt;/tr&gt;<br />
							&lt;/table&gt;<br />
						&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
					&lt;tr&gt;<br />
						&lt;td colspan="3"&gt;<br />
							&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" width="100%" class="trow1"&gt;<br />
								&lt;tr&gt;<br />
									&lt;td class="thead" colspan="2" align="center" valign="middle"&gt;<br />
										&lt;strong&gt;{&#36;GLOBALS['threadfields']['profname']}'s Pictures&lt;/strong&gt;<br />
									&lt;/td&gt;<br />
								&lt;/tr&gt;<br />
								&lt;tr&gt;<br />
									&lt;td align="center"&gt;<br />
										{&#36;GLOBALS['threadfields']['profpic1']['value']}<br />
										{&#36;GLOBALS['threadfields']['profpic2']['value']}<br />
										{&#36;GLOBALS['threadfields']['profpic3']['value']}<br />
										{&#36;GLOBALS['threadfields']['profpic4']['value']}<br />
										{&#36;GLOBALS['threadfields']['profpic5']['value']}<br />
									&lt;/td&gt;<br />
								&lt;/tr&gt;<br />
							&lt;/table&gt;<br />
						&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
				&lt;/table&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
<br />
		&lt;tr&gt;<br />
			&lt;td class="tcat"&gt;<br />
				&lt;div class="float_left smalltext"&gt;<br />
					{&#36;post['postdate']}, {&#36;post['posttime']} &lt;span id="edited_by_{&#36;post['pid']}"&gt;{&#36;post['editedmsg']}&lt;/span&gt;<br />
				&lt;/div&gt;<br />
				{&#36;post['posturl']}<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
<br />
		&lt;tr&gt;<br />
			&lt;td class="trow2 post_content {&#36;unapproved_shade}"&gt;<br />
				&lt;span class="smalltext"&gt;&lt;strong&gt;{&#36;post['icon']}{&#36;post['subject']} {&#36;post['subject_extra']}&lt;/strong&gt;&lt;/span&gt;<br />
<br />
				&lt;div class="post_body" id="pid_{&#36;post['pid']}"&gt;<br />
					{&#36;post['message']}<br />
				&lt;/div&gt;<br />
				{&#36;post['attachments']}<br />
				{&#36;post['signature']}<br />
<br />
				&lt;div class="post_meta" id="post_meta_{&#36;post['pid']}"&gt;<br />
				{&#36;post['iplogged']}<br />
				&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1 post_buttons {&#36;unapproved_shade}"&gt;<br />
				&lt;div class="author_buttons float_left"&gt;<br />
					{&#36;post['button_email']}{&#36;post['button_pm']}{&#36;post['button_www']}{&#36;post['button_find']}<br />
				&lt;/div&gt;<br />
				&lt;div class="post_management_buttons float_right"&gt;{&#36;post['button_edit']}{&#36;post['button_quickdelete']}{&#36;post['button_quote']}{&#36;post['button_multiquote']}{&#36;post['button_report']}{&#36;post['button_warn']}{&#36;post['button_reply_pm']}{&#36;post['button_replyall_pm']}{&#36;post['button_forward_pm']}{&#36;post['button_delete_pm']}<br />
				&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/tbody&gt;<br />
&lt;/table&gt;</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> prof_showthread<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;{&#36;thread['subject']}&lt;/title&gt;<br />
{&#36;headerinclude}<br />
&lt;script type="text/javascript"&gt;<br />
&lt;!--<br />
	var quickdelete_confirm = "{&#36;lang-&gt;quickdelete_confirm}";<br />
// <img src="https://gidenler.me/images/smilies/sag_ok.png" alt="Sağ ok" title="Sağ ok" class="smilie smilie_54" /><br />
&lt;/script&gt;<br />
&lt;script type="text/javascript" src="jscripts/thread.js?ver=1400"&gt;&lt;/script&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
{&#36;header}<br />
{&#36;pollbox}<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="clear: both; border-bottom-width: 0;"&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="thead" colspan="2"&gt;<br />
			&lt;div style="float: right;"&gt;<br />
				&lt;span class="smalltext"&gt;&lt;strong&gt;&lt;a href="showthread.php?mode=threaded&amp;amp;tid={&#36;tid}&amp;amp;pid={&#36;pid}#pid{&#36;pid}"&gt;{&#36;lang-&gt;threaded}&lt;/a&gt; | &lt;a href="showthread.php?mode=linear&amp;amp;tid={&#36;tid}&amp;amp;pid={&#36;pid}#pid{&#36;pid}"&gt;{&#36;lang-&gt;linear}&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;<br />
			&lt;/div&gt;<br />
			&lt;div&gt;<br />
				&lt;strong&gt;{&#36;thread['subject']}&lt;/strong&gt;<br />
			&lt;/div&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
	{&#36;classic_header}<br />
&lt;/table&gt;<br />
&lt;div&gt;<br />
	{&#36;first_post}<br />
&lt;/div&gt;<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="border-top-width: 0;"&gt;<br />
	&lt;tr&gt;<br />
		&lt;td colspan="2" class="tfoot"&gt;<br />
			{&#36;search_thread}<br />
			&lt;div&gt;<br />
				&lt;strong&gt;&amp;laquo; &lt;a href="{&#36;next_oldest_link}"&gt;{&#36;lang-&gt;next_oldest}&lt;/a&gt; | &lt;a href="{&#36;next_newest_link}"&gt;{&#36;lang-&gt;next_newest}&lt;/a&gt; &amp;raquo;&lt;/strong&gt;<br />
			&lt;/div&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;br class="clear" /&gt;<br />
&lt;div class="float_left"&gt;<br />
	{&#36;multipage}<br />
&lt;/div&gt;<br />
&lt;div class="float_right"&gt;<br />
	{&#36;newreply}<br />
&lt;/div&gt;<br />
{&#36;ratethread}<br />
&lt;br class="clear" /&gt;<br />
&lt;div id="posts"&gt;<br />
	{&#36;posts}<br />
&lt;/div&gt;<br />
&lt;br style="clear: both;" /&gt;<br />
&lt;div class="float_left"&gt;<br />
	{&#36;multipage}<br />
&lt;/div&gt;<br />
&lt;div style="padding-top: 4px;" class="float_right"&gt;<br />
	{&#36;newreply}<br />
&lt;/div&gt;<br />
&lt;br style="clear: both;" /&gt;<br />
{&#36;quickreply}<br />
{&#36;threadexbox}<br />
{&#36;similarthreads}<br />
&lt;br /&gt;<br />
&lt;div class="float_left"&gt;<br />
	&lt;ul class="thread_tools"&gt;<br />
		&lt;li class="printable"&gt;&lt;a href="printthread.php?tid={&#36;tid}"&gt;{&#36;lang-&gt;view_printable}&lt;/a&gt;&lt;/li&gt;<br />
		&lt;li class="sendthread"&gt;&lt;a href="sendthread.php?tid={&#36;tid}"&gt;{&#36;lang-&gt;send_thread}&lt;/a&gt;&lt;/li&gt;<br />
		&lt;li class="subscription_{&#36;add_remove_subscription}"&gt;&lt;a href="usercp2.php?action={&#36;add_remove_subscription}subscription&amp;amp;tid={&#36;tid}&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;{&#36;add_remove_subscription_text}&lt;/a&gt;&lt;/li&gt;<br />
	&lt;/ul&gt;<br />
&lt;/div&gt;<br />
<br />
&lt;div class="float_right" style="text-align: right;"&gt;<br />
	{&#36;moderationoptions}<br />
	{&#36;forumjump}<br />
&lt;/div&gt;<br />
&lt;br style="clear: both;" /&gt;<br />
{&#36;footer}<br />
&lt;/body&gt;<br />
&lt;/html&gt;</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> prof_showthread_noreplies<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;div id="xthreads_noreplies"&gt;<br />
&lt;table border="0" cellspacing="{&#36;GLOBALS['theme']['borderwidth']}" cellpadding="{&#36;GLOBALS['theme']['tablespace']}" class="tborder"&gt;<br />
	&lt;tbody&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="tcat"&gt;<br />
				&lt;div class="float_left smalltext"&gt;<br />
					 &lt;strong&gt;Leave Your Comments For This Sim&lt;/strong&gt;<br />
				&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1"&gt;<br />
				&lt;div class="post_body"&gt;<br />
					You can leave your comments for this Sims.<br />
				&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/tbody&gt;<br />
&lt;/table&gt;<br />
&lt;/div&gt;</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> prof_showthread_ratethread<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;div style="margin-top: 6px; padding-right: 10px;" class="float_right"&gt;<br />
		&lt;script type="text/javascript" src="jscripts/rating.js?ver=1400"&gt;&lt;/script&gt;<br />
		&lt;div id="success_rating_{&#36;thread['tid']}" style="float: left; padding-top: 2px; padding-right: 10px;"&gt;&amp;nbsp;&lt;/div&gt;<br />
		&lt;strong style="float: left; padding-right: 10px;"&gt;Sim's Rating&lt;/strong&gt;<br />
		&lt;div class="inline_rating"&gt;<br />
			&lt;ul class="star_rating{&#36;not_rated}" id="rating_thread_{&#36;thread['tid']}"&gt;<br />
				&lt;li style="width: {&#36;thread['width']}%" class="current_rating" id="current_rating_{&#36;thread['tid']}"&gt;{&#36;ratingvotesav}&lt;/li&gt;<br />
				&lt;li&gt;&lt;a class="one_star" title="{&#36;lang-&gt;one_star}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=1&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;1&lt;/a&gt;&lt;/li&gt;<br />
				&lt;li&gt;&lt;a class="two_stars" title="{&#36;lang-&gt;two_stars}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=2&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;2&lt;/a&gt;&lt;/li&gt;<br />
				&lt;li&gt;&lt;a class="three_stars" title="{&#36;lang-&gt;three_stars}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=3&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;3&lt;/a&gt;&lt;/li&gt;<br />
				&lt;li&gt;&lt;a class="four_stars" title="{&#36;lang-&gt;four_stars}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=4&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;4&lt;/a&gt;&lt;/li&gt;<br />
				&lt;li&gt;&lt;a class="five_stars" title="{&#36;lang-&gt;five_stars}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=5&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;5&lt;/a&gt;&lt;/li&gt;<br />
			&lt;/ul&gt;<br />
		&lt;/div&gt;<br />
&lt;/div&gt;</code></div></div>
</li>
</ul>
<br />
Please let me know if I missed somethings <img src="https://gidenler.me/images/v2/smile/o3.gif" alt="Smile" title="Smile" class="smilie smilie_1" /><br />
<br />
Screenshots:<br />
<br />
1. User create a product review thread:<br />
<br />
<img src="http://i46.tinypic.com/drf8qw.jpg" loading="lazy"  alt="[Resim: drf8qw.jpg]" class="mycode_img" /><br />
<br />
2. User view the post:<br />
<br />
<img src="http://i45.tinypic.com/25qu2zc.jpg" loading="lazy"  alt="[Resim: 25qu2zc.jpg]" class="mycode_img" /><br />
<br />
3. Thread List:<br />
<br />
<img src="http://i45.tinypic.com/xyofr.jpg" loading="lazy"  alt="[Resim: xyofr.jpg]" class="mycode_img" /><br />
<br />
I have created a live demo for this:<br />
<a href="http://www.14.mynie.co.cc/forumdisplay.php?fid=6" target="_blank" rel="noopener" class="mycode_url">http://www.14.mynie.co.cc/forumdisplay.php?fid=6</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[MyBB Lryics site]]></title>
			<link>https://gidenler.me/thread-464.html</link>
			<pubDate>Fri, 21 Mar 2025 20:43:35 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://gidenler.me/member.php?action=profile&uid=2">Hasan</a>]]></dc:creator>
			<guid isPermaLink="false">https://gidenler.me/thread-464.html</guid>
			<description><![CDATA[Requirement: <span style="font-weight: bold;" class="mycode_b"><a href="http://mybbhacks.zingaburga.com/showthread.php?tid=288" target="_blank" rel="noopener" class="mycode_url">XThreads</a></span><br />
Last Update: <a href="http://mybbhacks.zingaburga.com/showthread.php?tid=547&amp;pid=12436#pid12436" target="_blank" rel="noopener" class="mycode_url">7 October 2012</a><br />
<br />
You can modify this (based on MyBB 1.4):<br />
<br />
Custom Thread Fields Setting:<br />
<ol type="1" class="mycode_list"><li>Textbox for Artist:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Name<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> xtlyrics_artist<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select a forum that we will apply this modification'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['xtlyrics_artist']}</span>.<br />
<br />
Additional Info:<br />
If we want user to be able to filter thread/song by Artist:<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Allow Filtering:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format:</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;a href="{&#36;forumurl?}filtertf_xtlyrics_artist={VALUE}" title="View All {VALUE} Songs"&gt;{VALUE}&lt;/a&gt;</code></div></div></li>
</ul>
<br />
</li>
<li>Textbox for Album:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Album<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> xtlyrics_album<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select a forum above'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order?:</span> 2<br />
Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['xtlyrics_album']}</span>.<br />
<br />
Additional Info:<br />
If we want user to be able to filter thread/song by Album:<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Allow Filtering:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format:</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;a href="{&#36;forumurl_q}filtertf_xtlyrics_album={VALUE}" title="View All Songs In {VALUE} Album"&gt;{VALUE}&lt;/a&gt;</code></div></div></li>
</ul>
<br />
</li>
<li>File Input for Artist Photo / Album Cover:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Artist Photo<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> xtlyrics_photo<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select a forum above'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> File<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Valid File Extensions:</span> gif|png|jpg|jpeg<br />
Modify it as our needs. It is the extensions of image that can be uploaded.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Maximum File Size:</span> 1048576<br />
Modify it as our needs. It is a maximum file size (in bytes) that can be uploaded. In this example, 1 Mb.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone<br />
Modify it as our needs. Select <span style="font-style: italic;" class="mycode_i">Everyone (required)</span> if this is a required field.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 3<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Only accept uploaded images:</span> Yes<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Image Thumbnail Generation:</span> 80x60|120x90<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Blank Replacement Value:</span> Ignore this setting if we set this field as required field.<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;if THIS_SCRIPT == 'forumdisplay.php' then&gt;<br />
&lt;a href="{&#36;threadurl}"&gt;&lt;img src="images/default_avatar.gif" alt="" title="View {&#36;thread['subject']} Song Lyric" style="width: 80px; height: 60px;" /&gt;&lt;/a&gt;<br />
&lt;/if&gt;<br />
&lt;if THIS_SCRIPT == 'showthread.php' then&gt;<br />
&lt;img src="images/default_avatar.gif" alt="" title="" style="width: 120px; height: 90px;" /&gt;<br />
&lt;/if&gt;</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format:</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;if THIS_SCRIPT == 'forumdisplay.php' then&gt;<br />
&lt;a href="{&#36;threadurl}"&gt;&lt;img src="{URL}/thumb80x60" alt="" title="View {&#36;thread['subject']} Song Lyric" /&gt;&lt;/a&gt;<br />
&lt;/if&gt;<br />
&lt;if THIS_SCRIPT == 'showthread.php' then&gt;<br />
&lt;a href="{URL}" target="_blank"&gt;&lt;img src="{URL}/thumb120x90" alt="" title="Click To View Full Size" /&gt;&lt;/a&gt;<br />
&lt;/if&gt;</code></div></div></li>
</ul>
<br />
</li>
<li>Textbox for YouTube Video:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> YouTube Video<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> xtlyrics_ytv<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select a forum above'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone<br />
Modify it as our needs. Select <span style="font-style: italic;" class="mycode_i">Everyone (required)</span> if this is a required field.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 4<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Blank Replacement Value:</span> Ignore this setting if we set this field as required field.<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;div align="center"&gt;&lt;strong&gt;&lt;em&gt;There is no video for {&#36;thread['subject']} song&lt;/em&gt;&lt;/strong&gt;&lt;/div&gt;</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format:</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;div align="center"&gt;<br />
&lt;object type="application/x-shockwave-flash" data="http://www.youtube.com/v/{VALUE&#36;1}{VALUE&#36;2}" width="360" height="270"&gt;&lt;param name="movie" value="http://www.youtube.com/v/{VALUE&#36;1}{VALUE&#36;2}" /&gt;&lt;param name="FlashVars" value="playerMode=embedded" /&gt;&lt;p&gt;{&#36;thread['subject']}&lt;/p&gt;&lt;/object&gt;<br />
&lt;/div&gt;</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Text Mask Filter:</span> <span style="font-style: italic;" class="mycode_i">Custom (regex)</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>^(?:([a-zA-Z0-9_&#92;-+]{8,16})&#36;|http&#92;://(?:[a-z]{1,4}&#92;.)?youtube&#92;.com/watch&#92;?v=([a-zA-Z0-9_&#92;-+]{8,16}))</code></div></div>Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['xtlyrics_ytv']}</span>.<br />
</li>
</ul>
<br />
</li>
<li>Textbox for Music URL:<br />
I leave the decision to Admin, what audio widget to be used, especially if user is not allowed to upload an audio for the song they submitted.<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Music URL<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> xtlyrics_audio<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select the forum above'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone<br />
Modify it as our needs. Select <span style="font-style: italic;" class="mycode_i">Everyone (required)</span> if this is a required field.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 5<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Blank Replacement Value:</span> Ignore this setting if we set this field as required field.<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;div align="center"&gt;There is no audio for this song&lt;/div&gt;</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format:</span> Depends on what sharing audio widget site be used. Learn how the sharing URL scheme.<br />
Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['xtlyrics_audio']}</span>.<br />
</li>
</ul>
<br />
</li>
<li>Listbox for Category/Genre:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Music Category<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> xtlyrics_cat<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select the forum above'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Listbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Height:</span> 1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Values List:</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>Band Group<br />
Artist Solo</code></div></div>Modify it as our needs. In this example, we use category, not genre. I just want to make it a bit different with Music Gallery.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 6<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Allow Filtering:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format:</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;a href="{&#36;forumurl?}filtertf_xtlyrics_cat={VALUE}"&gt;{VALUE}&lt;/a&gt;</code></div></div></li>
</ul>
<br />
</li>
<li>Multiline Textbox for Additional Info:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Additional Info<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> xtlyrics_addinfo<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select a forum above'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Multiline Textbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Parsing:</span> Plain text with new lines<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 7<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Blank Replacement Value:</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;div align="center"&gt;&lt;strong&gt;&lt;em&gt;There is no additional info for {&#36;thread['subject']} song&lt;/em&gt;&lt;/strong&gt;&lt;/div&gt;</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format:</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;div class="float_left" style="margin-right: 11px;"&gt;<br />
{&#36;GLOBALS['threadfields']['xtlyrics_photo']['value']}<br />
&lt;/div&gt;<br />
&lt;div class="post_body"&gt;<br />
{VALUE}<br />
&lt;/div&gt;</code></div></div>Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['xtlyrics_addinfo']}</span>.<br />
</li>
</ul>
<br />
</li>
<li>Textbox for Related Song ID:<br />
This is an optional only. Only support 1 related song. And user need to fill this textbox with Song ID (actually, it is a thread ID).<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Related Song ID<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> xtlyrics_rsid<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select a forum above'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Blank Replacement Value:</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&amp;ndash;</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format:</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;setvar xtl_sid&gt;THIS_SCRIPT == 'showthread.php' ? get_thread(intval({VALUE})) : ''&lt;/setvar&gt;<br />
&lt;setvar xtl_rsid&gt;&#36;tplvars['xtl_sid'] &amp;&amp; &#36;tplvars['xtl_sid']['fid'] == &#36;fid ? '&lt;a href="'.get_thread_link(intval(&#36;tplvars['xtl_sid']['tid'])).'"&gt;'.htmlspecialchars_uni(&#36;tplvars['xtl_sid']['subject']).'&lt;/a&gt;' : ''&lt;/setvar&gt;</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Text Mask Filter:</span> <span style="font-style: italic;" class="mycode_i">Digits</span><br />
</li>
</ul>
</li>
</ol>
<br />
Edit the selected forum with this XThreads Options settings:<br />
<ol type="1" class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Prefix:</span> xtlyrics_<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Show first post on every showthread page:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Enable XThreads' Inline Forum Search:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Settings Overrides:</span><ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Setting:</span> Showthread Options -&gt; Post Layout<br />
<span style="font-weight: bold;" class="mycode_b">Value:</span> horizontal<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>postlayout=horizontal</code></div></div></li>
</ul>
</li>
<li><span style="font-weight: bold;" class="mycode_b">Hide Forum:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
We need to put this forum URL manually in our templates (e.g: <span style="font-style: italic;" class="mycode_i">header</span> template).<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Enable Thread Filters:</span> <span style="font-style: italic;" class="mycode_i">uid</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Custom WOL Text:</span><ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Forum Display:</span> Viewing Lyrics<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">New Thread:</span> Submitting A New Lyric<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">New Reply:</span> Commenting &lt;a href="{1}"&gt;{2}&lt;/a&gt; Lyric<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Show Thread:</span> Viewing &lt;a href="{1}"&gt;{2}&lt;/a&gt; Lyric<br />
</li>
</ul>
</li>
</ol>
<br />
Now, we need to create new templates in Global Template.<br />
Admin CP -&gt; Templates &amp; Style -&gt; Templates -&gt; Global Templates:<br />
<ol type="1" class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">xtlyrics_editpost_first</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;{&#36;mybb-&gt;settings['bbname']} - {&#36;lang-&gt;edit_post}&lt;/title&gt;<br />
{&#36;headerinclude}<br />
&lt;script type="text/javascript" src="jscripts/post.js?ver=1400"&gt;&lt;/script&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
{&#36;header}<br />
{&#36;preview}<br />
{&#36;post_errors}<br />
{&#36;attacherror}<br />
&lt;form action="editpost.php?pid={&#36;pid}&amp;amp;processed=1" method="post" enctype="multipart/form-data" name="input"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type="hidden" name="my_post_key" value="{&#36;mybb-&gt;post_code}" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="thead" colspan="2"&gt;&lt;strong&gt;Edit Lyric&lt;/strong&gt;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;strong&gt;Song Lyric&lt;/strong&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;textarea name="message" id="message" rows="23" cols="50" tabindex="3"&gt;{&#36;message}&lt;/textarea&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/table&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" width="30%"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;strong&gt;Song Title&lt;/strong&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type="text" class="textbox" name="subject" size="40" maxlength="85" value="{&#36;subject}" tabindex="1" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;extra_threadfields}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;subscriptionmethod}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/table&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/table&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;br /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;div align="center"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type="submit" class="button" name="submit" value="{&#36;lang-&gt;update_post}" tabindex="3" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type="submit" class="button" name="previewpost" value="{&#36;lang-&gt;preview_post}" tabindex="4" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type="hidden" name="action" value="do_editpost" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type="hidden" name="posthash" value="{&#36;posthash}" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type="hidden" name="attachmentaid" value="" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type="hidden" name="attachmentact" value="" /&gt;<br />
&lt;/form&gt;<br />
&lt;br /&gt;<br />
&lt;form action="editpost.php" method="post" name="editpost"&gt;<br />
&lt;input type="hidden" name="my_post_key" value="{&#36;mybb-&gt;post_code}" /&gt;<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
&lt;tr&gt;<br />
&lt;td class="thead" colspan="3"&gt;&lt;strong&gt;{&#36;lang-&gt;delete_post}&lt;/strong&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td class="trow1" style="white-space: nowrap"&gt;&lt;input type="checkbox" class="checkbox" name="delete" value="1" tabindex="9" /&gt; &lt;strong&gt;{&#36;lang-&gt;delete_q}&lt;/strong&gt;&lt;/td&gt;<br />
&lt;td class="trow1" width="100%"&gt;{&#36;lang-&gt;delete_1}&lt;br /&gt;&lt;span class="smalltext"&gt;{&#36;lang-&gt;delete_2}&lt;/span&gt;&lt;/td&gt;<br />
&lt;td class="trow1"&gt;&lt;input type="submit" class="button" name="submit" value="{&#36;lang-&gt;delete_now}" tabindex="10" /&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;input type="hidden" name="action" value="deletepost" /&gt;<br />
&lt;input type="hidden" name="pid" value="{&#36;pid}" /&gt;<br />
&lt;/form&gt;<br />
{&#36;footer}<br />
&lt;/body&gt;<br />
&lt;/html&gt;</code></div></div><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">xtlyrics_forumdisplay_searchforum_inline</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;table border="0" cellspacing="{&#36;GLOBALS['theme']['borderwidth']}" cellpadding="{&#36;GLOBALS['theme']['tablespace']}" class="tborder"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="thead largetext" align="center"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;strong&gt;Search Lyrics&lt;/strong&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" align="center"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;form action="forumdisplay.php" method="get"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type="text" class="textbox" name="search" size="25" value="{&#36;searchval}" /&gt; {&#36;gobutton}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type="hidden" name="fid" value="{&#36;fid}" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type="hidden" name="sortby" value="{&#36;sortby}" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type="hidden" name="order" value="{&#36;sortordernow}" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type="hidden" name="datecut" value="{&#36;datecut}" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/form&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;br /&gt;</code></div></div><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">xtlyrics_forumdisplay_sticky_sep</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;div&gt;&lt;strong&gt;Featured Songs&lt;/strong&gt;&lt;/div&gt;</code></div></div><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">xtlyrics_forumdisplay_thread</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;div class="float_left" style="width: 50%; height: 89px;"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" width="100%"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td align="center" class="{&#36;bgcolor}"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;GLOBALS['threadfields']['xtlyrics_photo']['value']}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="{&#36;bgcolor} smalltext" width="100%" title="{&#36;thread['views']} Views, {&#36;thread['replies']} Comments"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;strong&gt;&lt;a href="{&#36;thread['threadlink']}" class="{&#36;inline_edit_class}" id="tid_{&#36;inline_edit_tid}"&gt;{&#36;thread['subject']}&lt;/a&gt;&lt;/strong&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;span&gt;{&#36;GLOBALS['threadfields']['xtlyrics_artist']}&lt;/span&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a href="{&#36;forumurl_q}filterxt_uid={&#36;thread['uid']}" title="View All Songs Submitted By This User"&gt;by&lt;/a&gt;: {&#36;thread['profilelink']}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;modbit}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/table&gt;<br />
&lt;/div&gt;</code></div></div><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">xtlyrics_forumdisplay_threadlist</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" style="clear: both; width: 100%;"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td width="70%" valign="top"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="thead"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div align="center" class="largetext"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;strong&gt;&lt;a href="{&#36;forumurl}"&gt;{&#36;foruminfo['name']}&lt;/a&gt;&lt;/strong&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;inlinemodcol}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" colspan="2"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;threads}{&#36;nullthreads}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/table&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div class="float_left"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;multipage}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div class="float_right" style="margin-top: 4px;"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;newthread}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td valign="top"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;searchforum}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="thead"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div align="center" class="largetext"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;strong&gt;Song Category&lt;/strong&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;strong&gt;&lt;a href="{&#36;forumurl_q}filtertf_xtlyrics_cat=Band Group"&gt;Band Group&lt;/a&gt;&lt;/strong&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;strong&gt;&lt;a href="{&#36;forumurl_q}filtertf_xtlyrics_cat=Artist Solo"&gt;Artist Solo&lt;/a&gt;&lt;/strong&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/table&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;br /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="thead"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div align="center" class="largetext"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;strong&gt;Song Sorter&lt;/strong&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;strong&gt;&lt;a href="{&#36;sorturl}&amp;amp;sortby=started&amp;amp;order=desc"&gt;Last Added&lt;/a&gt;&lt;/strong&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;strong&gt;&lt;a href="{&#36;sorturl}&amp;amp;sortby=replies&amp;amp;order=desc"&gt;Most Commented&lt;/a&gt;&lt;/strong&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;strong&gt;&lt;a href="{&#36;sorturl}&amp;amp;sortby=views&amp;amp;order=desc"&gt;Most Viewed&lt;/a&gt;&lt;/strong&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;strong&gt;&lt;a href="{&#36;sorturl}&amp;amp;sortby=lastpost&amp;amp;order=desc"&gt;Last Commented&lt;/a&gt;&lt;/strong&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;ratingcol}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/table&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;br class="clear" /&gt;<br />
&lt;div class="float_right" style="text-align: right;"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;{&#36;inlinemod}<br />
&nbsp;&nbsp;&nbsp;&nbsp;{&#36;forumjump}<br />
&lt;/div&gt;<br />
&lt;br style="clear: both" /&gt;<br />
{&#36;inline_edit_js}<br />
&lt;div class="tc smalltext"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;{&#36;foruminfo['name']}&lt;br /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;Powered By: &lt;a href="http://mybbhacks.zingaburga.com"&gt;XThreads&lt;/a&gt; - &lt;a href="http://mybbhacks.zingaburga.com"&gt;MyBB Hacks&lt;/a&gt;<br />
&lt;/div&gt;</code></div></div><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">xtlyrics_forumdisplay_threadlist_rating</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;strong&gt;&lt;a href="{&#36;sorturl}&amp;amp;sortby=rating&amp;amp;order=desc"&gt;Most Rated&lt;/a&gt;&lt;/strong&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;script type="text/javascript" src="jscripts/rating.js?ver=1400"&gt;&lt;/script&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;script type="text/javascript"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;!--<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;lang.stars = new Array();<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;lang.stars[1] = "{&#36;lang-&gt;one_star}";<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;lang.stars[2] = "{&#36;lang-&gt;two_stars}";<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;lang.stars[3] = "{&#36;lang-&gt;three_stars}";<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;lang.stars[4] = "{&#36;lang-&gt;four_stars}";<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;lang.stars[5] = "{&#36;lang-&gt;five_stars}";<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// --&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/script&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&lt;/tr&gt;</code></div></div><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">xtlyrics_forumdisplay_threads_sep</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;div class="clear"&gt;&lt;strong&gt;Other Songs&lt;/strong&gt;&lt;/div&gt;</code></div></div><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">xtlyrics_newthread</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;{&#36;lang-&gt;newthread_in}&lt;/title&gt;<br />
{&#36;headerinclude}<br />
&lt;script type="text/javascript" src="jscripts/post.js?ver=1400"&gt;&lt;/script&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
{&#36;header}<br />
{&#36;preview}<br />
{&#36;thread_errors}<br />
{&#36;attacherror}<br />
&lt;form action="newthread.php?fid={&#36;fid}&amp;amp;processed=1" method="post" enctype="multipart/form-data" name="input"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type="hidden" name="my_post_key" value="{&#36;mybb-&gt;post_code}" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="thead" colspan="2"&gt;&lt;strong&gt;New Lyrics&lt;/strong&gt;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;strong&gt;Song Lyric&lt;/strong&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;textarea name="message" id="message" rows="24" cols="50" tabindex="2"&gt;{&#36;message}&lt;/textarea&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/table&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" width="30%"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;strong&gt;Song Title&lt;/strong&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type="text" class="textbox" name="subject" size="40" maxlength="85" value="{&#36;subject}" tabindex="1" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;extra_threadfields}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;modoptions}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;subscriptionmethod}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;captcha}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/table&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/table&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;br /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;div style="text-align:center"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type="submit" class="button" name="submit" value="{&#36;lang-&gt;post_thread}" tabindex="4" accesskey="s" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type="submit" class="button" name="previewpost" value="{&#36;lang-&gt;preview_post}" tabindex="5" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type="hidden" name="action" value="do_newthread" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type="hidden" name="posthash" value="{&#36;posthash}" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type="hidden" name="attachmentaid" value="" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type="hidden" name="attachmentact" value="" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type="hidden" name="quoted_ids" value="{&#36;quoted_ids}" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type="hidden" name="tid" value="{&#36;tid}" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;{&#36;editdraftpid}<br />
&lt;/form&gt;<br />
{&#36;forumrules}<br />
{&#36;footer}<br />
&lt;/body&gt;<br />
&lt;/html&gt;</code></div></div><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">xtlyrics_postbit</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>{&#36;ignore_bit}<br />
&lt;a name="pid{&#36;post['pid']}" id="pid{&#36;post['pid']}"&gt;&lt;/a&gt;<br />
&lt;table width="100%" border="0"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td width="1" valign="top" align="center"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;post['posturl']}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div class="post_meta" id="post_meta_{&#36;post['pid']}"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;post['iplogged']}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td valign="top"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="{&#36;post_extra_style} {&#36;post_visibility}" id="post_{&#36;post['pid']}"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tbody&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow2 post_content {&#36;unapproved_shade}"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;span class="smalltext"&gt;&lt;em&gt;by: &lt;a href="{&#36;post['profilelink_plain']}" id="profile_{&#36;post['pid']}" title="View User Info"&gt;{&#36;post['username_formatted']}&lt;/a&gt;, {&#36;post['postdate']} at {&#36;post['posttime']}&lt;/em&gt;&lt;/span&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div id="profile_{&#36;post['pid']}_popup" class="trow1" style="display: none;"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="thead" align="center" colspan="2"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;span class="largetext"&gt;&lt;strong&gt;User Info&lt;/strong&gt;&lt;/span&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1 post_avatar" width="1" style="{&#36;post['avatar_padding']}"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;post['useravatar']}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1 post_author"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;strong&gt;&lt;span class="largetext"&gt;{&#36;post['profilelink']}&lt;/span&gt;&lt;/strong&gt; <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;post['onlinestatus']}&lt;br /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;span class="smalltext"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;post['usertitle']}&lt;br /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;post['userstars']}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;post['groupimage']}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/span&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/table&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div class="post_body" id="pid_{&#36;post['pid']}"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div class="my_font"&gt;{&#36;post['message']}&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;post['button_edit']}{&#36;post['button_quickdelete']}{&#36;post['button_report']}{&#36;post['button_warn']}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tbody&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/table&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;script type="text/javascript"&gt;<br />
// &lt;!--<br />
&nbsp;&nbsp;&nbsp;&nbsp;if(use_xmlhttprequest == "1")<br />
&nbsp;&nbsp;&nbsp;&nbsp;{<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;new PopupMenu("profile_{&#36;post['pid']}");<br />
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
// --&gt;<br />
&lt;/script&gt;</code></div></div><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">xtlyrics_postbit_first</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>{&#36;ignore_bit}<br />
&lt;a name="pid{&#36;post['pid']}" id="pid{&#36;post['pid']}"&gt;&lt;/a&gt;<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="{&#36;post_extra_style} {&#36;post_visibility}" id="post_{&#36;post['pid']}"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;tbody&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="thead {&#36;unapproved_shade}" align="center"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;span class="largetext"&gt;&lt;strong&gt;{&#36;post['subject']} Lyrics&lt;/strong&gt;&lt;/span&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow2 post_content {&#36;unapproved_shade}"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;post['posturl']}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div class="post_meta float_right" id="post_meta_{&#36;post['pid']}"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;post['iplogged']}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div class="float_left"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;span class="smalltext"&gt;&lt;em&gt;Submitted by: &lt;a href="{&#36;post['profilelink_plain']}" id="profile_{&#36;post['pid']}" title="View Submitter Info"&gt;{&#36;post['username_formatted']}&lt;/a&gt;&lt;br /&gt;{&#36;post['postdate']}, {&#36;post['posttime']}&lt;/em&gt;&lt;/span&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div id="profile_{&#36;post['pid']}_popup" class="trow1" style="display: none;"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="thead" align="center" colspan="2"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;span class="largetext"&gt;&lt;strong&gt;Submitter Info&lt;/strong&gt;&lt;/span&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1 post_avatar" width="1" style="{&#36;post['avatar_padding']}"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;post['useravatar']}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1 post_author"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;strong&gt;&lt;span class="largetext"&gt;{&#36;post['profilelink']}&lt;/span&gt;&lt;/strong&gt; {&#36;post['onlinestatus']}&lt;br /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;span class="smalltext"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;post['usertitle']}&lt;br /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;post['userstars']}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;post['groupimage']}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/span&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/table&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;br class="clear" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div class="post_body" id="pid_{&#36;post['pid']}"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div class="my_font"&gt;{&#36;post['message']}&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;post['button_edit']}{&#36;post['button_quickdelete']}{&#36;post['button_report']}{&#36;post['button_warn']}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tbody&gt;<br />
&lt;/table&gt;<br />
<br />
&lt;script type="text/javascript"&gt;<br />
// &lt;!--<br />
&nbsp;&nbsp;&nbsp;&nbsp;if(use_xmlhttprequest == "1")<br />
&nbsp;&nbsp;&nbsp;&nbsp;{<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;new PopupMenu("profile_{&#36;post['pid']}");<br />
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
// --&gt;<br />
&lt;/script&gt;</code></div></div><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">xtlyrics_postbit_first_posturl</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;div class="float_right"&gt;{&#36;post['inlinecheck']}&lt;/div&gt;</code></div></div><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">xtlyrics_postbit_inlinecheck</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;input type="checkbox" class="checkbox" name="inlinemod_{&#36;post['pid']}" id="inlinemod_{&#36;post['pid']}" value="1" style="vertical-align: middle;" {&#36;inlinecheck}&nbsp;&nbsp;/&gt;</code></div></div><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">xtlyrics_postbit_iplogged_hiden</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;span class="smalltext"&gt;&lt;strong&gt;&lt;a href="moderation.php?action=getip&amp;amp;pid={&#36;post['pid']}"&gt;IP&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;</code></div></div><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">xtlyrics_postbit_posturl</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;div style="margin-top: 3px;"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;span class="smalltext"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;strong&gt;&lt;a href="{&#36;post['postlink']}#pid{&#36;post['pid']}"&gt;#{&#36;postcounter}&lt;/a&gt;&lt;/strong&gt;&lt;br /&gt;{&#36;post['inlinecheck']}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/span&gt;<br />
&lt;/div&gt;</code></div></div><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">xtlyrics_showthread</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;{&#36;thread['subject']}&lt;/title&gt;<br />
{&#36;headerinclude}<br />
&lt;script type="text/javascript"&gt;<br />
&lt;!--<br />
&nbsp;&nbsp;&nbsp;&nbsp;var quickdelete_confirm = "{&#36;lang-&gt;quickdelete_confirm}";<br />
// --&gt;<br />
&lt;/script&gt;<br />
&lt;script type="text/javascript" src="jscripts/thread.js?ver=1400"&gt;&lt;/script&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
{&#36;header}<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" width="100%"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td valign="top" width="54%"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div&gt;{&#36;first_post}&lt;/div&gt;&lt;br /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div align="center"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;strong&gt;&amp;laquo; &lt;a href="{&#36;next_oldest_link}"&gt;{&#36;lang-&gt;next_oldest}&lt;/a&gt; | &lt;a href="{&#36;next_newest_link}"&gt;{&#36;lang-&gt;next_newest}&lt;/a&gt; &amp;raquo;&lt;/strong&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;br /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div id="posts"&gt;{&#36;posts}&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;br class="clear" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div class="float_left"&gt;{&#36;multipage}&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div style="padding-top: 4px;" class="float_right"&gt;{&#36;newreply}&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td valign="top"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;table border="0" cellspacing="0" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="thead" align="center" colspan="3"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;span class="largetext"&gt;&lt;strong&gt;Song Info&lt;/strong&gt;&lt;/span&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top"&gt;Song ID&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top"&gt;:&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top"&gt;{&#36;thread['tid']}&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top" width="100"&gt;Title&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top" width="1"&gt;:&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top"&gt;&lt;a href="{&#36;threadurl}"&gt;{&#36;thread['subject']}&lt;/a&gt;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top"&gt;Artist&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top"&gt;:&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top"&gt;{&#36;GLOBALS['threadfields']['xtlyrics_artist']}&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top"&gt;Album&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top"&gt;:&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top"&gt;{&#36;GLOBALS['threadfields']['xtlyrics_album']}&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top"&gt;Category&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top"&gt;:&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top"&gt;{&#36;GLOBALS['threadfields']['xtlyrics_cat']}&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;ratethread}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top"&gt;Related Song&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top"&gt;:&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top"&gt;{&#36;GLOBALS['tplvars']['xtl_rsid']}&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top"&gt;Miscellaneous&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top"&gt;:&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top"&gt;{&#36;thread['views']} Views, {&#36;thread['replies']} Comments, {&#36;thread['numratings']} Rated&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" colspan="3"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div class="smalltext"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;em&gt;&lt;a href="{&#36;forumurl_q}filterxt_uid={&#36;thread['uid']}"&gt;View All Songs Submitted By {&#36;thread['username']}&lt;/a&gt;&lt;br /&gt;&lt;a href="#" id="share_{&#36;thread['tid']}" title="Share {&#36;thread['subject']}" style="display: none;"&gt;Share {&#36;thread['subject']} Song Lyric&lt;/a&gt;&lt;/em&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div id="share_{&#36;thread['tid']}_popup" class="trow1" style="display: none;"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;table border="0" cellspacing="0" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="thead" align="center" colspan="2"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;span class="largetext"&gt;&lt;strong&gt;Share&lt;/strong&gt;&lt;/span&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" align="center" valign="middle"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a title="Twitter" href="http://twitter.com/home?status={&#36;thread['subject']} - {&#36;mybb-&gt;settings['bburl']}/{&#36;threadurl}" target="_blank"&gt;&lt;img src="images/mnimages/twitter.png" alt="Twitter" /&gt;&lt;/a&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a title="Facebook" href="http://www.facebook.com/share.php?u={&#36;mybb-&gt;settings['bburl']}/{&#36;threadurl}" target="_blank"&gt;&lt;img src="images/mnimages/facebook.png" alt="Facebook" /&gt;&lt;/a&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a title="Digg" href="http://digg.com/submit?url={&#36;mybb-&gt;settings['bburl']}/{&#36;threadurl}" target="_blank"&gt;&lt;img src="images/mnimages/digg.png" alt="Digg" /&gt;&lt;/a&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a title="Reddit" href="http://reddit.com/submit?url={&#36;mybb-&gt;settings['bburl']}/{&#36;threadurl}&amp;amp;title={&#36;thread['subject']}" target="_blank"&gt;&lt;img src="images/mnimages/reddit.png" alt="Reddit" /&gt;&lt;/a&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a title="Delicious" href="http://del.icio.us/post?url={&#36;mybb-&gt;settings['bburl']}/{&#36;threadurl}&amp;amp;title={&#36;thread['subject']}" target="_blank"&gt;&lt;img src="images/mnimages/delicious.png" alt="Delicious" /&gt;&lt;/a&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a title="StumbleUpon" href="http://www.stumbleupon.com/submit?url={&#36;mybb-&gt;settings['bburl']}/{&#36;threadurl}" target="_blank"&gt;&lt;img src="images/mnimages/stumbleupon.png" alt="StumbleUpon" /&gt;&lt;/a&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/table&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/table&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;br /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;table border="0" cellspacing="0" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="thead" align="center" colspan="3"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;span class="largetext"&gt;&lt;strong&gt;Song Box&lt;/strong&gt;&lt;/span&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" colspan="3" align="center"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;GLOBALS['threadfields']['xtlyrics_audio']}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/table&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;noscript&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;br /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;table border="0" cellspacing="0" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="thead" align="center" colspan="2"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;span class="largetext"&gt;&lt;strong&gt;Share&lt;/strong&gt;&lt;/span&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" align="center"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a title="Twitter" href="http://twitter.com/home?status={&#36;thread['subject']} - {&#36;mybb-&gt;settings['bburl']}/{&#36;threadurl}" target="_blank"&gt;&lt;img src="images/mnimages/twitter.png" alt="Twitter" /&gt;&lt;/a&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a title="Facebook" href="http://www.facebook.com/share.php?u={&#36;mybb-&gt;settings['bburl']}/{&#36;threadurl}" target="_blank"&gt;&lt;img src="images/mnimages/facebook.png" alt="Facebook" /&gt;&lt;/a&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a title="Digg" href="http://digg.com/submit?url={&#36;mybb-&gt;settings['bburl']}/{&#36;threadurl}" target="_blank"&gt;&lt;img src="images/mnimages/digg.png" alt="Digg" /&gt;&lt;/a&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a title="Reddit" href="http://reddit.com/submit?url={&#36;mybb-&gt;settings['bburl']}/{&#36;threadurl}&amp;amp;title={&#36;thread['subject']}" target="_blank"&gt;&lt;img src="images/mnimages/reddit.png" alt="Reddit" /&gt;&lt;/a&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a title="Delicious" href="http://del.icio.us/post?url={&#36;mybb-&gt;settings['bburl']}/{&#36;threadurl}&amp;amp;title={&#36;thread['subject']}" target="_blank"&gt;&lt;img src="images/mnimages/delicious.png" alt="Delicious" /&gt;&lt;/a&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a title="StumbleUpon" href="http://www.stumbleupon.com/submit?url={&#36;mybb-&gt;settings['bburl']}/{&#36;threadurl}" target="_blank"&gt;&lt;img src="images/mnimages/stumbleupon.png" alt="StumbleUpon" /&gt;&lt;/a&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/table&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/noscript&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;br /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;table border="0" cellspacing="0" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="thead" align="center"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;span class="largetext"&gt;&lt;strong&gt;{&#36;thread['subject']} Video&lt;/strong&gt;&lt;/span&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" align="center"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;GLOBALS['threadfields']['xtlyrics_ytv']}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/table&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;br /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;table border="0" cellspacing="0" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="thead" align="center"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;span class="largetext"&gt;&lt;strong&gt;Additional Info&lt;/strong&gt;&lt;/span&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;GLOBALS['threadfields']['xtlyrics_addinfo']}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/table&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;br style="clear: both;" /&gt;<br />
{&#36;quickreply}<br />
&lt;br /&gt;<br />
&lt;div class="float_right" style="text-align: right;"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;{&#36;moderationoptions}<br />
&lt;/div&gt;<br />
&lt;br style="clear: both;" /&gt;<br />
&lt;div class="tc smalltext"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;{&#36;forum['name']}&lt;br /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;Powered By: &lt;a href="http://mybbhacks.zingaburga.com"&gt;XThreads&lt;/a&gt; - &lt;a href="http://mybbhacks.zingaburga.com"&gt;MyBB Hacks&lt;/a&gt;<br />
&lt;/div&gt;<br />
&lt;script type="text/javascript"&gt;<br />
// &lt;!--<br />
&nbsp;&nbsp;&nbsp;&nbsp;if(use_xmlhttprequest == "1")<br />
&nbsp;&nbsp;&nbsp;&nbsp;{<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;new PopupMenu("share_{&#36;thread['tid']}");<br />
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&#36;("share_{&#36;thread['tid']}").style.display = "";<br />
// --&gt;<br />
&lt;/script&gt;<br />
{&#36;footer}<br />
&lt;/body&gt;<br />
&lt;/html&gt;</code></div></div><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">xtlyrics_showthread_noreplies</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;table border="0" cellspacing="{&#36;GLOBALS['theme']['borderwidth']}" cellpadding="{&#36;GLOBALS['theme']['tablespace']}" class="tborder" id="xthreads_noreplies"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;tbody&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow2 post_content"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div class="post_body"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div class="my_font"&gt;There is no comment in {&#36;GLOBALS['thread']['subject']} song lyric.&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tbody&gt;<br />
&lt;/table&gt;</code></div></div><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">xtlyrics_showthread_ratethread</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top"&gt;Rate&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top"&gt;:&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;script type="text/javascript" src="jscripts/rating.js?ver=1400"&gt;&lt;/script&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div id="success_rating_{&#36;thread['tid']}"&gt;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div class="inline_rating"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;ul class="star_rating{&#36;not_rated}" id="rating_thread_{&#36;thread['tid']}"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li style="width: {&#36;thread['width']}%" class="current_rating" id="current_rating_{&#36;thread['tid']}"&gt;{&#36;ratingvotesav}&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a class="one_star" title="{&#36;lang-&gt;one_star}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=1&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;1&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a class="two_stars" title="{&#36;lang-&gt;two_stars}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=2&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;2&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a class="three_stars" title="{&#36;lang-&gt;three_stars}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=3&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;3&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a class="four_stars" title="{&#36;lang-&gt;four_stars}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=4&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;4&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a class="five_stars" title="{&#36;lang-&gt;five_stars}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=5&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;5&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/ul&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&lt;/tr&gt;</code></div></div></li>
</ol>
<br />
<span style="font-weight: bold;" class="mycode_b">Change Logs:</span> <a href="http://mybbhacks.zingaburga.com/showthread.php?tid=547&amp;pid=7940#pid7940" target="_blank" rel="noopener" class="mycode_url">30 May 2011</a>]]></description>
			<content:encoded><![CDATA[Requirement: <span style="font-weight: bold;" class="mycode_b"><a href="http://mybbhacks.zingaburga.com/showthread.php?tid=288" target="_blank" rel="noopener" class="mycode_url">XThreads</a></span><br />
Last Update: <a href="http://mybbhacks.zingaburga.com/showthread.php?tid=547&amp;pid=12436#pid12436" target="_blank" rel="noopener" class="mycode_url">7 October 2012</a><br />
<br />
You can modify this (based on MyBB 1.4):<br />
<br />
Custom Thread Fields Setting:<br />
<ol type="1" class="mycode_list"><li>Textbox for Artist:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Name<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> xtlyrics_artist<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select a forum that we will apply this modification'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['xtlyrics_artist']}</span>.<br />
<br />
Additional Info:<br />
If we want user to be able to filter thread/song by Artist:<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Allow Filtering:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format:</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;a href="{&#36;forumurl?}filtertf_xtlyrics_artist={VALUE}" title="View All {VALUE} Songs"&gt;{VALUE}&lt;/a&gt;</code></div></div></li>
</ul>
<br />
</li>
<li>Textbox for Album:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Album<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> xtlyrics_album<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select a forum above'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order?:</span> 2<br />
Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['xtlyrics_album']}</span>.<br />
<br />
Additional Info:<br />
If we want user to be able to filter thread/song by Album:<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Allow Filtering:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format:</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;a href="{&#36;forumurl_q}filtertf_xtlyrics_album={VALUE}" title="View All Songs In {VALUE} Album"&gt;{VALUE}&lt;/a&gt;</code></div></div></li>
</ul>
<br />
</li>
<li>File Input for Artist Photo / Album Cover:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Artist Photo<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> xtlyrics_photo<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select a forum above'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> File<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Valid File Extensions:</span> gif|png|jpg|jpeg<br />
Modify it as our needs. It is the extensions of image that can be uploaded.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Maximum File Size:</span> 1048576<br />
Modify it as our needs. It is a maximum file size (in bytes) that can be uploaded. In this example, 1 Mb.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone<br />
Modify it as our needs. Select <span style="font-style: italic;" class="mycode_i">Everyone (required)</span> if this is a required field.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 3<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Only accept uploaded images:</span> Yes<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Image Thumbnail Generation:</span> 80x60|120x90<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Blank Replacement Value:</span> Ignore this setting if we set this field as required field.<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;if THIS_SCRIPT == 'forumdisplay.php' then&gt;<br />
&lt;a href="{&#36;threadurl}"&gt;&lt;img src="images/default_avatar.gif" alt="" title="View {&#36;thread['subject']} Song Lyric" style="width: 80px; height: 60px;" /&gt;&lt;/a&gt;<br />
&lt;/if&gt;<br />
&lt;if THIS_SCRIPT == 'showthread.php' then&gt;<br />
&lt;img src="images/default_avatar.gif" alt="" title="" style="width: 120px; height: 90px;" /&gt;<br />
&lt;/if&gt;</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format:</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;if THIS_SCRIPT == 'forumdisplay.php' then&gt;<br />
&lt;a href="{&#36;threadurl}"&gt;&lt;img src="{URL}/thumb80x60" alt="" title="View {&#36;thread['subject']} Song Lyric" /&gt;&lt;/a&gt;<br />
&lt;/if&gt;<br />
&lt;if THIS_SCRIPT == 'showthread.php' then&gt;<br />
&lt;a href="{URL}" target="_blank"&gt;&lt;img src="{URL}/thumb120x90" alt="" title="Click To View Full Size" /&gt;&lt;/a&gt;<br />
&lt;/if&gt;</code></div></div></li>
</ul>
<br />
</li>
<li>Textbox for YouTube Video:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> YouTube Video<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> xtlyrics_ytv<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select a forum above'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone<br />
Modify it as our needs. Select <span style="font-style: italic;" class="mycode_i">Everyone (required)</span> if this is a required field.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 4<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Blank Replacement Value:</span> Ignore this setting if we set this field as required field.<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;div align="center"&gt;&lt;strong&gt;&lt;em&gt;There is no video for {&#36;thread['subject']} song&lt;/em&gt;&lt;/strong&gt;&lt;/div&gt;</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format:</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;div align="center"&gt;<br />
&lt;object type="application/x-shockwave-flash" data="http://www.youtube.com/v/{VALUE&#36;1}{VALUE&#36;2}" width="360" height="270"&gt;&lt;param name="movie" value="http://www.youtube.com/v/{VALUE&#36;1}{VALUE&#36;2}" /&gt;&lt;param name="FlashVars" value="playerMode=embedded" /&gt;&lt;p&gt;{&#36;thread['subject']}&lt;/p&gt;&lt;/object&gt;<br />
&lt;/div&gt;</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Text Mask Filter:</span> <span style="font-style: italic;" class="mycode_i">Custom (regex)</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>^(?:([a-zA-Z0-9_&#92;-+]{8,16})&#36;|http&#92;://(?:[a-z]{1,4}&#92;.)?youtube&#92;.com/watch&#92;?v=([a-zA-Z0-9_&#92;-+]{8,16}))</code></div></div>Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['xtlyrics_ytv']}</span>.<br />
</li>
</ul>
<br />
</li>
<li>Textbox for Music URL:<br />
I leave the decision to Admin, what audio widget to be used, especially if user is not allowed to upload an audio for the song they submitted.<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Music URL<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> xtlyrics_audio<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select the forum above'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone<br />
Modify it as our needs. Select <span style="font-style: italic;" class="mycode_i">Everyone (required)</span> if this is a required field.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 5<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Blank Replacement Value:</span> Ignore this setting if we set this field as required field.<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;div align="center"&gt;There is no audio for this song&lt;/div&gt;</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format:</span> Depends on what sharing audio widget site be used. Learn how the sharing URL scheme.<br />
Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['xtlyrics_audio']}</span>.<br />
</li>
</ul>
<br />
</li>
<li>Listbox for Category/Genre:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Music Category<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> xtlyrics_cat<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select the forum above'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Listbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Height:</span> 1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Values List:</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>Band Group<br />
Artist Solo</code></div></div>Modify it as our needs. In this example, we use category, not genre. I just want to make it a bit different with Music Gallery.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 6<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Allow Filtering:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format:</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;a href="{&#36;forumurl?}filtertf_xtlyrics_cat={VALUE}"&gt;{VALUE}&lt;/a&gt;</code></div></div></li>
</ul>
<br />
</li>
<li>Multiline Textbox for Additional Info:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Additional Info<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> xtlyrics_addinfo<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select a forum above'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Multiline Textbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Parsing:</span> Plain text with new lines<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 7<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Blank Replacement Value:</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;div align="center"&gt;&lt;strong&gt;&lt;em&gt;There is no additional info for {&#36;thread['subject']} song&lt;/em&gt;&lt;/strong&gt;&lt;/div&gt;</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format:</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;div class="float_left" style="margin-right: 11px;"&gt;<br />
{&#36;GLOBALS['threadfields']['xtlyrics_photo']['value']}<br />
&lt;/div&gt;<br />
&lt;div class="post_body"&gt;<br />
{VALUE}<br />
&lt;/div&gt;</code></div></div>Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['xtlyrics_addinfo']}</span>.<br />
</li>
</ul>
<br />
</li>
<li>Textbox for Related Song ID:<br />
This is an optional only. Only support 1 related song. And user need to fill this textbox with Song ID (actually, it is a thread ID).<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Related Song ID<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> xtlyrics_rsid<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select a forum above'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Blank Replacement Value:</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&amp;ndash;</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format:</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;setvar xtl_sid&gt;THIS_SCRIPT == 'showthread.php' ? get_thread(intval({VALUE})) : ''&lt;/setvar&gt;<br />
&lt;setvar xtl_rsid&gt;&#36;tplvars['xtl_sid'] &amp;&amp; &#36;tplvars['xtl_sid']['fid'] == &#36;fid ? '&lt;a href="'.get_thread_link(intval(&#36;tplvars['xtl_sid']['tid'])).'"&gt;'.htmlspecialchars_uni(&#36;tplvars['xtl_sid']['subject']).'&lt;/a&gt;' : ''&lt;/setvar&gt;</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Text Mask Filter:</span> <span style="font-style: italic;" class="mycode_i">Digits</span><br />
</li>
</ul>
</li>
</ol>
<br />
Edit the selected forum with this XThreads Options settings:<br />
<ol type="1" class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Prefix:</span> xtlyrics_<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Show first post on every showthread page:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Enable XThreads' Inline Forum Search:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Settings Overrides:</span><ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Setting:</span> Showthread Options -&gt; Post Layout<br />
<span style="font-weight: bold;" class="mycode_b">Value:</span> horizontal<br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>postlayout=horizontal</code></div></div></li>
</ul>
</li>
<li><span style="font-weight: bold;" class="mycode_b">Hide Forum:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
We need to put this forum URL manually in our templates (e.g: <span style="font-style: italic;" class="mycode_i">header</span> template).<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Enable Thread Filters:</span> <span style="font-style: italic;" class="mycode_i">uid</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Custom WOL Text:</span><ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Forum Display:</span> Viewing Lyrics<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">New Thread:</span> Submitting A New Lyric<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">New Reply:</span> Commenting &lt;a href="{1}"&gt;{2}&lt;/a&gt; Lyric<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Show Thread:</span> Viewing &lt;a href="{1}"&gt;{2}&lt;/a&gt; Lyric<br />
</li>
</ul>
</li>
</ol>
<br />
Now, we need to create new templates in Global Template.<br />
Admin CP -&gt; Templates &amp; Style -&gt; Templates -&gt; Global Templates:<br />
<ol type="1" class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">xtlyrics_editpost_first</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;{&#36;mybb-&gt;settings['bbname']} - {&#36;lang-&gt;edit_post}&lt;/title&gt;<br />
{&#36;headerinclude}<br />
&lt;script type="text/javascript" src="jscripts/post.js?ver=1400"&gt;&lt;/script&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
{&#36;header}<br />
{&#36;preview}<br />
{&#36;post_errors}<br />
{&#36;attacherror}<br />
&lt;form action="editpost.php?pid={&#36;pid}&amp;amp;processed=1" method="post" enctype="multipart/form-data" name="input"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type="hidden" name="my_post_key" value="{&#36;mybb-&gt;post_code}" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="thead" colspan="2"&gt;&lt;strong&gt;Edit Lyric&lt;/strong&gt;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;strong&gt;Song Lyric&lt;/strong&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;textarea name="message" id="message" rows="23" cols="50" tabindex="3"&gt;{&#36;message}&lt;/textarea&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/table&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" width="30%"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;strong&gt;Song Title&lt;/strong&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type="text" class="textbox" name="subject" size="40" maxlength="85" value="{&#36;subject}" tabindex="1" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;extra_threadfields}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;subscriptionmethod}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/table&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/table&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;br /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;div align="center"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type="submit" class="button" name="submit" value="{&#36;lang-&gt;update_post}" tabindex="3" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type="submit" class="button" name="previewpost" value="{&#36;lang-&gt;preview_post}" tabindex="4" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type="hidden" name="action" value="do_editpost" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type="hidden" name="posthash" value="{&#36;posthash}" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type="hidden" name="attachmentaid" value="" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type="hidden" name="attachmentact" value="" /&gt;<br />
&lt;/form&gt;<br />
&lt;br /&gt;<br />
&lt;form action="editpost.php" method="post" name="editpost"&gt;<br />
&lt;input type="hidden" name="my_post_key" value="{&#36;mybb-&gt;post_code}" /&gt;<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
&lt;tr&gt;<br />
&lt;td class="thead" colspan="3"&gt;&lt;strong&gt;{&#36;lang-&gt;delete_post}&lt;/strong&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td class="trow1" style="white-space: nowrap"&gt;&lt;input type="checkbox" class="checkbox" name="delete" value="1" tabindex="9" /&gt; &lt;strong&gt;{&#36;lang-&gt;delete_q}&lt;/strong&gt;&lt;/td&gt;<br />
&lt;td class="trow1" width="100%"&gt;{&#36;lang-&gt;delete_1}&lt;br /&gt;&lt;span class="smalltext"&gt;{&#36;lang-&gt;delete_2}&lt;/span&gt;&lt;/td&gt;<br />
&lt;td class="trow1"&gt;&lt;input type="submit" class="button" name="submit" value="{&#36;lang-&gt;delete_now}" tabindex="10" /&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;input type="hidden" name="action" value="deletepost" /&gt;<br />
&lt;input type="hidden" name="pid" value="{&#36;pid}" /&gt;<br />
&lt;/form&gt;<br />
{&#36;footer}<br />
&lt;/body&gt;<br />
&lt;/html&gt;</code></div></div><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">xtlyrics_forumdisplay_searchforum_inline</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;table border="0" cellspacing="{&#36;GLOBALS['theme']['borderwidth']}" cellpadding="{&#36;GLOBALS['theme']['tablespace']}" class="tborder"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="thead largetext" align="center"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;strong&gt;Search Lyrics&lt;/strong&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" align="center"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;form action="forumdisplay.php" method="get"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type="text" class="textbox" name="search" size="25" value="{&#36;searchval}" /&gt; {&#36;gobutton}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type="hidden" name="fid" value="{&#36;fid}" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type="hidden" name="sortby" value="{&#36;sortby}" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type="hidden" name="order" value="{&#36;sortordernow}" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type="hidden" name="datecut" value="{&#36;datecut}" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/form&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;br /&gt;</code></div></div><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">xtlyrics_forumdisplay_sticky_sep</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;div&gt;&lt;strong&gt;Featured Songs&lt;/strong&gt;&lt;/div&gt;</code></div></div><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">xtlyrics_forumdisplay_thread</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;div class="float_left" style="width: 50%; height: 89px;"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" width="100%"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td align="center" class="{&#36;bgcolor}"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;GLOBALS['threadfields']['xtlyrics_photo']['value']}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="{&#36;bgcolor} smalltext" width="100%" title="{&#36;thread['views']} Views, {&#36;thread['replies']} Comments"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;strong&gt;&lt;a href="{&#36;thread['threadlink']}" class="{&#36;inline_edit_class}" id="tid_{&#36;inline_edit_tid}"&gt;{&#36;thread['subject']}&lt;/a&gt;&lt;/strong&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;span&gt;{&#36;GLOBALS['threadfields']['xtlyrics_artist']}&lt;/span&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a href="{&#36;forumurl_q}filterxt_uid={&#36;thread['uid']}" title="View All Songs Submitted By This User"&gt;by&lt;/a&gt;: {&#36;thread['profilelink']}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;modbit}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/table&gt;<br />
&lt;/div&gt;</code></div></div><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">xtlyrics_forumdisplay_threadlist</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" style="clear: both; width: 100%;"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td width="70%" valign="top"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="thead"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div align="center" class="largetext"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;strong&gt;&lt;a href="{&#36;forumurl}"&gt;{&#36;foruminfo['name']}&lt;/a&gt;&lt;/strong&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;inlinemodcol}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" colspan="2"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;threads}{&#36;nullthreads}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/table&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div class="float_left"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;multipage}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div class="float_right" style="margin-top: 4px;"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;newthread}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td valign="top"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;searchforum}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="thead"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div align="center" class="largetext"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;strong&gt;Song Category&lt;/strong&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;strong&gt;&lt;a href="{&#36;forumurl_q}filtertf_xtlyrics_cat=Band Group"&gt;Band Group&lt;/a&gt;&lt;/strong&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;strong&gt;&lt;a href="{&#36;forumurl_q}filtertf_xtlyrics_cat=Artist Solo"&gt;Artist Solo&lt;/a&gt;&lt;/strong&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/table&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;br /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="thead"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div align="center" class="largetext"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;strong&gt;Song Sorter&lt;/strong&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;strong&gt;&lt;a href="{&#36;sorturl}&amp;amp;sortby=started&amp;amp;order=desc"&gt;Last Added&lt;/a&gt;&lt;/strong&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;strong&gt;&lt;a href="{&#36;sorturl}&amp;amp;sortby=replies&amp;amp;order=desc"&gt;Most Commented&lt;/a&gt;&lt;/strong&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;strong&gt;&lt;a href="{&#36;sorturl}&amp;amp;sortby=views&amp;amp;order=desc"&gt;Most Viewed&lt;/a&gt;&lt;/strong&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;strong&gt;&lt;a href="{&#36;sorturl}&amp;amp;sortby=lastpost&amp;amp;order=desc"&gt;Last Commented&lt;/a&gt;&lt;/strong&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;ratingcol}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/table&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;br class="clear" /&gt;<br />
&lt;div class="float_right" style="text-align: right;"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;{&#36;inlinemod}<br />
&nbsp;&nbsp;&nbsp;&nbsp;{&#36;forumjump}<br />
&lt;/div&gt;<br />
&lt;br style="clear: both" /&gt;<br />
{&#36;inline_edit_js}<br />
&lt;div class="tc smalltext"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;{&#36;foruminfo['name']}&lt;br /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;Powered By: &lt;a href="http://mybbhacks.zingaburga.com"&gt;XThreads&lt;/a&gt; - &lt;a href="http://mybbhacks.zingaburga.com"&gt;MyBB Hacks&lt;/a&gt;<br />
&lt;/div&gt;</code></div></div><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">xtlyrics_forumdisplay_threadlist_rating</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;strong&gt;&lt;a href="{&#36;sorturl}&amp;amp;sortby=rating&amp;amp;order=desc"&gt;Most Rated&lt;/a&gt;&lt;/strong&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;script type="text/javascript" src="jscripts/rating.js?ver=1400"&gt;&lt;/script&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;script type="text/javascript"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;!--<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;lang.stars = new Array();<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;lang.stars[1] = "{&#36;lang-&gt;one_star}";<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;lang.stars[2] = "{&#36;lang-&gt;two_stars}";<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;lang.stars[3] = "{&#36;lang-&gt;three_stars}";<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;lang.stars[4] = "{&#36;lang-&gt;four_stars}";<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;lang.stars[5] = "{&#36;lang-&gt;five_stars}";<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// --&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/script&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&lt;/tr&gt;</code></div></div><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">xtlyrics_forumdisplay_threads_sep</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;div class="clear"&gt;&lt;strong&gt;Other Songs&lt;/strong&gt;&lt;/div&gt;</code></div></div><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">xtlyrics_newthread</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;{&#36;lang-&gt;newthread_in}&lt;/title&gt;<br />
{&#36;headerinclude}<br />
&lt;script type="text/javascript" src="jscripts/post.js?ver=1400"&gt;&lt;/script&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
{&#36;header}<br />
{&#36;preview}<br />
{&#36;thread_errors}<br />
{&#36;attacherror}<br />
&lt;form action="newthread.php?fid={&#36;fid}&amp;amp;processed=1" method="post" enctype="multipart/form-data" name="input"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type="hidden" name="my_post_key" value="{&#36;mybb-&gt;post_code}" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="thead" colspan="2"&gt;&lt;strong&gt;New Lyrics&lt;/strong&gt;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;strong&gt;Song Lyric&lt;/strong&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;textarea name="message" id="message" rows="24" cols="50" tabindex="2"&gt;{&#36;message}&lt;/textarea&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/table&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" width="30%"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;strong&gt;Song Title&lt;/strong&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type="text" class="textbox" name="subject" size="40" maxlength="85" value="{&#36;subject}" tabindex="1" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;extra_threadfields}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;modoptions}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;subscriptionmethod}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;captcha}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/table&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/table&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;br /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;div style="text-align:center"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type="submit" class="button" name="submit" value="{&#36;lang-&gt;post_thread}" tabindex="4" accesskey="s" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type="submit" class="button" name="previewpost" value="{&#36;lang-&gt;preview_post}" tabindex="5" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type="hidden" name="action" value="do_newthread" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type="hidden" name="posthash" value="{&#36;posthash}" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type="hidden" name="attachmentaid" value="" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type="hidden" name="attachmentact" value="" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type="hidden" name="quoted_ids" value="{&#36;quoted_ids}" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type="hidden" name="tid" value="{&#36;tid}" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;{&#36;editdraftpid}<br />
&lt;/form&gt;<br />
{&#36;forumrules}<br />
{&#36;footer}<br />
&lt;/body&gt;<br />
&lt;/html&gt;</code></div></div><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">xtlyrics_postbit</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>{&#36;ignore_bit}<br />
&lt;a name="pid{&#36;post['pid']}" id="pid{&#36;post['pid']}"&gt;&lt;/a&gt;<br />
&lt;table width="100%" border="0"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td width="1" valign="top" align="center"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;post['posturl']}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div class="post_meta" id="post_meta_{&#36;post['pid']}"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;post['iplogged']}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td valign="top"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="{&#36;post_extra_style} {&#36;post_visibility}" id="post_{&#36;post['pid']}"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tbody&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow2 post_content {&#36;unapproved_shade}"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;span class="smalltext"&gt;&lt;em&gt;by: &lt;a href="{&#36;post['profilelink_plain']}" id="profile_{&#36;post['pid']}" title="View User Info"&gt;{&#36;post['username_formatted']}&lt;/a&gt;, {&#36;post['postdate']} at {&#36;post['posttime']}&lt;/em&gt;&lt;/span&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div id="profile_{&#36;post['pid']}_popup" class="trow1" style="display: none;"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="thead" align="center" colspan="2"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;span class="largetext"&gt;&lt;strong&gt;User Info&lt;/strong&gt;&lt;/span&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1 post_avatar" width="1" style="{&#36;post['avatar_padding']}"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;post['useravatar']}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1 post_author"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;strong&gt;&lt;span class="largetext"&gt;{&#36;post['profilelink']}&lt;/span&gt;&lt;/strong&gt; <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;post['onlinestatus']}&lt;br /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;span class="smalltext"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;post['usertitle']}&lt;br /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;post['userstars']}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;post['groupimage']}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/span&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/table&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div class="post_body" id="pid_{&#36;post['pid']}"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div class="my_font"&gt;{&#36;post['message']}&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;post['button_edit']}{&#36;post['button_quickdelete']}{&#36;post['button_report']}{&#36;post['button_warn']}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tbody&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/table&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;script type="text/javascript"&gt;<br />
// &lt;!--<br />
&nbsp;&nbsp;&nbsp;&nbsp;if(use_xmlhttprequest == "1")<br />
&nbsp;&nbsp;&nbsp;&nbsp;{<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;new PopupMenu("profile_{&#36;post['pid']}");<br />
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
// --&gt;<br />
&lt;/script&gt;</code></div></div><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">xtlyrics_postbit_first</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>{&#36;ignore_bit}<br />
&lt;a name="pid{&#36;post['pid']}" id="pid{&#36;post['pid']}"&gt;&lt;/a&gt;<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="{&#36;post_extra_style} {&#36;post_visibility}" id="post_{&#36;post['pid']}"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;tbody&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="thead {&#36;unapproved_shade}" align="center"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;span class="largetext"&gt;&lt;strong&gt;{&#36;post['subject']} Lyrics&lt;/strong&gt;&lt;/span&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow2 post_content {&#36;unapproved_shade}"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;post['posturl']}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div class="post_meta float_right" id="post_meta_{&#36;post['pid']}"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;post['iplogged']}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div class="float_left"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;span class="smalltext"&gt;&lt;em&gt;Submitted by: &lt;a href="{&#36;post['profilelink_plain']}" id="profile_{&#36;post['pid']}" title="View Submitter Info"&gt;{&#36;post['username_formatted']}&lt;/a&gt;&lt;br /&gt;{&#36;post['postdate']}, {&#36;post['posttime']}&lt;/em&gt;&lt;/span&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div id="profile_{&#36;post['pid']}_popup" class="trow1" style="display: none;"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="thead" align="center" colspan="2"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;span class="largetext"&gt;&lt;strong&gt;Submitter Info&lt;/strong&gt;&lt;/span&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1 post_avatar" width="1" style="{&#36;post['avatar_padding']}"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;post['useravatar']}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1 post_author"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;strong&gt;&lt;span class="largetext"&gt;{&#36;post['profilelink']}&lt;/span&gt;&lt;/strong&gt; {&#36;post['onlinestatus']}&lt;br /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;span class="smalltext"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;post['usertitle']}&lt;br /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;post['userstars']}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;post['groupimage']}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/span&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/table&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;br class="clear" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div class="post_body" id="pid_{&#36;post['pid']}"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div class="my_font"&gt;{&#36;post['message']}&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;post['button_edit']}{&#36;post['button_quickdelete']}{&#36;post['button_report']}{&#36;post['button_warn']}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tbody&gt;<br />
&lt;/table&gt;<br />
<br />
&lt;script type="text/javascript"&gt;<br />
// &lt;!--<br />
&nbsp;&nbsp;&nbsp;&nbsp;if(use_xmlhttprequest == "1")<br />
&nbsp;&nbsp;&nbsp;&nbsp;{<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;new PopupMenu("profile_{&#36;post['pid']}");<br />
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
// --&gt;<br />
&lt;/script&gt;</code></div></div><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">xtlyrics_postbit_first_posturl</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;div class="float_right"&gt;{&#36;post['inlinecheck']}&lt;/div&gt;</code></div></div><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">xtlyrics_postbit_inlinecheck</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;input type="checkbox" class="checkbox" name="inlinemod_{&#36;post['pid']}" id="inlinemod_{&#36;post['pid']}" value="1" style="vertical-align: middle;" {&#36;inlinecheck}&nbsp;&nbsp;/&gt;</code></div></div><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">xtlyrics_postbit_iplogged_hiden</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;span class="smalltext"&gt;&lt;strong&gt;&lt;a href="moderation.php?action=getip&amp;amp;pid={&#36;post['pid']}"&gt;IP&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;</code></div></div><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">xtlyrics_postbit_posturl</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;div style="margin-top: 3px;"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;span class="smalltext"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;strong&gt;&lt;a href="{&#36;post['postlink']}#pid{&#36;post['pid']}"&gt;#{&#36;postcounter}&lt;/a&gt;&lt;/strong&gt;&lt;br /&gt;{&#36;post['inlinecheck']}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/span&gt;<br />
&lt;/div&gt;</code></div></div><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">xtlyrics_showthread</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;{&#36;thread['subject']}&lt;/title&gt;<br />
{&#36;headerinclude}<br />
&lt;script type="text/javascript"&gt;<br />
&lt;!--<br />
&nbsp;&nbsp;&nbsp;&nbsp;var quickdelete_confirm = "{&#36;lang-&gt;quickdelete_confirm}";<br />
// --&gt;<br />
&lt;/script&gt;<br />
&lt;script type="text/javascript" src="jscripts/thread.js?ver=1400"&gt;&lt;/script&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
{&#36;header}<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" width="100%"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td valign="top" width="54%"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div&gt;{&#36;first_post}&lt;/div&gt;&lt;br /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div align="center"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;strong&gt;&amp;laquo; &lt;a href="{&#36;next_oldest_link}"&gt;{&#36;lang-&gt;next_oldest}&lt;/a&gt; | &lt;a href="{&#36;next_newest_link}"&gt;{&#36;lang-&gt;next_newest}&lt;/a&gt; &amp;raquo;&lt;/strong&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;br /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div id="posts"&gt;{&#36;posts}&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;br class="clear" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div class="float_left"&gt;{&#36;multipage}&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div style="padding-top: 4px;" class="float_right"&gt;{&#36;newreply}&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td valign="top"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;table border="0" cellspacing="0" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="thead" align="center" colspan="3"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;span class="largetext"&gt;&lt;strong&gt;Song Info&lt;/strong&gt;&lt;/span&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top"&gt;Song ID&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top"&gt;:&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top"&gt;{&#36;thread['tid']}&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top" width="100"&gt;Title&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top" width="1"&gt;:&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top"&gt;&lt;a href="{&#36;threadurl}"&gt;{&#36;thread['subject']}&lt;/a&gt;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top"&gt;Artist&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top"&gt;:&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top"&gt;{&#36;GLOBALS['threadfields']['xtlyrics_artist']}&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top"&gt;Album&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top"&gt;:&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top"&gt;{&#36;GLOBALS['threadfields']['xtlyrics_album']}&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top"&gt;Category&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top"&gt;:&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top"&gt;{&#36;GLOBALS['threadfields']['xtlyrics_cat']}&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;ratethread}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top"&gt;Related Song&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top"&gt;:&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top"&gt;{&#36;GLOBALS['tplvars']['xtl_rsid']}&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top"&gt;Miscellaneous&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top"&gt;:&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top"&gt;{&#36;thread['views']} Views, {&#36;thread['replies']} Comments, {&#36;thread['numratings']} Rated&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" colspan="3"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div class="smalltext"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;em&gt;&lt;a href="{&#36;forumurl_q}filterxt_uid={&#36;thread['uid']}"&gt;View All Songs Submitted By {&#36;thread['username']}&lt;/a&gt;&lt;br /&gt;&lt;a href="#" id="share_{&#36;thread['tid']}" title="Share {&#36;thread['subject']}" style="display: none;"&gt;Share {&#36;thread['subject']} Song Lyric&lt;/a&gt;&lt;/em&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div id="share_{&#36;thread['tid']}_popup" class="trow1" style="display: none;"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;table border="0" cellspacing="0" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="thead" align="center" colspan="2"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;span class="largetext"&gt;&lt;strong&gt;Share&lt;/strong&gt;&lt;/span&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" align="center" valign="middle"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a title="Twitter" href="http://twitter.com/home?status={&#36;thread['subject']} - {&#36;mybb-&gt;settings['bburl']}/{&#36;threadurl}" target="_blank"&gt;&lt;img src="images/mnimages/twitter.png" alt="Twitter" /&gt;&lt;/a&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a title="Facebook" href="http://www.facebook.com/share.php?u={&#36;mybb-&gt;settings['bburl']}/{&#36;threadurl}" target="_blank"&gt;&lt;img src="images/mnimages/facebook.png" alt="Facebook" /&gt;&lt;/a&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a title="Digg" href="http://digg.com/submit?url={&#36;mybb-&gt;settings['bburl']}/{&#36;threadurl}" target="_blank"&gt;&lt;img src="images/mnimages/digg.png" alt="Digg" /&gt;&lt;/a&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a title="Reddit" href="http://reddit.com/submit?url={&#36;mybb-&gt;settings['bburl']}/{&#36;threadurl}&amp;amp;title={&#36;thread['subject']}" target="_blank"&gt;&lt;img src="images/mnimages/reddit.png" alt="Reddit" /&gt;&lt;/a&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a title="Delicious" href="http://del.icio.us/post?url={&#36;mybb-&gt;settings['bburl']}/{&#36;threadurl}&amp;amp;title={&#36;thread['subject']}" target="_blank"&gt;&lt;img src="images/mnimages/delicious.png" alt="Delicious" /&gt;&lt;/a&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a title="StumbleUpon" href="http://www.stumbleupon.com/submit?url={&#36;mybb-&gt;settings['bburl']}/{&#36;threadurl}" target="_blank"&gt;&lt;img src="images/mnimages/stumbleupon.png" alt="StumbleUpon" /&gt;&lt;/a&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/table&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/table&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;br /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;table border="0" cellspacing="0" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="thead" align="center" colspan="3"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;span class="largetext"&gt;&lt;strong&gt;Song Box&lt;/strong&gt;&lt;/span&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" colspan="3" align="center"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;GLOBALS['threadfields']['xtlyrics_audio']}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/table&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;noscript&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;br /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;table border="0" cellspacing="0" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="thead" align="center" colspan="2"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;span class="largetext"&gt;&lt;strong&gt;Share&lt;/strong&gt;&lt;/span&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" align="center"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a title="Twitter" href="http://twitter.com/home?status={&#36;thread['subject']} - {&#36;mybb-&gt;settings['bburl']}/{&#36;threadurl}" target="_blank"&gt;&lt;img src="images/mnimages/twitter.png" alt="Twitter" /&gt;&lt;/a&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a title="Facebook" href="http://www.facebook.com/share.php?u={&#36;mybb-&gt;settings['bburl']}/{&#36;threadurl}" target="_blank"&gt;&lt;img src="images/mnimages/facebook.png" alt="Facebook" /&gt;&lt;/a&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a title="Digg" href="http://digg.com/submit?url={&#36;mybb-&gt;settings['bburl']}/{&#36;threadurl}" target="_blank"&gt;&lt;img src="images/mnimages/digg.png" alt="Digg" /&gt;&lt;/a&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a title="Reddit" href="http://reddit.com/submit?url={&#36;mybb-&gt;settings['bburl']}/{&#36;threadurl}&amp;amp;title={&#36;thread['subject']}" target="_blank"&gt;&lt;img src="images/mnimages/reddit.png" alt="Reddit" /&gt;&lt;/a&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a title="Delicious" href="http://del.icio.us/post?url={&#36;mybb-&gt;settings['bburl']}/{&#36;threadurl}&amp;amp;title={&#36;thread['subject']}" target="_blank"&gt;&lt;img src="images/mnimages/delicious.png" alt="Delicious" /&gt;&lt;/a&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a title="StumbleUpon" href="http://www.stumbleupon.com/submit?url={&#36;mybb-&gt;settings['bburl']}/{&#36;threadurl}" target="_blank"&gt;&lt;img src="images/mnimages/stumbleupon.png" alt="StumbleUpon" /&gt;&lt;/a&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/table&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/noscript&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;br /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;table border="0" cellspacing="0" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="thead" align="center"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;span class="largetext"&gt;&lt;strong&gt;{&#36;thread['subject']} Video&lt;/strong&gt;&lt;/span&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" align="center"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;GLOBALS['threadfields']['xtlyrics_ytv']}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/table&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;br /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;table border="0" cellspacing="0" cellpadding="{&#36;theme['tablespace']}" class="tborder"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="thead" align="center"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;span class="largetext"&gt;&lt;strong&gt;Additional Info&lt;/strong&gt;&lt;/span&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&#36;GLOBALS['threadfields']['xtlyrics_addinfo']}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/table&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;br style="clear: both;" /&gt;<br />
{&#36;quickreply}<br />
&lt;br /&gt;<br />
&lt;div class="float_right" style="text-align: right;"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;{&#36;moderationoptions}<br />
&lt;/div&gt;<br />
&lt;br style="clear: both;" /&gt;<br />
&lt;div class="tc smalltext"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;{&#36;forum['name']}&lt;br /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;Powered By: &lt;a href="http://mybbhacks.zingaburga.com"&gt;XThreads&lt;/a&gt; - &lt;a href="http://mybbhacks.zingaburga.com"&gt;MyBB Hacks&lt;/a&gt;<br />
&lt;/div&gt;<br />
&lt;script type="text/javascript"&gt;<br />
// &lt;!--<br />
&nbsp;&nbsp;&nbsp;&nbsp;if(use_xmlhttprequest == "1")<br />
&nbsp;&nbsp;&nbsp;&nbsp;{<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;new PopupMenu("share_{&#36;thread['tid']}");<br />
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&#36;("share_{&#36;thread['tid']}").style.display = "";<br />
// --&gt;<br />
&lt;/script&gt;<br />
{&#36;footer}<br />
&lt;/body&gt;<br />
&lt;/html&gt;</code></div></div><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">xtlyrics_showthread_noreplies</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;table border="0" cellspacing="{&#36;GLOBALS['theme']['borderwidth']}" cellpadding="{&#36;GLOBALS['theme']['tablespace']}" class="tborder" id="xthreads_noreplies"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;tbody&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow2 post_content"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div class="post_body"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div class="my_font"&gt;There is no comment in {&#36;GLOBALS['thread']['subject']} song lyric.&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tbody&gt;<br />
&lt;/table&gt;</code></div></div><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">xtlyrics_showthread_ratethread</span><br />
<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top"&gt;Rate&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top"&gt;:&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;td class="trow1" valign="top"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;script type="text/javascript" src="jscripts/rating.js?ver=1400"&gt;&lt;/script&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div id="success_rating_{&#36;thread['tid']}"&gt;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div class="inline_rating"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;ul class="star_rating{&#36;not_rated}" id="rating_thread_{&#36;thread['tid']}"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li style="width: {&#36;thread['width']}%" class="current_rating" id="current_rating_{&#36;thread['tid']}"&gt;{&#36;ratingvotesav}&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a class="one_star" title="{&#36;lang-&gt;one_star}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=1&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;1&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a class="two_stars" title="{&#36;lang-&gt;two_stars}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=2&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;2&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a class="three_stars" title="{&#36;lang-&gt;three_stars}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=3&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;3&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a class="four_stars" title="{&#36;lang-&gt;four_stars}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=4&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;4&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a class="five_stars" title="{&#36;lang-&gt;five_stars}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=5&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;5&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/ul&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&lt;/tr&gt;</code></div></div></li>
</ol>
<br />
<span style="font-weight: bold;" class="mycode_b">Change Logs:</span> <a href="http://mybbhacks.zingaburga.com/showthread.php?tid=547&amp;pid=7940#pid7940" target="_blank" rel="noopener" class="mycode_url">30 May 2011</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Profile Forum]]></title>
			<link>https://gidenler.me/thread-448.html</link>
			<pubDate>Wed, 19 Mar 2025 18:09:11 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://gidenler.me/member.php?action=profile&uid=2">Hasan</a>]]></dc:creator>
			<guid isPermaLink="false">https://gidenler.me/thread-448.html</guid>
			<description><![CDATA[Requirement: <span style="font-weight: bold;" class="mycode_b"><a href="http://mybbhacks.zingaburga.com/showthread.php?tid=288" target="_blank" rel="noopener" class="mycode_url">XThreads</a></span><br />
<br />
With XThreads, we can create profile forum. The basic idea is, our member can create a profile thread, which is contains their character in a game. They can upload their screenshots from the game, and fill various info about their character. And they can edit it whenever they want.<br />
<br />
Unfortunately, it is hard to give an example for each game, so, we will take The Sims game in this example. If we want to apply it for another game, we need to modify the info / XThreads thread fields to make it suitable with that game.<br />
<br />
Possibility for another usage: we can use it as another profile page for our member. With XThreads <span style="font-style: italic;" class="mycode_i">Viewable by Usergroups</span> settings, we can create "private" info for the profile thread. And, because XThreads has an ability to choose in which forum id(s) a XThreads thread field can be used, it will make us easier to choose which usegroup can create a profile thread. We can combine it with forum permission.<br />
<br />
We can use the forum permission for this example too: if we have a RPG forum which has more than one usergroup as clan, we can set the forum permission for each usergroup / clan. And then, we can set the forum related to a clan with custom XThreads thread field. So, each usergroup / clan will has different info / stats. Plus, if we want to create some "private" info / stats (viewable by that clan member only), we can use XThreads <span style="font-style: italic;" class="mycode_i">Viewable by Usergroups</span> feature. Great, huh? A lot of "magic" can be done by XThreads!<br />
<br />
Here is a simple example to create a Profile Forum (based on The Sims Game):<br />
<br />
1. Textbox for Sim's Name:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Your Sim's Name<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> profname<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select a forum that we will apply the profile forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Textbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['profname']}</span>.<br />
</li>
</ul>
<br />
2. Listbox for Sim's Gender:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Your Sim's Gender<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> profgender<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select the profile forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Listbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Height:</span> 1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Values List:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>Male<br />
Female</code></div></div>Do we need to modify it? <img src="https://gidenler.me/images/v2/smile/=D.gif" alt="Big Grin" title="Big Grin" class="smilie smilie_4" /><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 2<br />
Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['profgender']}</span>.<br />
</li>
</ul>
<br />
3. Listbox for Sim's Status:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Your Sim's Status<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> profstatus<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select the profile forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Listbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Height:</span> 1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Values List:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>Single<br />
Married</code></div></div>Modify it as our need.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 3<br />
Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['profstatus']}</span>.<br />
</li>
</ul>
<br />
4. Listbox for Sim's Main Career:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Your Sim's Main Career<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> profcareer<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select the profile forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Listbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Height:</span> 1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Values List:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>None<br />
Business<br />
Entertainment<br />
Law Enforcement</code></div></div>Modify it as our need.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 4<br />
Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['profcareer']}</span>.<br />
</li>
</ul>
<br />
5. Textbox for Family Friends:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Family Friends<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> profffriends<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Description:</span> The number of your family friends. e.g: 99. Leave it blank if you didn't have any friends yet.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select the profile forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Textbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 5<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Blank Replacement Value:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;em&gt;None&lt;/em&gt;</code></div></div>
</li>
<li><span style="font-weight: bold;" class="mycode_b">Text Mask Filter:</span> <div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>^[0-9]{1,3}&#36;</code></div></div>I'm not quite sure how much the maximum number of family friends for a Sim.<br />
Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['profffriends']}</span>.<br />
</li>
</ul>
<br />
6. Textbox for Sim's Age:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Your Sim's Age<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> profage<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Description:</span> Your Sim's age in year. e.g: 9. Leave it blank if it is less than 1 year.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select the profile forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Textbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 6<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Blank Replacement Value:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;em&gt;Less than one year old&lt;/em&gt;</code></div></div>
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>{VALUE} Years Old</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Text Mask Filter:</span> <div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>^[0-9]{1,2}&#36;</code></div></div>I hope it is enough.<br />
Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['profage']}</span>.<br />
</li>
</ul>
<br />
7. File Input for Sim's Picture:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Your Sim's Picture<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> profpic<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Description:</span> Upload your Sim's picture - Required<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select the profile forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> File<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Valid File Extensions:</span> gif|png|jpg|jpeg<br />
Modify it as our needs. It is the extensions of image that can be uploaded.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Maximum File Size:</span> 1048576<br />
Modify it as our needs. It is a maximum file size (in bytes) that can be uploaded. In this example, 1 Mb.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 7<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Only accept uploaded images:</span> Yes<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Image Thumbnail Generation:</span> 160x120<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;img src="{URL}/thumb160x120" alt="" title="" style="margin: 3px;" /&gt;</code></div></div>
Variable for displaying this value in our template: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['profpic']['value']}</span><br />
</li>
</ul>
<br />
8. Listbox for Sim's Skill:<br />
Repeat this step as our needs. Just remember to use a different <span style="font-style: italic;" class="mycode_i">Title</span> and <span style="font-style: italic;" class="mycode_i">Key</span>. And modify the <span style="font-style: italic;" class="mycode_i">Blank Replacement Value</span> and the <span style="font-style: italic;" class="mycode_i">Display Format</span> too, especially for the word <span style="font-style: italic;" class="mycode_i">Cooking Level</span>.<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Cooking Skill<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> profcooking<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select the profile forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Listbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Height:</span> 1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Values List:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>1<br />
2<br />
3<br />
4<br />
5<br />
6<br />
7<br />
8<br />
9<br />
10</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 8<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Blank Replacement Value:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;tr&gt;&lt;td width="150"&gt;Cooking Level&lt;/td&gt;<br />
&lt;td width="1"&gt;:&lt;/td&gt;<br />
&lt;td&gt;<br />
&lt;div class="tcat" style="width: 250px;" align="center"&gt;<br />
&lt;strong&gt;Level 0&lt;/strong&gt;<br />
&lt;/div&gt;<br />
&lt;/td&gt;<br />
&lt;/tr&gt;</code></div></div>
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;tr&gt;&lt;td width="150"&gt;Cooking Level&lt;/td&gt;<br />
&lt;td width="1"&gt;:&lt;/td&gt;<br />
&lt;td&gt;<br />
&lt;div class="tcat" style="width: 250px;"&gt;<br />
&lt;div class="thead" style="width: {VALUE}0%; white-space: nowrap;"&gt;<br />
&lt;span style="margin-left: 9px;"&gt;&lt;strong&gt;Level {VALUE}&lt;/strong&gt;&lt;/span&gt;<br />
&lt;/div&gt;<br />
&lt;/div&gt;<br />
&lt;/td&gt;&lt;/tr&gt;</code></div></div>
Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['profcooking']}</span>.<br />
Use different variable if we repeat this step. Modify the <span style="font-style: italic;" class="mycode_i">profcooking</span> word to match with the key.<br />
Example:<br />
Key: profbody<br />
Variable: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['profbody']}</span><br />
</li>
</ul>
<br />
Optional step: We can create another File input for Additional Sim's Pictures. Just use another <span style="font-style: italic;" class="mycode_i">Key</span> for that. Example:<br />
<br />
Opt 1. File input for Additional Sim's Pictures.<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Your Add Sim's Picture<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> profpic1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Description:</span> Upload an additional picture - Not required<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select the profile forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> File<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Valid File Extensions:</span> gif|png|jpg|jpeg<br />
Modify it as our needs. It is the extensions of image that can be uploaded.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Maximum File Size:</span> 1048576<br />
Modify it as our needs. It is a maximum file size (in bytes) that can be uploaded. In this example, 1 Mb.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 9<br />
Modify it as our need.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Only accept uploaded images:</span> Yes<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Image Thumbnail Generation:</span> 160x120<br />
Modify it as our needs. It is thumbnail sizes that we can use for this image.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Blank Replacement Value:</span> <span style="font-family: Courier;" class="mycode_font">&amp;nbsp;</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format:</span> <div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;a href="{URL}"&gt;&lt;img src="{URL}/thumb160x120" alt="" title="{&#36;GLOBALS['threadfields']['profdesc1']}" style="border: 1px solid #C1C1C1; padding: 3px; margin: 3px;" /&gt;&lt;/a&gt;</code></div></div>
Variable for displaying this value in our template: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['profpic1']['value']}</span><br />
If we didn't use the <span style="font-style: italic;" class="mycode_i">Opt 2</span> step, remove <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['profdesc1']}</span> variable from the <span style="font-style: italic;" class="mycode_i">title</span> attribute.<br />
</li>
</ul>
<br />
Opt 2. Textbox for Additional Picture Description:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Additional Picture Description 1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> profdesc1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Description:</span> Description for the additional picture - Not Required<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select the profile forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Textbox<br />
I think 255 chars is enough.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 10<br />
Modify it as our needs.<br />
</li>
</ul>
<br />
Repeat two steps above depend on max images that user can upload. And use different <span style="font-style: italic;" class="mycode_i">Key</span>.<br />
<br />
9. Now, XThreads Options in Forum settings (the Profile Forum):<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Prefix:</span> <span style="font-style: italic;" class="mycode_i">prof_</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Thread Grouping:</span> 2<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Show first post on every showthread page:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Enable XThreads' Inline Forum Search:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Force Postbit Layout:</span> Force horizontal postbit layout<br />
</li>
</ul>
<br />
Optional setting: Set forum permission for which usergroup can create thread in this forum.<br />
<br />
10. Create new templates in Global Template:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> prof_forumdisplay_group_sep<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;/tr&gt;<br />
&lt;tr&gt;</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> prof_forumdisplay_nothreads<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;td&gt;<br />
	&lt;table border="0" cellspacing="{&#36;GLOBALS['theme']['borderwidth']}" cellpadding="{&#36;GLOBALS['theme']['tablespace']}" class="tborder" style="clear: both;"&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="thead" align="center" colspan="{&#36;GLOBALS['colspan']}"&gt;<br />
				&lt;div&gt;&lt;strong&gt;Add Your Sims!&lt;/strong&gt;&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1" align="center"&gt;<br />
				Show us your Sims! You can edit your Sim's stats and pictures whenever you want!<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/table&gt;<br />
&lt;/td&gt;</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> prof_forumdisplay_thread<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;td width="50%" valign="top"&gt;<br />
	&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="clear: both;"&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="thead" align="center" colspan="{&#36;colspan}"&gt;<br />
				&lt;div&gt;&lt;strong&gt;&lt;a href="{&#36;thread['threadlink']}" class="{&#36;inline_edit_class} {&#36;new_class}" id="tid_{&#36;inline_edit_tid}"&gt;{&#36;thread['subject']}&lt;/a&gt;&lt;/strong&gt;&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="{&#36;bgcolor}" width="1"&gt;<br />
				&lt;div align="center"&gt;<br />
					{&#36;GLOBALS['threadfields']['profpic']['value']}<br />
				&lt;/div&gt;<br />
			&lt;/td&gt;<br />
			&lt;td class="{&#36;bgcolor}" width="100%"&gt;<br />
				&lt;table border="0" width="100%"&gt;<br />
					&lt;tr&gt;<br />
						&lt;td&gt;Sim's Owner&lt;/td&gt;&lt;td width="1"&gt;:&lt;/td&gt;&lt;td&gt;{&#36;thread['profilelink']}&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
					&lt;tr&gt;<br />
						&lt;td&gt;Sim's Name&lt;/td&gt;&lt;td width="1"&gt;:&lt;/td&gt;<br />
						&lt;td&gt;&lt;a href="{&#36;thread['threadlink']}"&gt;{&#36;GLOBALS['threadfields']['profname']}&lt;/a&gt;&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
					{&#36;rating}<br />
					&lt;tr&gt;<br />
						&lt;td&gt;Sim's Viewed&lt;/td&gt;&lt;td width="1"&gt;:&lt;/td&gt;&lt;td&gt;{&#36;thread['views']}&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
					&lt;tr&gt;<br />
						&lt;td valign="top"&gt;Commented&lt;/td&gt;<br />
						&lt;td width="1" valign="top"&gt;:&lt;/td&gt;<br />
						&lt;td valign="top"&gt;<br />
							&lt;a href="javascript:MyBB.whoPosted({&#36;thread['tid']});"&gt;{&#36;thread['replies']}&lt;/a&gt;{&#36;unapproved_posts}<br />
						&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
				&lt;/table&gt;<br />
			&lt;/td&gt;<br />
			{&#36;modbit}<br />
		&lt;/tr&gt;<br />
	&lt;/table&gt;<br />
&lt;/td&gt;</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> prof_forumdisplay_threadlist<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;div class="float_left"&gt;<br />
	{&#36;multipage}<br />
&lt;/div&gt;<br />
&lt;div class="float_right"&gt;<br />
	{&#36;newthread}<br />
&lt;/div&gt;<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="clear: both;"&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="thead" colspan="{&#36;colspan}"&gt;<br />
			&lt;div align="center"&gt;<br />
				&lt;strong&gt;{&#36;foruminfo['name']}&lt;/strong&gt;<br />
			&lt;/div&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="tcat smalltext" width="100%" colspan="2"&gt;<br />
			&lt;span class="float_left"&gt;<br />
				&lt;strong&gt;Sort By: &lt;a href="{&#36;sorturl}&amp;amp;sortby=subject&amp;amp;order=asc"&gt;{&#36;lang-&gt;thread}&lt;/a&gt; {&#36;orderarrow['subject']} | &lt;a href="{&#36;sorturl}&amp;amp;sortby=starter&amp;amp;order=asc"&gt;{&#36;lang-&gt;author}&lt;/a&gt; {&#36;orderarrow['starter']} | &lt;a href="{&#36;sorturl}&amp;amp;sortby=replies&amp;amp;order=desc"&gt;{&#36;lang-&gt;replies}&lt;/a&gt; {&#36;orderarrow['replies']} | &lt;a href="{&#36;sorturl}&amp;amp;sortby=views&amp;amp;order=desc"&gt;{&#36;lang-&gt;views}&lt;/a&gt; {&#36;orderarrow['views']} {&#36;ratingcol} | &lt;a href="{&#36;sorturl}&amp;amp;sortby=lastpost&amp;amp;order=desc"&gt;{&#36;lang-&gt;lastpost}&lt;/a&gt; {&#36;orderarrow['lastpost']}&lt;/strong&gt;<br />
			&lt;/span&gt;<br />
			&lt;span class="float_right"&gt;<br />
				&lt;strong&gt;&lt;a href="misc.php?action=markread&amp;amp;fid={&#36;fid}"&gt;{&#36;lang-&gt;markforum_read}&lt;/a&gt; | &lt;a href="usercp2.php?action={&#36;add_remove_subscription}subscription&amp;amp;type=forum&amp;amp;fid={&#36;fid}&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;{&#36;add_remove_subscription_text}&lt;/a&gt;{&#36;clearstoredpass}&lt;/strong&gt;<br />
			&lt;/span&gt;<br />
		&lt;/td&gt;<br />
		{&#36;inlinemodcol}<br />
	&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;br class="clear" /&gt;<br />
&lt;table border="0" width="100%" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}"&gt;<br />
	&lt;tr&gt;<br />
		{&#36;threads}{&#36;nullthreads}<br />
	&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;br class="clear" /&gt;<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="clear: both;"&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="tcat" colspan="{&#36;colspan}"&gt;<br />
			&lt;span class="float_left"&gt;<br />
				&lt;form action="forumdisplay.php" method="get"&gt;<br />
					&lt;input type="hidden" name="fid" value="{&#36;fid}" /&gt;<br />
					&lt;select name="sortby"&gt;<br />
						&lt;option value="subject" {&#36;sortsel['subject']}&gt;{&#36;lang-&gt;sort_by_subject}&lt;/option&gt;<br />
						&lt;option value="lastpost" {&#36;sortsel['lastpost']}&gt;{&#36;lang-&gt;sort_by_lastpost}&lt;/option&gt;<br />
						&lt;option value="starter" {&#36;sortsel['starter']}&gt;{&#36;lang-&gt;sort_by_starter}&lt;/option&gt;<br />
						&lt;option value="started" {&#36;sortsel['started']}&gt;{&#36;lang-&gt;sort_by_started}&lt;/option&gt;<br />
						{&#36;ratingsort}<br />
						&lt;option value="replies" {&#36;sortsel['replies']}&gt;{&#36;lang-&gt;sort_by_replies}&lt;/option&gt;<br />
						&lt;option value="views" {&#36;sortsel['views']}&gt;{&#36;lang-&gt;sort_by_views}&lt;/option&gt;<br />
					&lt;/select&gt;<br />
					&lt;select name="order"&gt;<br />
						&lt;option value="asc" {&#36;ordersel['asc']}&gt;{&#36;lang-&gt;sort_order_asc}&lt;/option&gt;<br />
						&lt;option value="desc" {&#36;ordersel['desc']}&gt;{&#36;lang-&gt;sort_order_desc}&lt;/option&gt;<br />
					&lt;/select&gt;<br />
					&lt;select name="datecut"&gt;<br />
						&lt;option value="1" {&#36;datecutsel['1']}&gt;{&#36;lang-&gt;datelimit_1day}&lt;/option&gt;<br />
						&lt;option value="5" {&#36;datecutsel['5']}&gt;{&#36;lang-&gt;datelimit_5days}&lt;/option&gt;<br />
						&lt;option value="10" {&#36;datecutsel['10']}&gt;{&#36;lang-&gt;datelimit_10days}&lt;/option&gt;<br />
						&lt;option value="20" {&#36;datecutsel['20']}&gt;{&#36;lang-&gt;datelimit_20days}&lt;/option&gt;<br />
						&lt;option value="50" {&#36;datecutsel['50']}&gt;{&#36;lang-&gt;datelimit_50days}&lt;/option&gt;<br />
						&lt;option value="75" {&#36;datecutsel['75']}&gt;{&#36;lang-&gt;datelimit_75days}&lt;/option&gt;<br />
						&lt;option value="100" {&#36;datecutsel['100']}&gt;{&#36;lang-&gt;datelimit_100days}&lt;/option&gt;<br />
						&lt;option value="365" {&#36;datecutsel['365']}&gt;{&#36;lang-&gt;datelimit_lastyear}&lt;/option&gt;<br />
						&lt;option value="9999" {&#36;datecutsel['9999']}&gt;{&#36;lang-&gt;datelimit_beginning}&lt;/option&gt;<br />
					&lt;/select&gt;<br />
					{&#36;gobutton}<br />
				&lt;/form&gt;<br />
			&lt;/span&gt;<br />
			&lt;span class="float_right"&gt;<br />
				{&#36;forumjump}<br />
			&lt;/span&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="tfoot" align="center" colspan="{&#36;colspan}"&gt;<br />
			&lt;strong&gt;&lt;a href="http://mybbhacks.zingaburga.com"&gt;XThreads&lt;/a&gt; - &lt;a href="http://mybbhacks.zingaburga.com"&gt;MyBB Hacks&lt;/a&gt;&lt;/strong&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;div class="float_left"&gt;<br />
	{&#36;multipage}<br />
&lt;/div&gt;<br />
&lt;div class="float_right" style="margin-top: 4px;"&gt;<br />
	{&#36;newthread}<br />
&lt;/div&gt;<br />
&lt;br style="clear: both;" /&gt;<br />
&lt;br /&gt;<br />
&lt;div class="float_left"&gt;<br />
	&lt;div class="float_left"&gt;<br />
		&lt;dl class="thread_legend smalltext"&gt;<br />
			&lt;dd&gt;&lt;img src="{&#36;theme['imgdir']}/newfolder.gif" alt="{&#36;lang-&gt;new_thread}" title="{&#36;lang-&gt;new_thread}" /&gt; {&#36;lang-&gt;new_thread}&lt;/dd&gt;<br />
			&lt;dd&gt;&lt;img src="{&#36;theme['imgdir']}/newhotfolder.gif" alt="{&#36;lang-&gt;new_hot_thread}" title="{&#36;lang-&gt;new_hot_thread}" /&gt; {&#36;lang-&gt;new_hot_thread}&lt;/dd&gt;<br />
			&lt;dd&gt;&lt;img src="{&#36;theme['imgdir']}/hotfolder.gif" alt="{&#36;lang-&gt;hot_thread}" title="{&#36;lang-&gt;hot_thread}" /&gt; {&#36;lang-&gt;hot_thread}&lt;/dd&gt;<br />
		&lt;/dl&gt;<br />
	&lt;/div&gt;<br />
<br />
	&lt;div class="float_left"&gt;<br />
		&lt;dl class="thread_legend smalltext"&gt;<br />
			&lt;dd&gt;&lt;img src="{&#36;theme['imgdir']}/folder.gif" alt="{&#36;lang-&gt;no_new_thread}" title="{&#36;lang-&gt;no_new_thread}" /&gt; {&#36;lang-&gt;no_new_thread}&lt;/dd&gt;<br />
			&lt;dd&gt;&lt;img src="{&#36;theme['imgdir']}/dot_folder.gif" alt="{&#36;lang-&gt;posts_by_you}" title="{&#36;lang-&gt;posts_by_you}" /&gt; {&#36;lang-&gt;posts_by_you}&lt;/dd&gt;<br />
			&lt;dd&gt;&lt;img src="{&#36;theme['imgdir']}/lockfolder.gif" alt="{&#36;lang-&gt;locked_thread}" title="{&#36;lang-&gt;locked_thread}" /&gt; {&#36;lang-&gt;locked_thread}&lt;/dd&gt;<br />
		&lt;/dl&gt;<br />
	&lt;/div&gt;<br />
	&lt;br style="clear: both" /&gt;<br />
&lt;/div&gt;<br />
<br />
&lt;div class="float_right" style="text-align: right;"&gt;<br />
	{&#36;searchforum}<br />
	{&#36;inlinemod}<br />
&lt;/div&gt;<br />
&lt;br style="clear: both" /&gt;<br />
{&#36;inline_edit_js}</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> prof_forumdisplay_threadlist_rating<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>| &lt;a href="{&#36;sorturl}&amp;amp;sortby=rating&amp;amp;order=desc"&gt;{&#36;lang-&gt;rating}&lt;/a&gt; {&#36;orderarrow['rating']}<br />
&lt;script type="text/javascript" src="jscripts/rating.js?ver=1400"&gt;&lt;/script&gt;<br />
&lt;script type="text/javascript"&gt;<br />
&lt;!--<br />
	lang.stars = new Array();<br />
	lang.stars[1] = "{&#36;lang-&gt;one_star}";<br />
	lang.stars[2] = "{&#36;lang-&gt;two_stars}";<br />
	lang.stars[3] = "{&#36;lang-&gt;three_stars}";<br />
	lang.stars[4] = "{&#36;lang-&gt;four_stars}";<br />
	lang.stars[5] = "{&#36;lang-&gt;five_stars}";<br />
// <img src="https://gidenler.me/images/smilies/sag_ok.png" alt="Sağ ok" title="Sağ ok" class="smilie smilie_54" /><br />
&lt;/script&gt;</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> prof_forumdisplay_thread_null<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;td width="50%" valign="top"&gt;<br />
	&lt;table border="0" cellspacing="{&#36;GLOBALS['theme']['borderwidth']}" cellpadding="{&#36;GLOBALS['theme']['tablespace']}" class="tborder" style="clear: both;"&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="thead" align="center" colspan="{&#36;GLOBALS['colspan']}"&gt;<br />
				&lt;div&gt;&lt;strong&gt;Add Your Sims!&lt;/strong&gt;&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1" style="text-align: justify;"&gt;<br />
				Show us your Sims! You can edit your Sim's stats and pictures whenever you want!<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="tfoot" align="center"&gt;<br />
				&lt;strong&gt;Total Sims Added: {&#36;GLOBALS['threadcount']} Sims&lt;/strong&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/table&gt;<br />
&lt;/td&gt;</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> prof_forumdisplay_thread_rating<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;tr&gt;<br />
	&lt;td&gt;Sim's Rating&lt;/td&gt;<br />
	&lt;td&gt;:&lt;/td&gt;<br />
	&lt;td&gt;<br />
		&lt;div class="float_left" id="rating_table_{&#36;thread['tid']}"&gt;<br />
			&lt;ul class="star_rating{&#36;not_rated}" id="rating_thread_{&#36;thread['tid']}"&gt;<br />
				&lt;li style="width: {&#36;thread['width']}%" class="current_rating" id="current_rating_{&#36;thread['tid']}"&gt;{&#36;ratingvotesav}&lt;/li&gt;<br />
			&lt;/ul&gt;<br />
			&lt;script type="text/javascript"&gt;<br />
			&lt;!--<br />
				Rating.build_forumdisplay({&#36;thread['tid']}, { width: '{&#36;thread['width']}', extra_class: '{&#36;not_rated}', current_average: '{&#36;ratingvotesav}' });<br />
			// <img src="https://gidenler.me/images/smilies/sag_ok.png" alt="Sağ ok" title="Sağ ok" class="smilie smilie_54" /><br />
			&lt;/script&gt;<br />
		&lt;/div&gt;<br />
	&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
	&lt;td&gt;Sim's Rated&lt;/td&gt;<br />
	&lt;td&gt;:&lt;/td&gt;<br />
	&lt;td&gt;<br />
		{&#36;thread['numratings']}<br />
	&lt;/td&gt;<br />
&lt;/tr&gt;</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> prof_postbit<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;div class="float_left" style="width: 49%; margin: 0px 3px 0px 4px;"&gt;<br />
{&#36;ignore_bit}<br />
&lt;a name="pid{&#36;post['pid']}" id="pid{&#36;post['pid']}"&gt;&lt;/a&gt;<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="{&#36;post_extra_style} {&#36;post_visibility}" id="post_{&#36;post['pid']}"&gt;<br />
	&lt;tbody&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="tcat"&gt;<br />
				&lt;div class="float_left smalltext"&gt;<br />
					 {&#36;post['onlinestatus']}&lt;strong&gt;{&#36;post['profilelink']}&lt;/strong&gt; {&#36;post['postdate']}, {&#36;post['posttime']} &lt;span id="edited_by_{&#36;post['pid']}"&gt;{&#36;post['editedmsg']}&lt;/span&gt;<br />
				&lt;/div&gt;<br />
				{&#36;post['posturl']}<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow2 post_content {&#36;unapproved_shade}"&gt;<br />
				&lt;table cellspacing="0" cellpadding="0" border="0" style="width: 100%;"&gt;<br />
					&lt;tr&gt;<br />
						&lt;td&gt;<br />
							&lt;div class="post_body" id="pid_{&#36;post['pid']}"&gt;<br />
								{&#36;post['message']}<br />
							&lt;/div&gt;<br />
							&lt;div class="post_meta" id="post_meta_{&#36;post['pid']}"&gt;<br />
								{&#36;post['iplogged']}<br />
							&lt;/div&gt;<br />
						&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
				&lt;/table&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1 post_buttons {&#36;unapproved_shade}"&gt;<br />
				&lt;div class="post_management_buttons float_right"&gt;{&#36;post['button_edit']}{&#36;post['button_quickdelete']}{&#36;post['button_quote']}{&#36;post['button_multiquote']}{&#36;post['button_report']}{&#36;post['button_warn']}{&#36;post['button_reply_pm']}{&#36;post['button_replyall_pm']}{&#36;post['button_forward_pm']}{&#36;post['button_delete_pm']}<br />
				&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/tbody&gt;<br />
&lt;/table&gt;<br />
&lt;/div&gt;</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> prof_postbit_first<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>{&#36;ignore_bit}<br />
&lt;a name="pid{&#36;post['pid']}" id="pid{&#36;post['pid']}"&gt;&lt;/a&gt;<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="{&#36;post_extra_style} {&#36;post_visibility}" id="post_{&#36;post['pid']}"&gt;<br />
	&lt;tbody&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1 {&#36;unapproved_shade}"&gt;<br />
				&lt;table cellspacing="0" cellpadding="0" border="0" style="width: 100%;"&gt;<br />
					&lt;tr&gt;<br />
						&lt;td class="post_avatar" width="1" style="{&#36;post['avatar_padding']}"&gt;<br />
							{&#36;post['useravatar']}<br />
						&lt;/td&gt;<br />
						&lt;td class="post_author"&gt;<br />
							&lt;strong&gt;&lt;span class="largetext"&gt;{&#36;post['profilelink']}&lt;/span&gt;&lt;/strong&gt; {&#36;post['onlinestatus']}&lt;br /&gt;<br />
							&lt;span class="smalltext"&gt;<br />
								{&#36;post['usertitle']}&lt;br /&gt;<br />
								{&#36;post['userstars']}<br />
								{&#36;post['groupimage']}<br />
							&lt;/span&gt;<br />
						&lt;/td&gt;<br />
						&lt;td class="smalltext post_author_info" width="165"&gt;<br />
							{&#36;post['user_details']}<br />
						&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
				&lt;/table&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1 {&#36;unapproved_shade}"&gt;<br />
				&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="clear: both;"&gt;<br />
					&lt;tr&gt;<br />
						&lt;td width="50%" valign="top"&gt;<br />
							&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" width="100%" class="trow1"&gt;<br />
								&lt;tr&gt;<br />
									&lt;td class="thead" colspan="2" align="center"&gt;<br />
										&lt;strong&gt;{&#36;GLOBALS['threadfields']['profname']}'s Profile&lt;/strong&gt;<br />
									&lt;/td&gt;<br />
								&lt;/tr&gt;<br />
								&lt;tr&gt;<br />
									&lt;td width="1"&gt;<br />
										{&#36;GLOBALS['threadfields']['profpic']['value']}<br />
									&lt;/td&gt;<br />
									&lt;td&gt;<br />
										&lt;table border="0" width="100%" class="trow1"&gt;<br />
											&lt;tr&gt;<br />
												&lt;td&gt;Sim's Name&lt;/td&gt;&lt;td width="1"&gt;:&lt;/td&gt;&lt;td&gt;{&#36;GLOBALS['threadfields']['profname']}&lt;/td&gt;<br />
											&lt;/tr&gt;<br />
											&lt;tr&gt;<br />
												&lt;td&gt;Sim's Gender&lt;/td&gt;&lt;td width="1"&gt;:&lt;/td&gt;&lt;td&gt;{&#36;GLOBALS['threadfields']['profgender']}&lt;/td&gt;<br />
											&lt;/tr&gt;<br />
											&lt;tr&gt;<br />
												&lt;td&gt;Sim's Status&lt;/td&gt;&lt;td width="1"&gt;:&lt;/td&gt;&lt;td&gt;{&#36;GLOBALS['threadfields']['profstatus']}&lt;/td&gt;<br />
											&lt;/tr&gt;<br />
											&lt;tr&gt;<br />
												&lt;td&gt;Sim's Career&lt;/td&gt;&lt;td width="1"&gt;:&lt;/td&gt;&lt;td&gt;{&#36;GLOBALS['threadfields']['profcareer']}&lt;/td&gt;<br />
											&lt;/tr&gt;<br />
											&lt;tr&gt;<br />
												&lt;td&gt;Sim's Friends&lt;/td&gt;&lt;td width="1"&gt;:&lt;/td&gt;&lt;td&gt;{&#36;GLOBALS['threadfields']['profffriends']}&lt;/td&gt;<br />
											&lt;/tr&gt;<br />
											&lt;tr&gt;<br />
												&lt;td&gt;Sim's Age&lt;/td&gt;&lt;td width="1"&gt;:&lt;/td&gt;&lt;td&gt;{&#36;GLOBALS['threadfields']['profage']}&lt;/td&gt;<br />
											&lt;/tr&gt;<br />
										&lt;/table&gt;<br />
									&lt;/td&gt;<br />
								&lt;/tr&gt;<br />
							&lt;/table&gt;<br />
						&lt;/td&gt;<br />
						&lt;td&gt;&amp;nbsp;&lt;/td&gt;<br />
						&lt;td width="50%" valign="top"&gt;<br />
							&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" width="100%" class="trow1"&gt;<br />
								&lt;tr&gt;<br />
									&lt;td class="thead" align="center"&gt;<br />
										&lt;strong&gt;{&#36;GLOBALS['threadfields']['profname']}'s Skills&lt;/strong&gt;<br />
									&lt;/td&gt;<br />
								&lt;/tr&gt;<br />
								&lt;tr&gt;<br />
									&lt;td&gt;<br />
										&lt;table border="0" width="100%" class="trow1"&gt;<br />
											{&#36;GLOBALS['threadfields']['profcooking']}<br />
											{&#36;GLOBALS['threadfields']['profmechanical']}<br />
											{&#36;GLOBALS['threadfields']['profcharisma']}<br />
											{&#36;GLOBALS['threadfields']['profcreativity']}<br />
											{&#36;GLOBALS['threadfields']['profbody']}<br />
											{&#36;GLOBALS['threadfields']['proflogic']}<br />
										&lt;/table&gt;<br />
									&lt;/td&gt;<br />
								&lt;/tr&gt;<br />
							&lt;/table&gt;<br />
						&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
					&lt;tr&gt;<br />
						&lt;td colspan="3"&gt;<br />
							&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" width="100%" class="trow1"&gt;<br />
								&lt;tr&gt;<br />
									&lt;td class="thead" colspan="2" align="center" valign="middle"&gt;<br />
										&lt;strong&gt;{&#36;GLOBALS['threadfields']['profname']}'s Pictures&lt;/strong&gt;<br />
									&lt;/td&gt;<br />
								&lt;/tr&gt;<br />
								&lt;tr&gt;<br />
									&lt;td align="center"&gt;<br />
										{&#36;GLOBALS['threadfields']['profpic1']['value']}<br />
										{&#36;GLOBALS['threadfields']['profpic2']['value']}<br />
										{&#36;GLOBALS['threadfields']['profpic3']['value']}<br />
										{&#36;GLOBALS['threadfields']['profpic4']['value']}<br />
										{&#36;GLOBALS['threadfields']['profpic5']['value']}<br />
									&lt;/td&gt;<br />
								&lt;/tr&gt;<br />
							&lt;/table&gt;<br />
						&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
				&lt;/table&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
<br />
		&lt;tr&gt;<br />
			&lt;td class="tcat"&gt;<br />
				&lt;div class="float_left smalltext"&gt;<br />
					{&#36;post['postdate']}, {&#36;post['posttime']} &lt;span id="edited_by_{&#36;post['pid']}"&gt;{&#36;post['editedmsg']}&lt;/span&gt;<br />
				&lt;/div&gt;<br />
				{&#36;post['posturl']}<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
<br />
		&lt;tr&gt;<br />
			&lt;td class="trow2 post_content {&#36;unapproved_shade}"&gt;<br />
				&lt;span class="smalltext"&gt;&lt;strong&gt;{&#36;post['icon']}{&#36;post['subject']} {&#36;post['subject_extra']}&lt;/strong&gt;&lt;/span&gt;<br />
<br />
				&lt;div class="post_body" id="pid_{&#36;post['pid']}"&gt;<br />
					{&#36;post['message']}<br />
				&lt;/div&gt;<br />
				{&#36;post['attachments']}<br />
				{&#36;post['signature']}<br />
<br />
				&lt;div class="post_meta" id="post_meta_{&#36;post['pid']}"&gt;<br />
				{&#36;post['iplogged']}<br />
				&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1 post_buttons {&#36;unapproved_shade}"&gt;<br />
				&lt;div class="author_buttons float_left"&gt;<br />
					{&#36;post['button_email']}{&#36;post['button_pm']}{&#36;post['button_www']}{&#36;post['button_find']}<br />
				&lt;/div&gt;<br />
				&lt;div class="post_management_buttons float_right"&gt;{&#36;post['button_edit']}{&#36;post['button_quickdelete']}{&#36;post['button_quote']}{&#36;post['button_multiquote']}{&#36;post['button_report']}{&#36;post['button_warn']}{&#36;post['button_reply_pm']}{&#36;post['button_replyall_pm']}{&#36;post['button_forward_pm']}{&#36;post['button_delete_pm']}<br />
				&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/tbody&gt;<br />
&lt;/table&gt;</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> prof_showthread<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;{&#36;thread['subject']}&lt;/title&gt;<br />
{&#36;headerinclude}<br />
&lt;script type="text/javascript"&gt;<br />
&lt;!--<br />
	var quickdelete_confirm = "{&#36;lang-&gt;quickdelete_confirm}";<br />
// <img src="https://gidenler.me/images/smilies/sag_ok.png" alt="Sağ ok" title="Sağ ok" class="smilie smilie_54" /><br />
&lt;/script&gt;<br />
&lt;script type="text/javascript" src="jscripts/thread.js?ver=1400"&gt;&lt;/script&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
{&#36;header}<br />
{&#36;pollbox}<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="clear: both; border-bottom-width: 0;"&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="thead" colspan="2"&gt;<br />
			&lt;div style="float: right;"&gt;<br />
				&lt;span class="smalltext"&gt;&lt;strong&gt;&lt;a href="showthread.php?mode=threaded&amp;amp;tid={&#36;tid}&amp;amp;pid={&#36;pid}#pid{&#36;pid}"&gt;{&#36;lang-&gt;threaded}&lt;/a&gt; | &lt;a href="showthread.php?mode=linear&amp;amp;tid={&#36;tid}&amp;amp;pid={&#36;pid}#pid{&#36;pid}"&gt;{&#36;lang-&gt;linear}&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;<br />
			&lt;/div&gt;<br />
			&lt;div&gt;<br />
				&lt;strong&gt;{&#36;thread['subject']}&lt;/strong&gt;<br />
			&lt;/div&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
	{&#36;classic_header}<br />
&lt;/table&gt;<br />
&lt;div&gt;<br />
	{&#36;first_post}<br />
&lt;/div&gt;<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="border-top-width: 0;"&gt;<br />
	&lt;tr&gt;<br />
		&lt;td colspan="2" class="tfoot"&gt;<br />
			{&#36;search_thread}<br />
			&lt;div&gt;<br />
				&lt;strong&gt;&amp;laquo; &lt;a href="{&#36;next_oldest_link}"&gt;{&#36;lang-&gt;next_oldest}&lt;/a&gt; | &lt;a href="{&#36;next_newest_link}"&gt;{&#36;lang-&gt;next_newest}&lt;/a&gt; &amp;raquo;&lt;/strong&gt;<br />
			&lt;/div&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;br class="clear" /&gt;<br />
&lt;div class="float_left"&gt;<br />
	{&#36;multipage}<br />
&lt;/div&gt;<br />
&lt;div class="float_right"&gt;<br />
	{&#36;newreply}<br />
&lt;/div&gt;<br />
{&#36;ratethread}<br />
&lt;br class="clear" /&gt;<br />
&lt;div id="posts"&gt;<br />
	{&#36;posts}<br />
&lt;/div&gt;<br />
&lt;br style="clear: both;" /&gt;<br />
&lt;div class="float_left"&gt;<br />
	{&#36;multipage}<br />
&lt;/div&gt;<br />
&lt;div style="padding-top: 4px;" class="float_right"&gt;<br />
	{&#36;newreply}<br />
&lt;/div&gt;<br />
&lt;br style="clear: both;" /&gt;<br />
{&#36;quickreply}<br />
{&#36;threadexbox}<br />
{&#36;similarthreads}<br />
&lt;br /&gt;<br />
&lt;div class="float_left"&gt;<br />
	&lt;ul class="thread_tools"&gt;<br />
		&lt;li class="printable"&gt;&lt;a href="printthread.php?tid={&#36;tid}"&gt;{&#36;lang-&gt;view_printable}&lt;/a&gt;&lt;/li&gt;<br />
		&lt;li class="sendthread"&gt;&lt;a href="sendthread.php?tid={&#36;tid}"&gt;{&#36;lang-&gt;send_thread}&lt;/a&gt;&lt;/li&gt;<br />
		&lt;li class="subscription_{&#36;add_remove_subscription}"&gt;&lt;a href="usercp2.php?action={&#36;add_remove_subscription}subscription&amp;amp;tid={&#36;tid}&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;{&#36;add_remove_subscription_text}&lt;/a&gt;&lt;/li&gt;<br />
	&lt;/ul&gt;<br />
&lt;/div&gt;<br />
<br />
&lt;div class="float_right" style="text-align: right;"&gt;<br />
	{&#36;moderationoptions}<br />
	{&#36;forumjump}<br />
&lt;/div&gt;<br />
&lt;br style="clear: both;" /&gt;<br />
{&#36;footer}<br />
&lt;/body&gt;<br />
&lt;/html&gt;</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> prof_showthread_noreplies<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;div id="xthreads_noreplies"&gt;<br />
&lt;table border="0" cellspacing="{&#36;GLOBALS['theme']['borderwidth']}" cellpadding="{&#36;GLOBALS['theme']['tablespace']}" class="tborder"&gt;<br />
	&lt;tbody&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="tcat"&gt;<br />
				&lt;div class="float_left smalltext"&gt;<br />
					 &lt;strong&gt;Leave Your Comments For This Sim&lt;/strong&gt;<br />
				&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1"&gt;<br />
				&lt;div class="post_body"&gt;<br />
					You can leave your comments for this Sims.<br />
				&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/tbody&gt;<br />
&lt;/table&gt;<br />
&lt;/div&gt;</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> prof_showthread_ratethread<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;div style="margin-top: 6px; padding-right: 10px;" class="float_right"&gt;<br />
		&lt;script type="text/javascript" src="jscripts/rating.js?ver=1400"&gt;&lt;/script&gt;<br />
		&lt;div id="success_rating_{&#36;thread['tid']}" style="float: left; padding-top: 2px; padding-right: 10px;"&gt;&amp;nbsp;&lt;/div&gt;<br />
		&lt;strong style="float: left; padding-right: 10px;"&gt;Sim's Rating&lt;/strong&gt;<br />
		&lt;div class="inline_rating"&gt;<br />
			&lt;ul class="star_rating{&#36;not_rated}" id="rating_thread_{&#36;thread['tid']}"&gt;<br />
				&lt;li style="width: {&#36;thread['width']}%" class="current_rating" id="current_rating_{&#36;thread['tid']}"&gt;{&#36;ratingvotesav}&lt;/li&gt;<br />
				&lt;li&gt;&lt;a class="one_star" title="{&#36;lang-&gt;one_star}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=1&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;1&lt;/a&gt;&lt;/li&gt;<br />
				&lt;li&gt;&lt;a class="two_stars" title="{&#36;lang-&gt;two_stars}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=2&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;2&lt;/a&gt;&lt;/li&gt;<br />
				&lt;li&gt;&lt;a class="three_stars" title="{&#36;lang-&gt;three_stars}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=3&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;3&lt;/a&gt;&lt;/li&gt;<br />
				&lt;li&gt;&lt;a class="four_stars" title="{&#36;lang-&gt;four_stars}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=4&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;4&lt;/a&gt;&lt;/li&gt;<br />
				&lt;li&gt;&lt;a class="five_stars" title="{&#36;lang-&gt;five_stars}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=5&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;5&lt;/a&gt;&lt;/li&gt;<br />
			&lt;/ul&gt;<br />
		&lt;/div&gt;<br />
&lt;/div&gt;</code></div></div>
</li>
</ul>
<br />
Please let me know if I missed somethings <img src="https://gidenler.me/images/v2/smile/o3.gif" alt="Smile" title="Smile" class="smilie smilie_1" /><br />
<br />
Screenshots:<br />
<br />
1. User create a product review thread:<br />
<br />
<img src="http://i46.tinypic.com/drf8qw.jpg" loading="lazy"  alt="[Resim: drf8qw.jpg]" class="mycode_img" /><br />
<br />
2. User view the post:<br />
<br />
<img src="http://i45.tinypic.com/25qu2zc.jpg" loading="lazy"  alt="[Resim: 25qu2zc.jpg]" class="mycode_img" /><br />
<br />
3. Thread List:<br />
<br />
<img src="http://i45.tinypic.com/xyofr.jpg" loading="lazy"  alt="[Resim: xyofr.jpg]" class="mycode_img" /><br />
<br />
I have created a live demo for this:<br />
<a href="http://www.14.mynie.co.cc/forumdisplay.php?fid=6" target="_blank" rel="noopener" class="mycode_url">http://www.14.mynie.co.cc/forumdisplay.php?fid=6</a>]]></description>
			<content:encoded><![CDATA[Requirement: <span style="font-weight: bold;" class="mycode_b"><a href="http://mybbhacks.zingaburga.com/showthread.php?tid=288" target="_blank" rel="noopener" class="mycode_url">XThreads</a></span><br />
<br />
With XThreads, we can create profile forum. The basic idea is, our member can create a profile thread, which is contains their character in a game. They can upload their screenshots from the game, and fill various info about their character. And they can edit it whenever they want.<br />
<br />
Unfortunately, it is hard to give an example for each game, so, we will take The Sims game in this example. If we want to apply it for another game, we need to modify the info / XThreads thread fields to make it suitable with that game.<br />
<br />
Possibility for another usage: we can use it as another profile page for our member. With XThreads <span style="font-style: italic;" class="mycode_i">Viewable by Usergroups</span> settings, we can create "private" info for the profile thread. And, because XThreads has an ability to choose in which forum id(s) a XThreads thread field can be used, it will make us easier to choose which usegroup can create a profile thread. We can combine it with forum permission.<br />
<br />
We can use the forum permission for this example too: if we have a RPG forum which has more than one usergroup as clan, we can set the forum permission for each usergroup / clan. And then, we can set the forum related to a clan with custom XThreads thread field. So, each usergroup / clan will has different info / stats. Plus, if we want to create some "private" info / stats (viewable by that clan member only), we can use XThreads <span style="font-style: italic;" class="mycode_i">Viewable by Usergroups</span> feature. Great, huh? A lot of "magic" can be done by XThreads!<br />
<br />
Here is a simple example to create a Profile Forum (based on The Sims Game):<br />
<br />
1. Textbox for Sim's Name:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Your Sim's Name<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> profname<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select a forum that we will apply the profile forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Textbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['profname']}</span>.<br />
</li>
</ul>
<br />
2. Listbox for Sim's Gender:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Your Sim's Gender<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> profgender<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select the profile forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Listbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Height:</span> 1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Values List:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>Male<br />
Female</code></div></div>Do we need to modify it? <img src="https://gidenler.me/images/v2/smile/=D.gif" alt="Big Grin" title="Big Grin" class="smilie smilie_4" /><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 2<br />
Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['profgender']}</span>.<br />
</li>
</ul>
<br />
3. Listbox for Sim's Status:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Your Sim's Status<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> profstatus<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select the profile forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Listbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Height:</span> 1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Values List:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>Single<br />
Married</code></div></div>Modify it as our need.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 3<br />
Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['profstatus']}</span>.<br />
</li>
</ul>
<br />
4. Listbox for Sim's Main Career:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Your Sim's Main Career<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> profcareer<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select the profile forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Listbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Height:</span> 1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Values List:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>None<br />
Business<br />
Entertainment<br />
Law Enforcement</code></div></div>Modify it as our need.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 4<br />
Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['profcareer']}</span>.<br />
</li>
</ul>
<br />
5. Textbox for Family Friends:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Family Friends<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> profffriends<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Description:</span> The number of your family friends. e.g: 99. Leave it blank if you didn't have any friends yet.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select the profile forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Textbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 5<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Blank Replacement Value:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;em&gt;None&lt;/em&gt;</code></div></div>
</li>
<li><span style="font-weight: bold;" class="mycode_b">Text Mask Filter:</span> <div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>^[0-9]{1,3}&#36;</code></div></div>I'm not quite sure how much the maximum number of family friends for a Sim.<br />
Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['profffriends']}</span>.<br />
</li>
</ul>
<br />
6. Textbox for Sim's Age:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Your Sim's Age<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> profage<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Description:</span> Your Sim's age in year. e.g: 9. Leave it blank if it is less than 1 year.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select the profile forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Textbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 6<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Blank Replacement Value:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;em&gt;Less than one year old&lt;/em&gt;</code></div></div>
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>{VALUE} Years Old</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Text Mask Filter:</span> <div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>^[0-9]{1,2}&#36;</code></div></div>I hope it is enough.<br />
Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['profage']}</span>.<br />
</li>
</ul>
<br />
7. File Input for Sim's Picture:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Your Sim's Picture<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> profpic<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Description:</span> Upload your Sim's picture - Required<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select the profile forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> File<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Valid File Extensions:</span> gif|png|jpg|jpeg<br />
Modify it as our needs. It is the extensions of image that can be uploaded.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Maximum File Size:</span> 1048576<br />
Modify it as our needs. It is a maximum file size (in bytes) that can be uploaded. In this example, 1 Mb.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone (required)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 7<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Only accept uploaded images:</span> Yes<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Image Thumbnail Generation:</span> 160x120<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;img src="{URL}/thumb160x120" alt="" title="" style="margin: 3px;" /&gt;</code></div></div>
Variable for displaying this value in our template: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['profpic']['value']}</span><br />
</li>
</ul>
<br />
8. Listbox for Sim's Skill:<br />
Repeat this step as our needs. Just remember to use a different <span style="font-style: italic;" class="mycode_i">Title</span> and <span style="font-style: italic;" class="mycode_i">Key</span>. And modify the <span style="font-style: italic;" class="mycode_i">Blank Replacement Value</span> and the <span style="font-style: italic;" class="mycode_i">Display Format</span> too, especially for the word <span style="font-style: italic;" class="mycode_i">Cooking Level</span>.<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Cooking Skill<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> profcooking<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select the profile forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Listbox<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Field Input Height:</span> 1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Values List:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>1<br />
2<br />
3<br />
4<br />
5<br />
6<br />
7<br />
8<br />
9<br />
10</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 8<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Blank Replacement Value:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;tr&gt;&lt;td width="150"&gt;Cooking Level&lt;/td&gt;<br />
&lt;td width="1"&gt;:&lt;/td&gt;<br />
&lt;td&gt;<br />
&lt;div class="tcat" style="width: 250px;" align="center"&gt;<br />
&lt;strong&gt;Level 0&lt;/strong&gt;<br />
&lt;/div&gt;<br />
&lt;/td&gt;<br />
&lt;/tr&gt;</code></div></div>
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format:</span><div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;tr&gt;&lt;td width="150"&gt;Cooking Level&lt;/td&gt;<br />
&lt;td width="1"&gt;:&lt;/td&gt;<br />
&lt;td&gt;<br />
&lt;div class="tcat" style="width: 250px;"&gt;<br />
&lt;div class="thead" style="width: {VALUE}0%; white-space: nowrap;"&gt;<br />
&lt;span style="margin-left: 9px;"&gt;&lt;strong&gt;Level {VALUE}&lt;/strong&gt;&lt;/span&gt;<br />
&lt;/div&gt;<br />
&lt;/div&gt;<br />
&lt;/td&gt;&lt;/tr&gt;</code></div></div>
Variable in template for displaying this field is: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['profcooking']}</span>.<br />
Use different variable if we repeat this step. Modify the <span style="font-style: italic;" class="mycode_i">profcooking</span> word to match with the key.<br />
Example:<br />
Key: profbody<br />
Variable: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['profbody']}</span><br />
</li>
</ul>
<br />
Optional step: We can create another File input for Additional Sim's Pictures. Just use another <span style="font-style: italic;" class="mycode_i">Key</span> for that. Example:<br />
<br />
Opt 1. File input for Additional Sim's Pictures.<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Your Add Sim's Picture<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> profpic1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Description:</span> Upload an additional picture - Not required<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select the profile forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> File<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Valid File Extensions:</span> gif|png|jpg|jpeg<br />
Modify it as our needs. It is the extensions of image that can be uploaded.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Maximum File Size:</span> 1048576<br />
Modify it as our needs. It is a maximum file size (in bytes) that can be uploaded. In this example, 1 Mb.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 9<br />
Modify it as our need.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Only accept uploaded images:</span> Yes<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Image Thumbnail Generation:</span> 160x120<br />
Modify it as our needs. It is thumbnail sizes that we can use for this image.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Blank Replacement Value:</span> <span style="font-family: Courier;" class="mycode_font">&amp;nbsp;</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Format:</span> <div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;a href="{URL}"&gt;&lt;img src="{URL}/thumb160x120" alt="" title="{&#36;GLOBALS['threadfields']['profdesc1']}" style="border: 1px solid #C1C1C1; padding: 3px; margin: 3px;" /&gt;&lt;/a&gt;</code></div></div>
Variable for displaying this value in our template: <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['profpic1']['value']}</span><br />
If we didn't use the <span style="font-style: italic;" class="mycode_i">Opt 2</span> step, remove <span style="font-family: Courier;" class="mycode_font">{&#36;GLOBALS['threadfields']['profdesc1']}</span> variable from the <span style="font-style: italic;" class="mycode_i">title</span> attribute.<br />
</li>
</ul>
<br />
Opt 2. Textbox for Additional Picture Description:<br />
Create a Custom Thread Fields with this settings:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Title:</span> Additional Picture Description 1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Key:</span> profdesc1<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Description:</span> Description for the additional picture - Not Required<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Applicable Forums:</span> <span style="font-style: italic;" class="mycode_i">'select the profile forum'</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Input Field Type:</span> Textbox<br />
I think 255 chars is enough.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Editable by / Required Field?:</span> Everyone<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Display Order:</span> 10<br />
Modify it as our needs.<br />
</li>
</ul>
<br />
Repeat two steps above depend on max images that user can upload. And use different <span style="font-style: italic;" class="mycode_i">Key</span>.<br />
<br />
9. Now, XThreads Options in Forum settings (the Profile Forum):<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Prefix:</span> <span style="font-style: italic;" class="mycode_i">prof_</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Thread Grouping:</span> 2<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Show first post on every showthread page:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Enable XThreads' Inline Forum Search:</span> <span style="font-style: italic;" class="mycode_i">Yes</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Force Postbit Layout:</span> Force horizontal postbit layout<br />
</li>
</ul>
<br />
Optional setting: Set forum permission for which usergroup can create thread in this forum.<br />
<br />
10. Create new templates in Global Template:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> prof_forumdisplay_group_sep<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;/tr&gt;<br />
&lt;tr&gt;</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> prof_forumdisplay_nothreads<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;td&gt;<br />
	&lt;table border="0" cellspacing="{&#36;GLOBALS['theme']['borderwidth']}" cellpadding="{&#36;GLOBALS['theme']['tablespace']}" class="tborder" style="clear: both;"&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="thead" align="center" colspan="{&#36;GLOBALS['colspan']}"&gt;<br />
				&lt;div&gt;&lt;strong&gt;Add Your Sims!&lt;/strong&gt;&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1" align="center"&gt;<br />
				Show us your Sims! You can edit your Sim's stats and pictures whenever you want!<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/table&gt;<br />
&lt;/td&gt;</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> prof_forumdisplay_thread<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;td width="50%" valign="top"&gt;<br />
	&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="clear: both;"&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="thead" align="center" colspan="{&#36;colspan}"&gt;<br />
				&lt;div&gt;&lt;strong&gt;&lt;a href="{&#36;thread['threadlink']}" class="{&#36;inline_edit_class} {&#36;new_class}" id="tid_{&#36;inline_edit_tid}"&gt;{&#36;thread['subject']}&lt;/a&gt;&lt;/strong&gt;&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="{&#36;bgcolor}" width="1"&gt;<br />
				&lt;div align="center"&gt;<br />
					{&#36;GLOBALS['threadfields']['profpic']['value']}<br />
				&lt;/div&gt;<br />
			&lt;/td&gt;<br />
			&lt;td class="{&#36;bgcolor}" width="100%"&gt;<br />
				&lt;table border="0" width="100%"&gt;<br />
					&lt;tr&gt;<br />
						&lt;td&gt;Sim's Owner&lt;/td&gt;&lt;td width="1"&gt;:&lt;/td&gt;&lt;td&gt;{&#36;thread['profilelink']}&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
					&lt;tr&gt;<br />
						&lt;td&gt;Sim's Name&lt;/td&gt;&lt;td width="1"&gt;:&lt;/td&gt;<br />
						&lt;td&gt;&lt;a href="{&#36;thread['threadlink']}"&gt;{&#36;GLOBALS['threadfields']['profname']}&lt;/a&gt;&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
					{&#36;rating}<br />
					&lt;tr&gt;<br />
						&lt;td&gt;Sim's Viewed&lt;/td&gt;&lt;td width="1"&gt;:&lt;/td&gt;&lt;td&gt;{&#36;thread['views']}&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
					&lt;tr&gt;<br />
						&lt;td valign="top"&gt;Commented&lt;/td&gt;<br />
						&lt;td width="1" valign="top"&gt;:&lt;/td&gt;<br />
						&lt;td valign="top"&gt;<br />
							&lt;a href="javascript:MyBB.whoPosted({&#36;thread['tid']});"&gt;{&#36;thread['replies']}&lt;/a&gt;{&#36;unapproved_posts}<br />
						&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
				&lt;/table&gt;<br />
			&lt;/td&gt;<br />
			{&#36;modbit}<br />
		&lt;/tr&gt;<br />
	&lt;/table&gt;<br />
&lt;/td&gt;</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> prof_forumdisplay_threadlist<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;div class="float_left"&gt;<br />
	{&#36;multipage}<br />
&lt;/div&gt;<br />
&lt;div class="float_right"&gt;<br />
	{&#36;newthread}<br />
&lt;/div&gt;<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="clear: both;"&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="thead" colspan="{&#36;colspan}"&gt;<br />
			&lt;div align="center"&gt;<br />
				&lt;strong&gt;{&#36;foruminfo['name']}&lt;/strong&gt;<br />
			&lt;/div&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="tcat smalltext" width="100%" colspan="2"&gt;<br />
			&lt;span class="float_left"&gt;<br />
				&lt;strong&gt;Sort By: &lt;a href="{&#36;sorturl}&amp;amp;sortby=subject&amp;amp;order=asc"&gt;{&#36;lang-&gt;thread}&lt;/a&gt; {&#36;orderarrow['subject']} | &lt;a href="{&#36;sorturl}&amp;amp;sortby=starter&amp;amp;order=asc"&gt;{&#36;lang-&gt;author}&lt;/a&gt; {&#36;orderarrow['starter']} | &lt;a href="{&#36;sorturl}&amp;amp;sortby=replies&amp;amp;order=desc"&gt;{&#36;lang-&gt;replies}&lt;/a&gt; {&#36;orderarrow['replies']} | &lt;a href="{&#36;sorturl}&amp;amp;sortby=views&amp;amp;order=desc"&gt;{&#36;lang-&gt;views}&lt;/a&gt; {&#36;orderarrow['views']} {&#36;ratingcol} | &lt;a href="{&#36;sorturl}&amp;amp;sortby=lastpost&amp;amp;order=desc"&gt;{&#36;lang-&gt;lastpost}&lt;/a&gt; {&#36;orderarrow['lastpost']}&lt;/strong&gt;<br />
			&lt;/span&gt;<br />
			&lt;span class="float_right"&gt;<br />
				&lt;strong&gt;&lt;a href="misc.php?action=markread&amp;amp;fid={&#36;fid}"&gt;{&#36;lang-&gt;markforum_read}&lt;/a&gt; | &lt;a href="usercp2.php?action={&#36;add_remove_subscription}subscription&amp;amp;type=forum&amp;amp;fid={&#36;fid}&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;{&#36;add_remove_subscription_text}&lt;/a&gt;{&#36;clearstoredpass}&lt;/strong&gt;<br />
			&lt;/span&gt;<br />
		&lt;/td&gt;<br />
		{&#36;inlinemodcol}<br />
	&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;br class="clear" /&gt;<br />
&lt;table border="0" width="100%" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}"&gt;<br />
	&lt;tr&gt;<br />
		{&#36;threads}{&#36;nullthreads}<br />
	&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;br class="clear" /&gt;<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="clear: both;"&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="tcat" colspan="{&#36;colspan}"&gt;<br />
			&lt;span class="float_left"&gt;<br />
				&lt;form action="forumdisplay.php" method="get"&gt;<br />
					&lt;input type="hidden" name="fid" value="{&#36;fid}" /&gt;<br />
					&lt;select name="sortby"&gt;<br />
						&lt;option value="subject" {&#36;sortsel['subject']}&gt;{&#36;lang-&gt;sort_by_subject}&lt;/option&gt;<br />
						&lt;option value="lastpost" {&#36;sortsel['lastpost']}&gt;{&#36;lang-&gt;sort_by_lastpost}&lt;/option&gt;<br />
						&lt;option value="starter" {&#36;sortsel['starter']}&gt;{&#36;lang-&gt;sort_by_starter}&lt;/option&gt;<br />
						&lt;option value="started" {&#36;sortsel['started']}&gt;{&#36;lang-&gt;sort_by_started}&lt;/option&gt;<br />
						{&#36;ratingsort}<br />
						&lt;option value="replies" {&#36;sortsel['replies']}&gt;{&#36;lang-&gt;sort_by_replies}&lt;/option&gt;<br />
						&lt;option value="views" {&#36;sortsel['views']}&gt;{&#36;lang-&gt;sort_by_views}&lt;/option&gt;<br />
					&lt;/select&gt;<br />
					&lt;select name="order"&gt;<br />
						&lt;option value="asc" {&#36;ordersel['asc']}&gt;{&#36;lang-&gt;sort_order_asc}&lt;/option&gt;<br />
						&lt;option value="desc" {&#36;ordersel['desc']}&gt;{&#36;lang-&gt;sort_order_desc}&lt;/option&gt;<br />
					&lt;/select&gt;<br />
					&lt;select name="datecut"&gt;<br />
						&lt;option value="1" {&#36;datecutsel['1']}&gt;{&#36;lang-&gt;datelimit_1day}&lt;/option&gt;<br />
						&lt;option value="5" {&#36;datecutsel['5']}&gt;{&#36;lang-&gt;datelimit_5days}&lt;/option&gt;<br />
						&lt;option value="10" {&#36;datecutsel['10']}&gt;{&#36;lang-&gt;datelimit_10days}&lt;/option&gt;<br />
						&lt;option value="20" {&#36;datecutsel['20']}&gt;{&#36;lang-&gt;datelimit_20days}&lt;/option&gt;<br />
						&lt;option value="50" {&#36;datecutsel['50']}&gt;{&#36;lang-&gt;datelimit_50days}&lt;/option&gt;<br />
						&lt;option value="75" {&#36;datecutsel['75']}&gt;{&#36;lang-&gt;datelimit_75days}&lt;/option&gt;<br />
						&lt;option value="100" {&#36;datecutsel['100']}&gt;{&#36;lang-&gt;datelimit_100days}&lt;/option&gt;<br />
						&lt;option value="365" {&#36;datecutsel['365']}&gt;{&#36;lang-&gt;datelimit_lastyear}&lt;/option&gt;<br />
						&lt;option value="9999" {&#36;datecutsel['9999']}&gt;{&#36;lang-&gt;datelimit_beginning}&lt;/option&gt;<br />
					&lt;/select&gt;<br />
					{&#36;gobutton}<br />
				&lt;/form&gt;<br />
			&lt;/span&gt;<br />
			&lt;span class="float_right"&gt;<br />
				{&#36;forumjump}<br />
			&lt;/span&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="tfoot" align="center" colspan="{&#36;colspan}"&gt;<br />
			&lt;strong&gt;&lt;a href="http://mybbhacks.zingaburga.com"&gt;XThreads&lt;/a&gt; - &lt;a href="http://mybbhacks.zingaburga.com"&gt;MyBB Hacks&lt;/a&gt;&lt;/strong&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;div class="float_left"&gt;<br />
	{&#36;multipage}<br />
&lt;/div&gt;<br />
&lt;div class="float_right" style="margin-top: 4px;"&gt;<br />
	{&#36;newthread}<br />
&lt;/div&gt;<br />
&lt;br style="clear: both;" /&gt;<br />
&lt;br /&gt;<br />
&lt;div class="float_left"&gt;<br />
	&lt;div class="float_left"&gt;<br />
		&lt;dl class="thread_legend smalltext"&gt;<br />
			&lt;dd&gt;&lt;img src="{&#36;theme['imgdir']}/newfolder.gif" alt="{&#36;lang-&gt;new_thread}" title="{&#36;lang-&gt;new_thread}" /&gt; {&#36;lang-&gt;new_thread}&lt;/dd&gt;<br />
			&lt;dd&gt;&lt;img src="{&#36;theme['imgdir']}/newhotfolder.gif" alt="{&#36;lang-&gt;new_hot_thread}" title="{&#36;lang-&gt;new_hot_thread}" /&gt; {&#36;lang-&gt;new_hot_thread}&lt;/dd&gt;<br />
			&lt;dd&gt;&lt;img src="{&#36;theme['imgdir']}/hotfolder.gif" alt="{&#36;lang-&gt;hot_thread}" title="{&#36;lang-&gt;hot_thread}" /&gt; {&#36;lang-&gt;hot_thread}&lt;/dd&gt;<br />
		&lt;/dl&gt;<br />
	&lt;/div&gt;<br />
<br />
	&lt;div class="float_left"&gt;<br />
		&lt;dl class="thread_legend smalltext"&gt;<br />
			&lt;dd&gt;&lt;img src="{&#36;theme['imgdir']}/folder.gif" alt="{&#36;lang-&gt;no_new_thread}" title="{&#36;lang-&gt;no_new_thread}" /&gt; {&#36;lang-&gt;no_new_thread}&lt;/dd&gt;<br />
			&lt;dd&gt;&lt;img src="{&#36;theme['imgdir']}/dot_folder.gif" alt="{&#36;lang-&gt;posts_by_you}" title="{&#36;lang-&gt;posts_by_you}" /&gt; {&#36;lang-&gt;posts_by_you}&lt;/dd&gt;<br />
			&lt;dd&gt;&lt;img src="{&#36;theme['imgdir']}/lockfolder.gif" alt="{&#36;lang-&gt;locked_thread}" title="{&#36;lang-&gt;locked_thread}" /&gt; {&#36;lang-&gt;locked_thread}&lt;/dd&gt;<br />
		&lt;/dl&gt;<br />
	&lt;/div&gt;<br />
	&lt;br style="clear: both" /&gt;<br />
&lt;/div&gt;<br />
<br />
&lt;div class="float_right" style="text-align: right;"&gt;<br />
	{&#36;searchforum}<br />
	{&#36;inlinemod}<br />
&lt;/div&gt;<br />
&lt;br style="clear: both" /&gt;<br />
{&#36;inline_edit_js}</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> prof_forumdisplay_threadlist_rating<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>| &lt;a href="{&#36;sorturl}&amp;amp;sortby=rating&amp;amp;order=desc"&gt;{&#36;lang-&gt;rating}&lt;/a&gt; {&#36;orderarrow['rating']}<br />
&lt;script type="text/javascript" src="jscripts/rating.js?ver=1400"&gt;&lt;/script&gt;<br />
&lt;script type="text/javascript"&gt;<br />
&lt;!--<br />
	lang.stars = new Array();<br />
	lang.stars[1] = "{&#36;lang-&gt;one_star}";<br />
	lang.stars[2] = "{&#36;lang-&gt;two_stars}";<br />
	lang.stars[3] = "{&#36;lang-&gt;three_stars}";<br />
	lang.stars[4] = "{&#36;lang-&gt;four_stars}";<br />
	lang.stars[5] = "{&#36;lang-&gt;five_stars}";<br />
// <img src="https://gidenler.me/images/smilies/sag_ok.png" alt="Sağ ok" title="Sağ ok" class="smilie smilie_54" /><br />
&lt;/script&gt;</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> prof_forumdisplay_thread_null<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;td width="50%" valign="top"&gt;<br />
	&lt;table border="0" cellspacing="{&#36;GLOBALS['theme']['borderwidth']}" cellpadding="{&#36;GLOBALS['theme']['tablespace']}" class="tborder" style="clear: both;"&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="thead" align="center" colspan="{&#36;GLOBALS['colspan']}"&gt;<br />
				&lt;div&gt;&lt;strong&gt;Add Your Sims!&lt;/strong&gt;&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1" style="text-align: justify;"&gt;<br />
				Show us your Sims! You can edit your Sim's stats and pictures whenever you want!<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="tfoot" align="center"&gt;<br />
				&lt;strong&gt;Total Sims Added: {&#36;GLOBALS['threadcount']} Sims&lt;/strong&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/table&gt;<br />
&lt;/td&gt;</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> prof_forumdisplay_thread_rating<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;tr&gt;<br />
	&lt;td&gt;Sim's Rating&lt;/td&gt;<br />
	&lt;td&gt;:&lt;/td&gt;<br />
	&lt;td&gt;<br />
		&lt;div class="float_left" id="rating_table_{&#36;thread['tid']}"&gt;<br />
			&lt;ul class="star_rating{&#36;not_rated}" id="rating_thread_{&#36;thread['tid']}"&gt;<br />
				&lt;li style="width: {&#36;thread['width']}%" class="current_rating" id="current_rating_{&#36;thread['tid']}"&gt;{&#36;ratingvotesav}&lt;/li&gt;<br />
			&lt;/ul&gt;<br />
			&lt;script type="text/javascript"&gt;<br />
			&lt;!--<br />
				Rating.build_forumdisplay({&#36;thread['tid']}, { width: '{&#36;thread['width']}', extra_class: '{&#36;not_rated}', current_average: '{&#36;ratingvotesav}' });<br />
			// <img src="https://gidenler.me/images/smilies/sag_ok.png" alt="Sağ ok" title="Sağ ok" class="smilie smilie_54" /><br />
			&lt;/script&gt;<br />
		&lt;/div&gt;<br />
	&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
	&lt;td&gt;Sim's Rated&lt;/td&gt;<br />
	&lt;td&gt;:&lt;/td&gt;<br />
	&lt;td&gt;<br />
		{&#36;thread['numratings']}<br />
	&lt;/td&gt;<br />
&lt;/tr&gt;</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> prof_postbit<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;div class="float_left" style="width: 49%; margin: 0px 3px 0px 4px;"&gt;<br />
{&#36;ignore_bit}<br />
&lt;a name="pid{&#36;post['pid']}" id="pid{&#36;post['pid']}"&gt;&lt;/a&gt;<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="{&#36;post_extra_style} {&#36;post_visibility}" id="post_{&#36;post['pid']}"&gt;<br />
	&lt;tbody&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="tcat"&gt;<br />
				&lt;div class="float_left smalltext"&gt;<br />
					 {&#36;post['onlinestatus']}&lt;strong&gt;{&#36;post['profilelink']}&lt;/strong&gt; {&#36;post['postdate']}, {&#36;post['posttime']} &lt;span id="edited_by_{&#36;post['pid']}"&gt;{&#36;post['editedmsg']}&lt;/span&gt;<br />
				&lt;/div&gt;<br />
				{&#36;post['posturl']}<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow2 post_content {&#36;unapproved_shade}"&gt;<br />
				&lt;table cellspacing="0" cellpadding="0" border="0" style="width: 100%;"&gt;<br />
					&lt;tr&gt;<br />
						&lt;td&gt;<br />
							&lt;div class="post_body" id="pid_{&#36;post['pid']}"&gt;<br />
								{&#36;post['message']}<br />
							&lt;/div&gt;<br />
							&lt;div class="post_meta" id="post_meta_{&#36;post['pid']}"&gt;<br />
								{&#36;post['iplogged']}<br />
							&lt;/div&gt;<br />
						&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
				&lt;/table&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1 post_buttons {&#36;unapproved_shade}"&gt;<br />
				&lt;div class="post_management_buttons float_right"&gt;{&#36;post['button_edit']}{&#36;post['button_quickdelete']}{&#36;post['button_quote']}{&#36;post['button_multiquote']}{&#36;post['button_report']}{&#36;post['button_warn']}{&#36;post['button_reply_pm']}{&#36;post['button_replyall_pm']}{&#36;post['button_forward_pm']}{&#36;post['button_delete_pm']}<br />
				&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/tbody&gt;<br />
&lt;/table&gt;<br />
&lt;/div&gt;</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> prof_postbit_first<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>{&#36;ignore_bit}<br />
&lt;a name="pid{&#36;post['pid']}" id="pid{&#36;post['pid']}"&gt;&lt;/a&gt;<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="{&#36;post_extra_style} {&#36;post_visibility}" id="post_{&#36;post['pid']}"&gt;<br />
	&lt;tbody&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1 {&#36;unapproved_shade}"&gt;<br />
				&lt;table cellspacing="0" cellpadding="0" border="0" style="width: 100%;"&gt;<br />
					&lt;tr&gt;<br />
						&lt;td class="post_avatar" width="1" style="{&#36;post['avatar_padding']}"&gt;<br />
							{&#36;post['useravatar']}<br />
						&lt;/td&gt;<br />
						&lt;td class="post_author"&gt;<br />
							&lt;strong&gt;&lt;span class="largetext"&gt;{&#36;post['profilelink']}&lt;/span&gt;&lt;/strong&gt; {&#36;post['onlinestatus']}&lt;br /&gt;<br />
							&lt;span class="smalltext"&gt;<br />
								{&#36;post['usertitle']}&lt;br /&gt;<br />
								{&#36;post['userstars']}<br />
								{&#36;post['groupimage']}<br />
							&lt;/span&gt;<br />
						&lt;/td&gt;<br />
						&lt;td class="smalltext post_author_info" width="165"&gt;<br />
							{&#36;post['user_details']}<br />
						&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
				&lt;/table&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1 {&#36;unapproved_shade}"&gt;<br />
				&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="clear: both;"&gt;<br />
					&lt;tr&gt;<br />
						&lt;td width="50%" valign="top"&gt;<br />
							&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" width="100%" class="trow1"&gt;<br />
								&lt;tr&gt;<br />
									&lt;td class="thead" colspan="2" align="center"&gt;<br />
										&lt;strong&gt;{&#36;GLOBALS['threadfields']['profname']}'s Profile&lt;/strong&gt;<br />
									&lt;/td&gt;<br />
								&lt;/tr&gt;<br />
								&lt;tr&gt;<br />
									&lt;td width="1"&gt;<br />
										{&#36;GLOBALS['threadfields']['profpic']['value']}<br />
									&lt;/td&gt;<br />
									&lt;td&gt;<br />
										&lt;table border="0" width="100%" class="trow1"&gt;<br />
											&lt;tr&gt;<br />
												&lt;td&gt;Sim's Name&lt;/td&gt;&lt;td width="1"&gt;:&lt;/td&gt;&lt;td&gt;{&#36;GLOBALS['threadfields']['profname']}&lt;/td&gt;<br />
											&lt;/tr&gt;<br />
											&lt;tr&gt;<br />
												&lt;td&gt;Sim's Gender&lt;/td&gt;&lt;td width="1"&gt;:&lt;/td&gt;&lt;td&gt;{&#36;GLOBALS['threadfields']['profgender']}&lt;/td&gt;<br />
											&lt;/tr&gt;<br />
											&lt;tr&gt;<br />
												&lt;td&gt;Sim's Status&lt;/td&gt;&lt;td width="1"&gt;:&lt;/td&gt;&lt;td&gt;{&#36;GLOBALS['threadfields']['profstatus']}&lt;/td&gt;<br />
											&lt;/tr&gt;<br />
											&lt;tr&gt;<br />
												&lt;td&gt;Sim's Career&lt;/td&gt;&lt;td width="1"&gt;:&lt;/td&gt;&lt;td&gt;{&#36;GLOBALS['threadfields']['profcareer']}&lt;/td&gt;<br />
											&lt;/tr&gt;<br />
											&lt;tr&gt;<br />
												&lt;td&gt;Sim's Friends&lt;/td&gt;&lt;td width="1"&gt;:&lt;/td&gt;&lt;td&gt;{&#36;GLOBALS['threadfields']['profffriends']}&lt;/td&gt;<br />
											&lt;/tr&gt;<br />
											&lt;tr&gt;<br />
												&lt;td&gt;Sim's Age&lt;/td&gt;&lt;td width="1"&gt;:&lt;/td&gt;&lt;td&gt;{&#36;GLOBALS['threadfields']['profage']}&lt;/td&gt;<br />
											&lt;/tr&gt;<br />
										&lt;/table&gt;<br />
									&lt;/td&gt;<br />
								&lt;/tr&gt;<br />
							&lt;/table&gt;<br />
						&lt;/td&gt;<br />
						&lt;td&gt;&amp;nbsp;&lt;/td&gt;<br />
						&lt;td width="50%" valign="top"&gt;<br />
							&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" width="100%" class="trow1"&gt;<br />
								&lt;tr&gt;<br />
									&lt;td class="thead" align="center"&gt;<br />
										&lt;strong&gt;{&#36;GLOBALS['threadfields']['profname']}'s Skills&lt;/strong&gt;<br />
									&lt;/td&gt;<br />
								&lt;/tr&gt;<br />
								&lt;tr&gt;<br />
									&lt;td&gt;<br />
										&lt;table border="0" width="100%" class="trow1"&gt;<br />
											{&#36;GLOBALS['threadfields']['profcooking']}<br />
											{&#36;GLOBALS['threadfields']['profmechanical']}<br />
											{&#36;GLOBALS['threadfields']['profcharisma']}<br />
											{&#36;GLOBALS['threadfields']['profcreativity']}<br />
											{&#36;GLOBALS['threadfields']['profbody']}<br />
											{&#36;GLOBALS['threadfields']['proflogic']}<br />
										&lt;/table&gt;<br />
									&lt;/td&gt;<br />
								&lt;/tr&gt;<br />
							&lt;/table&gt;<br />
						&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
					&lt;tr&gt;<br />
						&lt;td colspan="3"&gt;<br />
							&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" width="100%" class="trow1"&gt;<br />
								&lt;tr&gt;<br />
									&lt;td class="thead" colspan="2" align="center" valign="middle"&gt;<br />
										&lt;strong&gt;{&#36;GLOBALS['threadfields']['profname']}'s Pictures&lt;/strong&gt;<br />
									&lt;/td&gt;<br />
								&lt;/tr&gt;<br />
								&lt;tr&gt;<br />
									&lt;td align="center"&gt;<br />
										{&#36;GLOBALS['threadfields']['profpic1']['value']}<br />
										{&#36;GLOBALS['threadfields']['profpic2']['value']}<br />
										{&#36;GLOBALS['threadfields']['profpic3']['value']}<br />
										{&#36;GLOBALS['threadfields']['profpic4']['value']}<br />
										{&#36;GLOBALS['threadfields']['profpic5']['value']}<br />
									&lt;/td&gt;<br />
								&lt;/tr&gt;<br />
							&lt;/table&gt;<br />
						&lt;/td&gt;<br />
					&lt;/tr&gt;<br />
				&lt;/table&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
<br />
		&lt;tr&gt;<br />
			&lt;td class="tcat"&gt;<br />
				&lt;div class="float_left smalltext"&gt;<br />
					{&#36;post['postdate']}, {&#36;post['posttime']} &lt;span id="edited_by_{&#36;post['pid']}"&gt;{&#36;post['editedmsg']}&lt;/span&gt;<br />
				&lt;/div&gt;<br />
				{&#36;post['posturl']}<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
<br />
		&lt;tr&gt;<br />
			&lt;td class="trow2 post_content {&#36;unapproved_shade}"&gt;<br />
				&lt;span class="smalltext"&gt;&lt;strong&gt;{&#36;post['icon']}{&#36;post['subject']} {&#36;post['subject_extra']}&lt;/strong&gt;&lt;/span&gt;<br />
<br />
				&lt;div class="post_body" id="pid_{&#36;post['pid']}"&gt;<br />
					{&#36;post['message']}<br />
				&lt;/div&gt;<br />
				{&#36;post['attachments']}<br />
				{&#36;post['signature']}<br />
<br />
				&lt;div class="post_meta" id="post_meta_{&#36;post['pid']}"&gt;<br />
				{&#36;post['iplogged']}<br />
				&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1 post_buttons {&#36;unapproved_shade}"&gt;<br />
				&lt;div class="author_buttons float_left"&gt;<br />
					{&#36;post['button_email']}{&#36;post['button_pm']}{&#36;post['button_www']}{&#36;post['button_find']}<br />
				&lt;/div&gt;<br />
				&lt;div class="post_management_buttons float_right"&gt;{&#36;post['button_edit']}{&#36;post['button_quickdelete']}{&#36;post['button_quote']}{&#36;post['button_multiquote']}{&#36;post['button_report']}{&#36;post['button_warn']}{&#36;post['button_reply_pm']}{&#36;post['button_replyall_pm']}{&#36;post['button_forward_pm']}{&#36;post['button_delete_pm']}<br />
				&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/tbody&gt;<br />
&lt;/table&gt;</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> prof_showthread<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;{&#36;thread['subject']}&lt;/title&gt;<br />
{&#36;headerinclude}<br />
&lt;script type="text/javascript"&gt;<br />
&lt;!--<br />
	var quickdelete_confirm = "{&#36;lang-&gt;quickdelete_confirm}";<br />
// <img src="https://gidenler.me/images/smilies/sag_ok.png" alt="Sağ ok" title="Sağ ok" class="smilie smilie_54" /><br />
&lt;/script&gt;<br />
&lt;script type="text/javascript" src="jscripts/thread.js?ver=1400"&gt;&lt;/script&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
{&#36;header}<br />
{&#36;pollbox}<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="clear: both; border-bottom-width: 0;"&gt;<br />
	&lt;tr&gt;<br />
		&lt;td class="thead" colspan="2"&gt;<br />
			&lt;div style="float: right;"&gt;<br />
				&lt;span class="smalltext"&gt;&lt;strong&gt;&lt;a href="showthread.php?mode=threaded&amp;amp;tid={&#36;tid}&amp;amp;pid={&#36;pid}#pid{&#36;pid}"&gt;{&#36;lang-&gt;threaded}&lt;/a&gt; | &lt;a href="showthread.php?mode=linear&amp;amp;tid={&#36;tid}&amp;amp;pid={&#36;pid}#pid{&#36;pid}"&gt;{&#36;lang-&gt;linear}&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;<br />
			&lt;/div&gt;<br />
			&lt;div&gt;<br />
				&lt;strong&gt;{&#36;thread['subject']}&lt;/strong&gt;<br />
			&lt;/div&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
	{&#36;classic_header}<br />
&lt;/table&gt;<br />
&lt;div&gt;<br />
	{&#36;first_post}<br />
&lt;/div&gt;<br />
&lt;table border="0" cellspacing="{&#36;theme['borderwidth']}" cellpadding="{&#36;theme['tablespace']}" class="tborder" style="border-top-width: 0;"&gt;<br />
	&lt;tr&gt;<br />
		&lt;td colspan="2" class="tfoot"&gt;<br />
			{&#36;search_thread}<br />
			&lt;div&gt;<br />
				&lt;strong&gt;&amp;laquo; &lt;a href="{&#36;next_oldest_link}"&gt;{&#36;lang-&gt;next_oldest}&lt;/a&gt; | &lt;a href="{&#36;next_newest_link}"&gt;{&#36;lang-&gt;next_newest}&lt;/a&gt; &amp;raquo;&lt;/strong&gt;<br />
			&lt;/div&gt;<br />
		&lt;/td&gt;<br />
	&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;br class="clear" /&gt;<br />
&lt;div class="float_left"&gt;<br />
	{&#36;multipage}<br />
&lt;/div&gt;<br />
&lt;div class="float_right"&gt;<br />
	{&#36;newreply}<br />
&lt;/div&gt;<br />
{&#36;ratethread}<br />
&lt;br class="clear" /&gt;<br />
&lt;div id="posts"&gt;<br />
	{&#36;posts}<br />
&lt;/div&gt;<br />
&lt;br style="clear: both;" /&gt;<br />
&lt;div class="float_left"&gt;<br />
	{&#36;multipage}<br />
&lt;/div&gt;<br />
&lt;div style="padding-top: 4px;" class="float_right"&gt;<br />
	{&#36;newreply}<br />
&lt;/div&gt;<br />
&lt;br style="clear: both;" /&gt;<br />
{&#36;quickreply}<br />
{&#36;threadexbox}<br />
{&#36;similarthreads}<br />
&lt;br /&gt;<br />
&lt;div class="float_left"&gt;<br />
	&lt;ul class="thread_tools"&gt;<br />
		&lt;li class="printable"&gt;&lt;a href="printthread.php?tid={&#36;tid}"&gt;{&#36;lang-&gt;view_printable}&lt;/a&gt;&lt;/li&gt;<br />
		&lt;li class="sendthread"&gt;&lt;a href="sendthread.php?tid={&#36;tid}"&gt;{&#36;lang-&gt;send_thread}&lt;/a&gt;&lt;/li&gt;<br />
		&lt;li class="subscription_{&#36;add_remove_subscription}"&gt;&lt;a href="usercp2.php?action={&#36;add_remove_subscription}subscription&amp;amp;tid={&#36;tid}&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;{&#36;add_remove_subscription_text}&lt;/a&gt;&lt;/li&gt;<br />
	&lt;/ul&gt;<br />
&lt;/div&gt;<br />
<br />
&lt;div class="float_right" style="text-align: right;"&gt;<br />
	{&#36;moderationoptions}<br />
	{&#36;forumjump}<br />
&lt;/div&gt;<br />
&lt;br style="clear: both;" /&gt;<br />
{&#36;footer}<br />
&lt;/body&gt;<br />
&lt;/html&gt;</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> prof_showthread_noreplies<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;div id="xthreads_noreplies"&gt;<br />
&lt;table border="0" cellspacing="{&#36;GLOBALS['theme']['borderwidth']}" cellpadding="{&#36;GLOBALS['theme']['tablespace']}" class="tborder"&gt;<br />
	&lt;tbody&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="tcat"&gt;<br />
				&lt;div class="float_left smalltext"&gt;<br />
					 &lt;strong&gt;Leave Your Comments For This Sim&lt;/strong&gt;<br />
				&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td class="trow1"&gt;<br />
				&lt;div class="post_body"&gt;<br />
					You can leave your comments for this Sims.<br />
				&lt;/div&gt;<br />
			&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/tbody&gt;<br />
&lt;/table&gt;<br />
&lt;/div&gt;</code></div></div>
</li>
</ul>
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Template Name:</span> prof_showthread_ratethread<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Template Content</span>:<div class="codeblock"><div class="title">Kod:</div><div class="body" dir="ltr"><code>&lt;div style="margin-top: 6px; padding-right: 10px;" class="float_right"&gt;<br />
		&lt;script type="text/javascript" src="jscripts/rating.js?ver=1400"&gt;&lt;/script&gt;<br />
		&lt;div id="success_rating_{&#36;thread['tid']}" style="float: left; padding-top: 2px; padding-right: 10px;"&gt;&amp;nbsp;&lt;/div&gt;<br />
		&lt;strong style="float: left; padding-right: 10px;"&gt;Sim's Rating&lt;/strong&gt;<br />
		&lt;div class="inline_rating"&gt;<br />
			&lt;ul class="star_rating{&#36;not_rated}" id="rating_thread_{&#36;thread['tid']}"&gt;<br />
				&lt;li style="width: {&#36;thread['width']}%" class="current_rating" id="current_rating_{&#36;thread['tid']}"&gt;{&#36;ratingvotesav}&lt;/li&gt;<br />
				&lt;li&gt;&lt;a class="one_star" title="{&#36;lang-&gt;one_star}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=1&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;1&lt;/a&gt;&lt;/li&gt;<br />
				&lt;li&gt;&lt;a class="two_stars" title="{&#36;lang-&gt;two_stars}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=2&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;2&lt;/a&gt;&lt;/li&gt;<br />
				&lt;li&gt;&lt;a class="three_stars" title="{&#36;lang-&gt;three_stars}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=3&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;3&lt;/a&gt;&lt;/li&gt;<br />
				&lt;li&gt;&lt;a class="four_stars" title="{&#36;lang-&gt;four_stars}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=4&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;4&lt;/a&gt;&lt;/li&gt;<br />
				&lt;li&gt;&lt;a class="five_stars" title="{&#36;lang-&gt;five_stars}" href="./ratethread.php?tid={&#36;thread['tid']}&amp;amp;rating=5&amp;amp;my_post_key={&#36;mybb-&gt;post_code}"&gt;5&lt;/a&gt;&lt;/li&gt;<br />
			&lt;/ul&gt;<br />
		&lt;/div&gt;<br />
&lt;/div&gt;</code></div></div>
</li>
</ul>
<br />
Please let me know if I missed somethings <img src="https://gidenler.me/images/v2/smile/o3.gif" alt="Smile" title="Smile" class="smilie smilie_1" /><br />
<br />
Screenshots:<br />
<br />
1. User create a product review thread:<br />
<br />
<img src="http://i46.tinypic.com/drf8qw.jpg" loading="lazy"  alt="[Resim: drf8qw.jpg]" class="mycode_img" /><br />
<br />
2. User view the post:<br />
<br />
<img src="http://i45.tinypic.com/25qu2zc.jpg" loading="lazy"  alt="[Resim: 25qu2zc.jpg]" class="mycode_img" /><br />
<br />
3. Thread List:<br />
<br />
<img src="http://i45.tinypic.com/xyofr.jpg" loading="lazy"  alt="[Resim: xyofr.jpg]" class="mycode_img" /><br />
<br />
I have created a live demo for this:<br />
<a href="http://www.14.mynie.co.cc/forumdisplay.php?fid=6" target="_blank" rel="noopener" class="mycode_url">http://www.14.mynie.co.cc/forumdisplay.php?fid=6</a>]]></content:encoded>
		</item>
	</channel>
</rss>