<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
	<title>Invision Byte Tutorials</title>
	<link>http://community.invisionbyte.net/index.php?app=tutorials</link>
	<pubDate>Mon, 07 Oct 2019 15:32:37 +0000</pubDate>
	<ttl>1800</ttl>
	<description>Last 10 tutorials submitted on InvisionByte.net</description>
	<item>
		<title>Install a hook</title>
		<link>http://community.invisionbyte.net/tutorials/article/171-install-a-hook/</link>
		<description><![CDATA[A very quick article to help those new to IPBoard on how to install a hook, by their nature they are easy to install. Hopefully this short guide should answer any immediate questions.<br />
 <br />
For the purpose of this, I've chosen a simple hook only example "Members Online Today" as its very easy to install and a popular choice for a lot of communities.<br />
 <br />
 <br />
1. Having downloaded the file, extract the .zip:<br />
 <br />
<img src='http://img.photobucket.com/albums/v294/yellow_spider/ipb_tutorials/hook_install_1_zps8fd04d6e.png' alt='Posted Image' class='bbc_img' /><br />
 <br />
 <br />
2. Lets take a look at the contents:<br />
 <br />
<img src='http://img.photobucket.com/albums/v294/yellow_spider/ipb_tutorials/hook_install_2_zpsf01b6a91.png' alt='Posted Image' class='bbc_img' /><br />
 <br />
We can see the hook xml file itself and some instructions. I won't duplicate the text from those here but its recommended to check the instructions provided by the author regarding the hooks settings (if applicable) and any other features.<br />
 <br />
 <br />
3. We need to upload the hook xml now. Go to your ACP. Click the System tab, then on the left Manage Hooks:<br />
 <br />
<img src='http://img.photobucket.com/albums/v294/yellow_spider/ipb_tutorials/hook_install_3_zps27ab9675.png' alt='Posted Image' class='bbc_img' /><br />
 <br />
 <br />
4. On the Manage Hooks page, click the "Install Hook" button:<br />
 <br />
<img src='http://img.photobucket.com/albums/v294/yellow_spider/ipb_tutorials/hook_install_4_zps74dd5dbe.png' alt='Posted Image' class='bbc_img' /><br />
 <br />
 <br />
5. A popup will appear. Browse for and upload the hook xml in the .zip you extracted earlier:<br />
 <br />
<img src='http://img.photobucket.com/albums/v294/yellow_spider/ipb_tutorials/hook_install_5_zpsfacb6223.png' alt='Posted Image' class='bbc_img' /><br />
 <br />
Don't forget to click "Install"<br />
 <br />
 <br />
6. The hook may take a few moments to install. Once it has finished you'll see a message similar to this, indicating what it has done:<br />
 <br />
<img src='http://img.photobucket.com/albums/v294/yellow_spider/ipb_tutorials/hook_install_6_zps253ce477.png' alt='Posted Image' class='bbc_img' /><br />
 <br />
 <br />
Scroll down a bit to the list of hooks, and you'll see the hook you just chose has been installed:<br />
 <br />
<img src='http://img.photobucket.com/albums/v294/yellow_spider/ipb_tutorials/hook_install_7_zps32e03db2.png' alt='Posted Image' class='bbc_img' /><br />
 <br />
 <br />
7. Having already read the instructions included in the hook (you did read them yes ?) you'll know it has some settings, so on the System tab, click System Settings on the left, then the Hooks tab in the settings list and you'll see the settings for this hook:<br />
 <br />
<img src='http://img.photobucket.com/albums/v294/yellow_spider/ipb_tutorials/hook_install_8_zps8b76426c.png' alt='Posted Image' class='bbc_img' /><br />
 <br />
 <br />
8.Lets take a quick look at this hooks settings, they are self explanatory and just adjust as required not forgetting to save them:<br />
 <br />
<img src='http://img.photobucket.com/albums/v294/yellow_spider/ipb_tutorials/hook_install_9_zps881f9678.png' alt='Posted Image' class='bbc_img' /><br />
 <br />
Remember not all hooks have settings, always refer to the instructions that accompany a hook or if in doubt ask in its support topic.<br />
 <br />
 <br />
9. Now we've set it as we wanted to, we know this hook displays on the board index in the stats (as per the instructions) so lets check our board to see what its done:<br />
 <br />
<img src='http://img.photobucket.com/albums/v294/yellow_spider/ipb_tutorials/hook_install_10_zps8643de5c.png' alt='Posted Image' class='bbc_img' /><br />
 <br />
As you can see its working. You can return to Manage Hooks to disable and / or install any hook at a future point.]]></description>
		<pubDate>Fri, 05 Apr 2013 16:22:45 +0000</pubDate>
		<guid isPermaLink="false">171</guid>
		<creator>AndyF</creator>
		<category>5</category>
	</item>
	<item>
		<title><![CDATA[3.2.x Adding 'Member Number' back to Topic View]]></title>
		<link>http://community.invisionbyte.net/tutorials/article/170-32x-adding-member-number-back-to-topic-view/</link>
		<description><![CDATA[Here's a quick article on how to restore the Member Number to topic view. <img src='http://community.invisionbyte.net/public/style_emoticons/default/smile.gif' class='bbc_emoticon' alt=':)' /><br />
<br />
ACP &gt; Look / Feel &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 />
<br />
Add this line <em class='bbc'>just before</em> the final &lt;/ul&gt; tag:<br />
<br />
<pre class='prettyprint'>&lt;span class='group_title'&gt;Member: &lt;/span&gt; &lt;span class='post_count desc lighter'&gt;{$author&#91;'member_id'&#93;}&lt;/span&gt;</pre><br />
<br />
You should now hopefully have something like 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;Member Number:&lt;/span&gt; &lt;span class='post_count desc lighter'&gt;{$author&#91;'member_id'&#93;}&lt;/span&gt;
    &lt;/ul&gt;</pre><br />
<br />
Save. <img src='http://community.invisionbyte.net/public/style_emoticons/default/smile.gif' class='bbc_emoticon' alt=':)' /><br />
<br />
Quick pic:<br />
<br />
<img src='http://img.photobucket.com/albums/v294/yellow_spider/ipb_tutorials/member_id_topic_view.png' alt='Posted Image' class='bbc_img' />]]></description>
		<pubDate>Wed, 15 Feb 2012 16:03:03 +0000</pubDate>
		<guid isPermaLink="false">170</guid>
		<creator>AndyF</creator>
		<category>5</category>
	</item>
	<item>
		<title>3.2.x Disable Fast Reply</title>
		<link>http://community.invisionbyte.net/tutorials/article/169-32x-disable-fast-reply/</link>
		<description><![CDATA[A few people have expressed an interest in removing the fast reply from topic view. Here is a simple skin edit to do that. <img src='http://community.invisionbyte.net/public/style_emoticons/default/smile.gif' class='bbc_emoticon' alt=':)' /><br />
<br />
Its in two parts as part 1 involves removing the fast reply window and part 2 adds the 'post reply' button to the end of the page, otherwise you'd have to scroll to the top to add a reply.<br />
<br />
ACP &gt; Look / Feel &gt; Skin Manager &gt; (choose skin) &gt; Templates / CSS &gt; Topic View &gt; TopicViewTemplate<br />
<br />
<br />
<strong class='bbc'>Part One</strong>, remove the fast reply box:<br />
<br />
Find...<br />
<pre class='prettyprint'>&lt;if test="fastReply:|:$displayData&#91;'fast_reply'&#93; && $displayData&#91;'reply_button'&#93;&#91;'url'&#93;"&gt;
&lt;hr&gt;
&lt;div class="ipsBox" id="fast_reply_wrapper"&gt;
	&lt;div class="ipsBox_container ipsPad"&gt;
		&lt;h1 class="ipsType_subtitle"&gt;{$this-&gt;lang-&gt;words&#91;'topic_add_reply'&#93;}&lt;/h1&gt;
		&lt;if test="isLockedFR:|:$topic&#91;'state'&#93; == 'closed'"&gt;&lt;span class="error"&gt;{$this-&gt;lang-&gt;words&#91;'locked_reply_fr'&#93;}&lt;/span&gt;
&lt;/if&gt;
		
		&lt;if test="isMember:|:$this-&gt;memberData&#91;'member_id'&#93;"&gt;
			&lt;a href="%7Bparse%20url=" showuser="{$this-"&gt;memberData&#91;'member_id'&#93;}" seotitle="{$this-&gt;memberData&#91;'members_seo_name'&#93;}" template="showuser" base="public"}" title='{$this-&gt;lang-&gt;words&#91;'your_profile'&#93;}' class='ipsUserPhotoLink left'&gt;&lt;img src="%7B$this-%3EmemberData&#91;" pp_small_photo'&#93;}'="" alt="{parse expression=" sprintf($this-=""&gt;lang-&gt;words&#91;'users_photo'&#93;,$this-&gt;memberData&#91;'members_display_name'&#93;)"}" class='ipsUserPhoto ipsUserPhoto_medium' /&gt;&lt;/a&gt;
		&lt;else&gt;
			&lt;div class="left"&gt;{IPSMember::buildNoPhoto(0, 'small' )}&lt;/div&gt;
		&lt;/else&gt;&lt;/if&gt;
		&lt;div class="ipsBox_withphoto clearfix"&gt;
			&lt;form action="{parse url=" "="" base="public" }"="" method="post" id="ips_fastReplyForm"&gt;
				&lt;input name="app" value="forums" type="hidden"&gt;
				&lt;input name="module" value="post" type="hidden"&gt;
				&lt;input name="section" value="post" type="hidden"&gt;
				&lt;input name="do" value="reply_post_do" type="hidden"&gt;
				&lt;input name="f" value="{$forum&#91;'id'&#93;}" type="hidden"&gt;
				&lt;input name="t" value="{$topic&#91;'tid'&#93;}" type="hidden"&gt;
				&lt;input name="st" value="{$this-&gt;request&#91;'st'&#93;}" type="hidden"&gt;
				&lt;input name="auth_key" value="{$this-&gt;member-&gt;form_hash}" type="hidden"&gt;
				&lt;input name="fast_reply_used" value="1" type="hidden"&gt;
				&lt;input name="enableemo" value="yes" type="hidden"&gt;
				&lt;input name="enablesig" value="yes" type="hidden"&gt;
				&lt;if test="$this-&gt;memberData&#91;'auto_track'&#93;"&gt;
					&lt;input name="enabletrack" value="1" type="hidden"&gt;
				&lt;/if&gt;
				&lt;if test="is_array($topic&#91;'_fastReplyStatusMessage'&#93;) AND count($topic&#91;'_fastReplyStatusMessage'&#93;) AND strlen($topic&#91;'_fastReplyStatusMessage'&#93;&#91;0&#93;)"&gt;
					&lt;div class="message"&gt;{parse expression="implode( '
', $topic&#91;'_fastReplyStatusMessage'&#93; )"}&lt;/div&gt;
				&lt;/if&gt;
				{parse editor="Post" options="array( 'type' =&gt; 'full', 'minimize' =&gt; 1, 'isTypingCallBack' =&gt; 'ipb.topic.isTypingCallBack', 'height' =&gt; 180, 'autoSaveKey' =&gt; 'reply-' . $topic&#91;tid&#93; )"}
				
				
				&lt;fieldset class="right" id="fast_reply_controls"&gt;
					&lt;input name="submit" class="input_submit" value="{$this-&gt;lang-&gt;words&#91;" qr_post'&#93;}'="" tabindex="0" accesskey="s" id="submit_post" type="submit"&gt;&nbsp;&nbsp;&lt;input name="preview" class="input_submit alt" value="{$this-&gt;lang-&gt;words&#91;" qr_more_opts'&#93;}'="" tabindex="0" id="full_compose" type="submit"&gt;			
				&lt;/fieldset&gt;
			&lt;/form&gt;
		&lt;/div&gt;
		&lt;div id="ips_HasReplies"&gt;&lt;/div&gt;
	&lt;/div&gt;
&lt;/div&gt;

&lt;else&gt;
	&lt;if test="loadJsManually:|:$displayData&#91;'load_editor_js'&#93;"&gt;
		{parse template="editorLoadJs" group="editors" params="$displayData&#91;'smilies'&#93;"}
	&lt;/if&gt;
&lt;/else&gt;&lt;/if&gt;</pre><br />
<br />
<br />
Comment it out by adding a &lt!-- to the start and a --&gt; to the end (do not remove the code)<br />
<br />
<br />
<strong class='bbc'>Part two</strong>, add 'post reply' to the end of the page.<br />
<br />
Immediately after the code you have removed, you'll see this line:<br />
<pre class='prettyprint'>&lt!-- Close topic --&gt;</pre><br />
<br />
Add the following code just above that 'close topic' line but after the code you commented out:<br />
<br />
<pre class='prettyprint'>	&lt;ul class="topic_buttons"&gt;
		&lt;if test="closedButton:|:$displayData&#91;'reply_button'&#93;&#91;'image'&#93; == 'locked'"&gt;
			&lt;li class="important"&gt;
				&lt;if test="pollOnly:|:isset($displayData&#91;'poll_data'&#93;&#91;'poll'&#93;&#91;'poll_only'&#93;) && $displayData&#91;'poll_data'&#93;&#91;'poll'&#93;&#91;'poll_only'&#93;"&gt;
					&lt;if test="closedButtonLink:|:$displayData&#91;'reply_button'&#93;&#91;'url'&#93;"&gt;
						&lt;a href="%7B$displayData&#91;" reply_button'&#93;&#91;'url'&#93;}'="" accesskey="r"&gt;{parse replacement="lock_icon"} {$this-&gt;lang-&gt;words&#91;'top_poll_only_reply'&#93;}&lt;/a&gt;
					&lt;else&gt;
						&lt;span&gt;{parse replacement="lock_icon"} {$this-&gt;lang-&gt;words&#91;'top_poll_only'&#93;}&lt;/span&gt;
					&lt;/else&gt;&lt;/if&gt;
				&lt;else&gt;
					&lt;if test="closedButtonLink:|:$displayData&#91;'reply_button'&#93;&#91;'url'&#93;"&gt;
						&lt;a href="%7B$displayData&#91;" reply_button'&#93;&#91;'url'&#93;}'="" accesskey="r"&gt;{parse replacement="lock_icon"} {$this-&gt;lang-&gt;words&#91;'top_locked_reply'&#93;}&lt;/a&gt;
					&lt;else&gt;
						&lt;span&gt;{parse replacement="lock_icon"} {$this-&gt;lang-&gt;words&#91;'top_locked'&#93;}&lt;/span&gt;
					&lt;/else&gt;&lt;/if&gt;
				&lt;/else&gt;&lt;/if&gt;
			&lt;/li&gt;
		&lt;else&gt;
			&lt;if test="replyButton:|:$displayData&#91;'reply_button'&#93;&#91;'image'&#93;"&gt;
				&lt;if test="replyButtonLink:|:$displayData&#91;'reply_button'&#93;&#91;'url'&#93;"&gt;
					&lt;li&gt;&lt;a href="%7B$displayData&#91;" reply_button'&#93;&#91;'url'&#93;}'="" title="{$this-&gt;lang-&gt;words&#91;" topic_add_reply'&#93;}'="" accesskey="r"&gt;{$this-&gt;lang-&gt;words&#91;'topic_add_reply'&#93;}&lt;/a&gt;&lt;/li&gt;
				&lt;else&gt;
					&lt;li class="disabled"&gt;&lt;span&gt;{$this-&gt;lang-&gt;words&#91;'top_cannot_reply'&#93;}&lt;/span&gt;&lt;/li&gt;
				&lt;/else&gt;&lt;/if&gt;
			&lt;/if&gt;
		&lt;/else&gt;&lt;/if&gt;
	&lt;/ul&gt;</pre><br />
<br />
Save. <img src='http://community.invisionbyte.net/public/style_emoticons/default/smile.gif' class='bbc_emoticon' alt=':)' /><br />
<br />
Quick pic:<br />
<br />
<img src='http://img.photobucket.com/albums/v294/yellow_spider/ipb_tutorials/disable_fast_reply_323.png' alt='Posted Image' class='bbc_img' />]]></description>
		<pubDate>Tue, 14 Feb 2012 16:06:52 +0000</pubDate>
		<guid isPermaLink="false">169</guid>
		<creator>AndyF</creator>
		<category>5</category>
	</item>
	<item>
		<title>Adjust the log pruning schedule</title>
		<link>http://community.invisionbyte.net/tutorials/article/167-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://community.invisionbyte.net/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 />
<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 />
<br />
<strong class='bbc'>7 days</strong><br />
<pre class='prettyprint'>protected $deleteTime = 604800;</pre><br />
<br />
<strong class='bbc'>3 days</strong><br />
<pre class='prettyprint'>protected $deleteTime = 259200;</pre><br />
<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://community.invisionbyte.net/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:15 +0000</pubDate>
		<guid isPermaLink="false">167</guid>
		<creator>AndyF</creator>
		<category>5</category>
	</item>
	<item>
		<title>3.2.x Public polls by default</title>
		<link>http://community.invisionbyte.net/tutorials/article/166-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 />
<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 />
<br />
Save the change. Repeat for other skins if required. Quick pic:<br />
<br />
<img src='http://img.photobucket.com/albums/v294/yellow_spider/ipb_tutorials/default_public_poll.png' alt='Posted Image' class='bbc_img' />]]></description>
		<pubDate>Sat, 29 Oct 2011 10:51:48 +0000</pubDate>
		<guid isPermaLink="false">166</guid>
		<creator>AndyF</creator>
		<category>5</category>
	</item>
	<item>
		<title>3.2.x Adding joined date to topic view</title>
		<link>http://community.invisionbyte.net/tutorials/article/165-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 />
<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 />
<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 />
<br />
Save. <img src='http://community.invisionbyte.net/public/style_emoticons/default/smile.gif' class='bbc_emoticon' alt=':)' /> Quick pic:<br />
<br />
<img src='http://img.photobucket.com/albums/v294/yellow_spider/ipb_tutorials/joined_date_topic_view.png' alt='Posted Image' class='bbc_img' /><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:27:32 +0000</pubDate>
		<guid isPermaLink="false">165</guid>
		<creator>AndyF</creator>
		<category>5</category>
	</item>
	<item>
		<title>3.2.x Adjusting status update numbers</title>
		<link>http://community.invisionbyte.net/tutorials/article/161-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://community.invisionbyte.net/public/style_emoticons/default/smile.gif' 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 />
<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:32 +0000</pubDate>
		<guid isPermaLink="false">161</guid>
		<creator>AndyF</creator>
		<category>5</category>
	</item>
	<item>
		<title>Customize Like Button in 3.2.0</title>
		<link>http://community.invisionbyte.net/tutorials/article/160-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><br />
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 />
<img src='http://www.invisionita.it/download/like-before.jpg' alt='Posted Image' class='bbc_img' /><br />
<br />
<br />
After:<br />
<img src='http://www.invisionita.it/download/like-after.jpg' alt='Posted Image' class='bbc_img' /><br />
<br />
<br />
--------------------------------------<br />
<br />
Below the 2 images attached]]></description>
		<pubDate>Mon, 25 Jul 2011 13:02:16 +0000</pubDate>
		<guid isPermaLink="false">160</guid>
		<creator>najaru</creator>
		<category>5</category>
	</item>
	<item>
		<title><![CDATA[Autocheck 'leave a link' when moving a topic or topics]]></title>
		<link>http://community.invisionbyte.net/tutorials/article/157-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://community.invisionbyte.net/public/style_emoticons/default/smile.gif' 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 />
<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 />
<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 />
<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 />
<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 />
<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' /><br />
<br />
<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' />]]></description>
		<pubDate>Sun, 24 Jul 2011 14:01:54 +0000</pubDate>
		<guid isPermaLink="false">157</guid>
		<creator>AndyF</creator>
		<category>5</category>
	</item>
	<item>
		<title>Autocheck use first tag as prefix</title>
		<link>http://community.invisionbyte.net/tutorials/article/156-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://community.invisionbyte.net/public/style_emoticons/default/smile.gif' 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 />
<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 />
<br />
Save the change. Repeat for other skins if required. <img src='http://community.invisionbyte.net/public/style_emoticons/default/smile.gif' class='bbc_emoticon' alt=':)' /><br />
<br />
Here's a quick pic anyway:<br />
<br />
<img src='http://img.photobucket.com/albums/v294/yellow_spider/ipb_tutorials/32_first_tag_default_1.png' alt='Posted Image' class='bbc_img' />]]></description>
		<pubDate>Sun, 24 Jul 2011 13:36:22 +0000</pubDate>
		<guid isPermaLink="false">156</guid>
		<creator>AndyF</creator>
		<category>5</category>
	</item>
</channel>
</rss>