<?xml version="1.0" encoding="iso-8859-1" ?>
<rss version="2.0">
<channel>
	<title>DevFuse Forums - Tutorials</title>
	<link>http://www.devfuse.com/forums/index.php?app=tutorials</link>
	<pubDate>Sat, 04 Feb 2012 03:15:03 +0000</pubDate>
	<ttl>1800</ttl>
	<description>Tutorials from all available categories.</description>
	<item>
		<title>Fatal error on install</title>
		<link>http://www.devfuse.com/forums/tutorials/article/107-fatal-error-on-install/</link>
		<description><![CDATA[If you get a fatal error when first installing an application, the most common cause is a bug with IPB 3.x that doesn't insert the application templates when installing therefore triggering an error.<br />
<br />
<strong class='bbc'>Example of this error:</strong><br />
<p class='citation'>Quote</p><div class="blockquote"><div class='quote'>Fatal error: Call to a member function <strong class='bbc'>templateFunctionName()</strong> on a non-object in /the/file/location/file.php on line 555</div></div>
<br />
The error won't always be the same as above but you get the idea. Another symptom may be a blank/white page rather then the error. You can find bug reports on the IPS Bug Tracker <a href='http://community.invisionpower.com/tracker/issue-32834-application-templates-not-being-added/' class='bbc_url' title='' rel='nofollow'>here</a> and <a href='http://community.invisionpower.com/tracker/issue-31779-calendar-error/' class='bbc_url' title='' rel='nofollow'>here</a>. As of IPB 3.2.3 this still appears to be a problem and goes back to IPB 3.0.x. Below is an IPS provided fix if you have this problem.<br />
<br />
<strong class='bbc'>Manual Fix: (Provided by IPS)</strong><br />
<p class='citation'>Quote</p><div class="blockquote"><div class='quote'>Here's a work-around.<br />
<br />
1) Make some skin OTHER than IP.Board the default skin, using the blue HTML icons in ACP -&gt; Look & Feel.<br />
2) Edit the settings for the IP.Board skin. The skin key field <strong class='bbc'>should</strong> show up, and it will likely be blank. Fill in the value: default<br />
3) save the IP.Board skin.<br />
4) Now use those HTML icons to make IP.Board the default if you want to, but you can leave it at whichever default skin you wish.<br />
5) Go to ACP -&gt; Look & Feel -&gt; Template Tools -&gt; <strong class='bbc'>Rebuild Master Skin Data</strong> -&gt; select <strong class='bbc'>all</strong> the checkboxes in that section -&gt; click the <strong class='bbc'>Rebuild</strong> button.<br />
<br />
That will at least get the skin key set properly, which you can check in the ibf_skin_collections table of the database. The IP.Board skin should show the value 'default' in the 'set_key' field for the IP.Board skin entry. If it's there, that should resolve the problem <strong class='bbc'>going forward</strong>.<br />
<br />
If you installed a new app shortly before fixing the underlying problem, and if it's not in heavy use yet, just uninstall and reinstall it. That <strong class='bbc'>should</strong> work, but if it doesn't for you, please file a support ticket.</div></div>
<br />
As mentioned above, if new install then an uninstall and re-install with the provided instructions followed will work. But if you've upgraded or already have data added, please submit a support ticket with admin and ftp login details as the fix needs to be applied manually and is more complex.]]></description>
		<pubDate>Wed, 16 Nov 2011 03:49:20 +0000</pubDate>
		<guid isPermaLink="false">107</guid>
		<creator>Michael</creator>
		<category>5</category>
	</item>
	<item>
		<title>3.2.x  Add one or more custom block in sidebar</title>
		<link>http://www.devfuse.com/forums/tutorials/article/106-32x-add-one-or-more-custom-block-in-sidebar/</link>
		<description><![CDATA[As you all know you can add some automatic or custom content  in the sidebar of the board index of IPB 3.2<br />
To insert new custom blocks you can use the classical (e32)Custom Sidebar Blocks 1.5.0 <a href='http://community.invisionpower.com/files/file/2447-e32-custom-sidebar-blocks/' class='bbc_url' title='' rel='nofollow'>http://community.inv...sidebar-blocks/</a> that allows you to insert one or more custom blocks in sidebar, but all these will be displayed next to each other, and not interspaced with other automatic blocks.<br />
With a manual edit of  template you can put at least another 2 blocks, one or more blocks in the sidebar <strong class='bbc'>above</strong> all, and one or more <strong class='bbc'>below</strong> all.<br />
<br />
Look&Feel - Manage Skin Sets & Templates - your skin - boardindexTemplate<br />
<br />
Findi this:<br />
<pre class='prettyprint'>
   		    &lt;foreach loop="side_blocks:$side_blocks as $block"&gt;
                {$block}
            &lt;/foreach&gt;
</pre>
<br />
<br />
and add BEFORE and or AFTER:<br />
<br />
<pre class='prettyprint'>
&lt;!-- SIDEBAR BLOCK MANUAL BEGIN --&gt;
&lt;div class='ipsSideBlock clearfix'&gt;
    &lt;h3&gt;TITLE&lt;/h3&gt;
    &lt;div class='_sbcollapsable'&gt;
        MESSAGGIO HTML  MESSAGGIO HTML MESSAGGIO HTML
    &lt;/div&gt;
&lt;/div&gt;
&lt;!-- SIDEBAR BLOCK MANUAL END --&gt;
</pre>
<br />
<img src='http://www.devfuse.com/forums/public/style_emoticons/default/smile.gif' class='bbc_emoticon' alt=':)' />]]></description>
		<pubDate>Mon, 07 Nov 2011 07:47:11 +0000</pubDate>
		<guid isPermaLink="false">106</guid>
		<creator>najaru</creator>
		<category>1</category>
	</item>
	<item>
		<title>3.2.x Adjust the log pruning schedule</title>
		<link>http://www.devfuse.com/forums/tutorials/article/105-32x-adjust-the-log-pruning-schedule/</link>
		<description><![CDATA[IP.Board provides options (System Settings &gt; Advanced &gt; Log Pruning) to enable / disable pruning various logs such as spider logs, database error logs, spam logs etc.<br />
<br />
The only issue some administrators may have is that thirty days may be too long, or in some rare cases not enough but again not enough to justify not pruning them.<br />
<br />
A simple tweak is possible to adjust the pruning schedule. <img src='http://www.devfuse.com/forums/public/style_emoticons/default/smile.gif' class='bbc_emoticon' alt=':)' /><br />
<br />
Connect via FTP or your hosts file manager and open admin/applications/core/tasks/logprune.php<br />
<br />
Around line 34, find...<br />
<pre class='prettyprint'>protected $deleteTime = 2592000;</pre>
<br />
Replace that line with one of the following, depending on what you require.<br />
<br />
<strong class='bbc'>14 days</strong><br />
<pre class='prettyprint'>protected $deleteTime = 1209600;</pre>
<br />
<strong class='bbc'>7 days</strong><br />
<pre class='prettyprint'>protected $deleteTime = 604800;</pre>
<br />
<strong class='bbc'>3 days</strong><br />
<pre class='prettyprint'>protected $deleteTime = 259200;</pre>
<br />
Save the change. The settings description will still indicate 30 days but the actual pruning will take place at the days interval you have specified. <img src='http://www.devfuse.com/forums/public/style_emoticons/default/smile.gif' class='bbc_emoticon' alt=':)' /> , remember this change will effect them all so you may wish to disable any pruning you do not want to occur at that interval.]]></description>
		<pubDate>Sun, 06 Nov 2011 13:26:35 +0000</pubDate>
		<guid isPermaLink="false">105</guid>
		<creator>AndyF</creator>
		<category>1</category>
	</item>
	<item>
		<title>3.2.x Public polls by default</title>
		<link>http://www.devfuse.com/forums/tutorials/article/104-32x-public-polls-by-default/</link>
		<description><![CDATA[Here is a quick, simple tutorial on how to have "Make votes public?" checked by default. This may eliminate the problem of members who do wish to have a public poll but are unable to change it after submitting it.<br />
<br />
A small skin edit is required.<br />
<br />
ACP &gt; Look / Feel &gt; Skin Manager &gt; (choose skin) &gt; Manage Templates / CSS &gt; Post Screen &gt; Poll Box &gt;<br />
<br />
Find...<br />
<pre class='prettyprint'>&lt;span class='ipsType_small' id='check_public_poll' data-tooltip="{$this-&gt;lang-&gt;words&#91;'poll_public_warning'&#93;}"&gt;
                        &lt;input type='checkbox' class='input_check' name='poll_view_voters' id='poll_view_voters' value='1' &lt;if test="viewPollVoters:|:$data&#91;'poll_view_voters'&#93;"&gt;checked='checked'&lt;/if&gt; /&gt;
                        &lt;label for='poll_view_voters'&gt;{$this-&gt;lang-&gt;words&#91;'poll_fs_public'&#93;}&lt;/label&gt;
                    &lt;/span&gt;</pre>
<br />
Change to...<br />
<pre class='prettyprint'>&lt;span class='ipsType_small' id='check_public_poll' data-tooltip="{$this-&gt;lang-&gt;words&#91;'poll_public_warning'&#93;}"&gt;
                        &lt;input type='checkbox' checked ='checked' class='input_check' name='poll_view_voters' id='poll_view_voters' value='1' &lt;if test="viewPollVoters:|:$data&#91;'poll_view_voters'&#93;"&gt;checked='checked'&lt;/if&gt; /&gt;
                        &lt;label for='poll_view_voters'&gt;{$this-&gt;lang-&gt;words&#91;'poll_fs_public'&#93;}&lt;/label&gt;
                    &lt;/span&gt;</pre>
<br />
Save the change. Repeat for other skins if required. Quick pic:<br />
<br />
<span rel='lightbox'><img src='http://img.photobucket.com/albums/v294/yellow_spider/ipb_tutorials/default_public_poll.png' alt='Posted Image' class='bbc_img' /></span>]]></description>
		<pubDate>Sat, 29 Oct 2011 10:51:54 +0000</pubDate>
		<guid isPermaLink="false">104</guid>
		<creator>AndyF</creator>
		<category>1</category>
	</item>
	<item>
		<title>3.2.x Adding joined date to topic view</title>
		<link>http://www.devfuse.com/forums/tutorials/article/102-32x-adding-joined-date-to-topic-view/</link>
		<description><![CDATA[Its very easy with a small skin edit to add the joined date back to topic view on 3.2 if you require it.<br />
 <br />
ACP &gt; Look / Feel &gt; Skin Manager &gt; (choose skin) &gt; Manage Templates / CSS &gt; Global Templates &gt; UserInfoPane<br />
 <br />
Find...<br />
<pre class='prettyprint'>        &lt;li class='post_count desc lighter'&gt;
   	     {parse expression="$this-&gt;registry-&gt;getClass('class_localization')-&gt;formatNumber( intval( $author&#91;'posts'&#93; ) )"} {$this-&gt;lang-&gt;words&#91;'m_posts'&#93;}
        &lt;/li&gt;
        &lt;/if&gt;
    &lt;/ul&gt;</pre>
 <br />
Add this <em class='bbc'>after</em> the &lt;/if&gt; tag but before the &lt;/ul&gt; tag...<br />
<pre class='prettyprint'>&lt;span class='group_title'&gt;{$this-&gt;lang-&gt;words&#91;'m_joined'&#93;}&lt;/span&gt; &lt;span class='post_count desc lighter'&gt;{parse date="$author&#91;'joined'&#93;" format="joined"}&lt;/span&gt;</pre>
 <br />
So you end up with this:<br />
<pre class='prettyprint'>        &lt;li class='post_count desc lighter'&gt;
   	     {parse expression="$this-&gt;registry-&gt;getClass('class_localization')-&gt;formatNumber( intval( $author&#91;'posts'&#93; ) )"} {$this-&gt;lang-&gt;words&#91;'m_posts'&#93;}
        &lt;/li&gt;
        &lt;/if&gt;
&lt;span class='group_title'&gt;{$this-&gt;lang-&gt;words&#91;'m_joined'&#93;}&lt;/span&gt; &lt;span class='post_count desc lighter'&gt;{parse date="$author&#91;'joined'&#93;" format="joined"}&lt;/span&gt;
    &lt;/ul&gt;</pre>
 <br />
Save. <img src='http://www.devfuse.com/forums/public/style_emoticons/default/smile.gif' class='bbc_emoticon' alt=':)' /> Quick pic:<br />
 <br />
<span rel='lightbox'><img src='http://img.photobucket.com/albums/v294/yellow_spider/ipb_tutorials/joined_date_topic_view.png' alt='Posted Image' class='bbc_img' /></span><br />
 <br />
You might want to add a &lt;br /&gt; tag or suchlike to space it out, but that's essentially it.]]></description>
		<pubDate>Wed, 28 Sep 2011 10:29:00 +0000</pubDate>
		<guid isPermaLink="false">102</guid>
		<creator>AndyF</creator>
		<category>1</category>
	</item>
	<item>
		<title>Different bbcode quote in standard 3.2.0 skin</title>
		<link>http://www.devfuse.com/forums/tutorials/article/101-different-bbcode-quote-in-standard-320-skin/</link>
		<description><![CDATA[I think that quote bbcode in standard 3.2.0 skin is not the bast, because it's not very different from normal post.<br />
<br />
<a class='resized_img' rel='lightbox[101]' id='ipb-attach-url-595-0-53007100-1328325303' href="http://www.devfuse.com/forums/index.php?app=core&module=attach&section=attach&attach_rel_module=tutorials&attach_id=595" title="quote-css-orig.jpg - Size: 75.78K, Downloads: 945"><img src="http://www.devfuse.com/forums/uploads/monthly_07_2011/tutorials-8072-0-46242500-1311771323_thumb.jpg" id='ipb-attach-img-595-0-53007100-1328325303' style='width:100;height:58' class='attach' width="100" height="58" alt="Attached Image: quote-css-orig.jpg" /></a><br />
<br />
To make it more visible but a with little dimension you can open your skin, css, ipb_common.css and find this:<br />
<br />
<br />
<pre class='prettyprint'>/* Quote boxes */

p.citation {
	font-size: 12px;
	padding: 8px 10px;
	border-left: 2px solid #989898;
	/*background: #f3f3f3 */
	background: #f6f6f6;
	background: -moz-linear-gradient(top, #f6f6f6 0%, #e5e5e5 100%); /* firefox */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f6f6f6), color-stop(100%,#e5e5e5)); /* webkit */
	border-top: 2px solid #e5e5e5;
	border-right: 2px solid #e5e5e5;
	-moz-border-radius: 5px 5px 0 0;
	-webkit-border-radius: 5px 5px 0 0;
	border-radius: 5px 5px 0 0;
	font-weight: bold;
}

div.blockquote {
	font-size: 12px;
	padding: 10px;
	border-left: 2px solid #989898;
	background: #fdfdfd;
	border-right: 2px solid #e5e5e5;
	border-bottom: 2px solid #e5e5e5;
	-moz-border-radius: 0 0 5px 5px;
	-webkit-border-radius: 0 0 5px 5px;
	border-radius: 0 0 5px 5px;
	background: #f7f7f7;
}</pre>
<br />
<br />
and replace with<br />
<br />
<br />
<br />
<pre class='prettyprint'>/* Quote boxes */
p.citation {
	font-size: 11px;
	padding: 5px 5px;
	border-left: 2px solid #989898;
	/*background: #f3f3f3 */
	background: #b1b2b2;
	background: -moz-linear-gradient(top, #f6f6f6 0%, #b1b2b2 100%); /* firefox */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f6f6f6), color-stop(100%,#e5e5e5)); /* webkit */
	border-top: 2px solid #e5e5e5;
	border-right: 2px solid #e5e5e5;
	-moz-border-radius: 5px 5px 0 0;
	-webkit-border-radius: 5px 5px 0 0;
	border-radius: 5px 5px 0 0;
	font-weight: bold;
}

div.blockquote {
	font-size: 10px;
	padding: 5px;
	border-left: 2px solid #989898;
	background: #e9eaea;
	border-right: 2px solid #e5e5e5;
	border-bottom: 2px solid #e5e5e5;
	-moz-border-radius: 0 0 5px 5px;
	-webkit-border-radius: 0 0 5px 5px;
	border-radius: 0 0 5px 5px;
}</pre>
<br />
<br />
Result:<br />
<br />
<a class='resized_img' rel='lightbox[101]' id='ipb-attach-url-596-0-54688400-1328325303' href="http://www.devfuse.com/forums/index.php?app=core&module=attach&section=attach&attach_rel_module=tutorials&attach_id=596" title="quote-css-modified.jpg - Size: 79.14K, Downloads: 689"><img src="http://www.devfuse.com/forums/uploads/monthly_07_2011/tutorials-8072-0-84448700-1311771343_thumb.jpg" id='ipb-attach-img-596-0-54688400-1328325303' style='width:100;height:58' class='attach' width="100" height="58" alt="Attached Image: quote-css-modified.jpg" /></a>]]></description>
		<pubDate>Wed, 27 Jul 2011 12:55:59 +0000</pubDate>
		<guid isPermaLink="false">101</guid>
		<creator>najaru</creator>
		<category>1</category>
	</item>
	<item>
		<title>3.2.x Adjusting status update numbers</title>
		<link>http://www.devfuse.com/forums/tutorials/article/100-32x-adjusting-status-update-numbers/</link>
		<description><![CDATA[Here's how to adjust the number of status updates on 3.2.x without any core file edits. This is helpful for those using a hosted community as they will not be able to perform an edit to an otherwise encoded file. <img src='http://www.devfuse.com/forums/public/style_emoticons/default/happy.png' class='bbc_emoticon' alt=':)' /><br />
<br />
Connect via FTP. Open /conf_global.php. Just above the closing ?&gt; tag, on its own line add:<br />
<br />
<pre class='prettyprint'>$INFO&#91;'status_sidebar_show_x'&#93;            =    '10';</pre>
<br />
Save the change, adjust the 10 if you prefer a different number. The default if that line is missing is 5.<br />
<br />
<br />
Note: Ensure that conf_global.php is not writeable after you've re-uploaded it, typically you would CHMOD it to 644 or 444 if possible. Never leave it at 777.]]></description>
		<pubDate>Tue, 26 Jul 2011 14:39:48 +0000</pubDate>
		<guid isPermaLink="false">100</guid>
		<creator>AndyF</creator>
		<category>1</category>
	</item>
	<item>
		<title>Customize Like Button in 3.2.0</title>
		<link>http://www.devfuse.com/forums/tutorials/article/99-customize-like-button-in-320/</link>
		<description><![CDATA[Maybe many communities need little customization of like button. With this tutoria you can customize colours and texts.<br />
<br />
1)Image background erase:  upload 2 file attached in your skin images folder<br />
<br />
2)Color customization:  Look&Feel - manage skin set & template - your skin - css -ipb_stayle.css and find:<br />
<pre class='prettyprint'>	.ipsLikeButton.ipsLikeButton_enabled {
		background: #850600 url(&#123;style_images_url&#125;/like_button.png ) no-repeat top left;
		border: 1px solid #850600;
	}</pre>
and change the 2 colors code 7B96BB  with your preferred color<br />
<br />
3)Text customization: Look&Feel - manage language - open your official lang - use search field to find "like_this" - and you can change the text now<br />
<br />
<br />
Before:<br />
<span rel='lightbox'><img src='http://www.invisionita.it/download/like-before.jpg' alt='Posted Image' class='bbc_img' /></span><br />
<br />
<br />
After:<br />
<span rel='lightbox'><img src='http://www.invisionita.it/download/like-after.jpg' alt='Posted Image' class='bbc_img' /></span><br />
<br />
<br />
--------------------------------------<br />
<br />
Below the 2 images attached]]></description>
		<pubDate>Mon, 25 Jul 2011 12:59:43 +0000</pubDate>
		<guid isPermaLink="false">99</guid>
		<creator>najaru</creator>
		<category>1</category>
	</item>
	<item>
		<title><![CDATA[Autocheck 'leave a link' when moving a topic or topics]]></title>
		<link>http://www.devfuse.com/forums/tutorials/article/98-autocheck-leave-a-link-when-moving-a-topic-or-topics/</link>
		<description><![CDATA[Here's a simple article on how to set "Leave a link to the new topic in the source forum?" for both individual and mass moving topics as by default they are both unchecked.<br />
<br />
Two small skin edits are needed, the template names are very similar so be careful to not mix them up. <img src='http://www.devfuse.com/forums/public/style_emoticons/default/happy.png' class='bbc_emoticon' alt=':)' /> , the first one is Move<strong class='bbc'>Topic</strong>Form the second is Move<strong class='bbc'>Topics</strong>Form<br />
<br />
ACP &gt; Look / Feel &gt; Skin Manager &gt; (choose skin) &gt; Manage Templates / CSS &gt; Moderation &gt; MoveTopicForm<br />
<br />
Find...<br />
<pre class='prettyprint'>			&lt;li class='field clear checkbox'&gt;
				&lt;input type='checkbox' id='leave_link' class='input_check' name='leave' value='y' /&gt;
				&lt;label for='leave_link'&gt;{$this-&gt;lang-&gt;words&#91;'leave_link'&#93;}&lt;/label&gt;
			&lt;/li&gt;</pre>
<br />
Change to...<br />
<pre class='prettyprint'>			&lt;li class='field clear checkbox'&gt;
				&lt;input type='checkbox' checked='checked' id='leave_link' class='input_check' name='leave' value='y' /&gt;
				&lt;label for='leave_link'&gt;{$this-&gt;lang-&gt;words&#91;'leave_link'&#93;}&lt;/label&gt;
			&lt;/li&gt;</pre>
<br />
Save the change.<br />
<br />
ACP &gt; ACP &gt; Look / Feel &gt; Skin Manager &gt; (choose skin) &gt; Manage Templates / CSS &gt; Moderation &gt; MoveTopicsForm<br />
<br />
Find...<br />
<pre class='prettyprint'>			&lt;li class='field checkbox'&gt;
				&lt;input type='checkbox' id='leave_link' class='input_check' name='leave' value='y' /&gt;
				&lt;label for='leave_link'&gt;{$this-&gt;lang-&gt;words&#91;'leave_link'&#93;}&lt;/label&gt;
			&lt;/li&gt;</pre>
<br />
Change to...<br />
<pre class='prettyprint'>			&lt;li class='field checkbox'&gt;
				&lt;input type='checkbox' checked='checked' id='leave_link' class='input_check' name='leave' value='y' /&gt;
				&lt;label for='leave_link'&gt;{$this-&gt;lang-&gt;words&#91;'leave_link'&#93;}&lt;/label&gt;
			&lt;/li&gt;</pre>
<br />
Again, save the change.<br />
<br />
<br />
That's it, it should be done. Here's two quick pics although its quite obvious what its done:<br />
<br />
<span rel='lightbox'><img src='http://img.photobucket.com/albums/v294/yellow_spider/ipb_tutorials/32_checked_leave_a_link_move_topics_1.png' alt='Posted Image' class='bbc_img' /></span><br />
<br />
<span rel='lightbox'><img src='http://img.photobucket.com/albums/v294/yellow_spider/ipb_tutorials/32_checked_leave_a_link_move_topics_2.png' alt='Posted Image' class='bbc_img' /></span>]]></description>
		<pubDate>Sun, 24 Jul 2011 14:01:29 +0000</pubDate>
		<guid isPermaLink="false">98</guid>
		<creator>AndyF</creator>
		<category>1</category>
	</item>
	<item>
		<title>Autocheck use first tag as prefix</title>
		<link>http://www.devfuse.com/forums/tutorials/article/97-autocheck-use-first-tag-as-prefix/</link>
		<description><![CDATA[Here's a quick and very simple article on how to make the 'Use first tag as prefix' box checked by default to hopefully increase your members use of tags. <img src='http://www.devfuse.com/forums/public/style_emoticons/default/happy.png' class='bbc_emoticon' alt=':)' /><br />
<br />
Members can uncheck it if they wish, I did consider hiding it but that negates it being there as this way they can opt out of using it if they still wish to use tags, it just serves as a helpful feature.<br />
<br />
A tiny skin edit is needed.<br />
<br />
ACP &gt; Look / Feel &gt; Skin Manager &gt; (choose skin) &gt; Manage Templates / CSS &gt; Other Global Templates &gt; TagTextEntryBox  <br />
<br />
Find...<br />
<pre class='prettyprint'>&lt;if test="canPrefix:|:$options&#91;'prefixesEnabled'&#93;"&gt;
	&nbsp;&nbsp;&lt;span class="desc lighter"&gt;&lt;input type="checkbox" value="1" name="{$options&#91;'fieldId'&#93;}_prefix" id="{$options&#91;'fieldId'&#93;}_prefix" &lt;if test="prefixChecked:|:$tags&#91;'formatted'&#93;&#91;'prefix'&#93;"&gt;checked='checked'&lt;/if&gt; /&gt; {$this-&gt;lang-&gt;words&#91;'firsttagprefix'&#93;}&lt;/span&gt;
&lt;/if&gt;</pre>
<br />
Replace with...<br />
<pre class='prettyprint'>&lt;if test="canPrefix:|:$options&#91;'prefixesEnabled'&#93;"&gt;
	&nbsp;&nbsp;&lt;span class="desc lighter"&gt;&lt;input type="checkbox" checked="checked" value="1" name="{$options&#91;'fieldId'&#93;}_prefix" id="{$options&#91;'fieldId'&#93;}_prefix" &lt;if test="prefixChecked:|:$tags&#91;'formatted'&#93;&#91;'prefix'&#93;"&gt;checked='checked'&lt;/if&gt; /&gt; {$this-&gt;lang-&gt;words&#91;'firsttagprefix'&#93;}&lt;/span&gt;
&lt;/if&gt;</pre>
<br />
Save the change. Repeat for other skins if required. <img src='http://www.devfuse.com/forums/public/style_emoticons/default/happy.png' class='bbc_emoticon' alt=':)' /><br />
<br />
Here's a quick pic anyway:<br />
<br />
<span rel='lightbox'><img src='http://img.photobucket.com/albums/v294/yellow_spider/ipb_tutorials/32_first_tag_default_1.png' alt='Posted Image' class='bbc_img' /></span>]]></description>
		<pubDate>Sun, 24 Jul 2011 13:36:18 +0000</pubDate>
		<guid isPermaLink="false">97</guid>
		<creator>AndyF</creator>
		<category>1</category>
	</item>
</channel>
</rss>
