<?xml version="1.0" encoding="iso-8859-1" ?>
<rss version="2.0">
<channel>
	<title>Invision Modding - Tutorials</title>
	<link>http://invisionmodding.com/index.php?app=tutorials</link>
	<pubDate>Fri, 25 May 2012 15:44:14 +0000</pubDate>
	<ttl>1800</ttl>
	<description>Tutorials from all available categories.</description>
	<item>
		<title>Parse Templates In Templates</title>
		<link>http://invisionmodding.com/tutorials/article/695-parse-templates-in-templates/</link>
		<description><![CDATA[<strong class='bbc'>STEP 1.)</strong><br />
<br />
Okay, so log into your IPB 3 Admin Panel. Then navigate to the Look & Feel Tab and open the skin you'd like to work with.<br />
<br />
<strong class='bbc'>STEP 2.)</strong><br />
<br />
Create a custom template by clicking on <strong class='bbc'>Add New Bit</strong> (located at the left side)<br />
<br />
<a class='resized_img' rel='lightbox[695]' id='ipb-attach-url-5077-0-23680000-1337960654' href="http://invisionmodding.com/index.php?app=core&module=attach&section=attach&attach_rel_module=tutorials&attach_id=5077" title="screenie.png - Size: 11.84K, Downloads: 78"><img itemprop="image" src="http://netdna.invisionmodding.com/uploads/monthly_03_2012/tutorials-22144-0-47833200-1333212220_thumb.png" id='ipb-attach-img-5077-0-23680000-1337960654' style='width:100;height:47' class='attach' width="100" height="47" alt="screenie.png" /></a>
<br />
<br />
<strong class='bbc'>STEP 3.)</strong><br />
<br />
You will have to choose where you'd like to create the Template, in a group already existing like Global Templates or your own.<br />
<br />
For this example, we will be making a template in Global Templates and you will need to select skin_global from the dropdown menu.<br />
<br />
<strong class='bbc'>Parse Templates In Templates:</strong><br />
<br />
<pre class='prettyprint'>
{parse template="CHAT" group="global" params=""}
</pre>
<br />
<strong class='bbc'>STEP 3.)</strong><br />
<br />
Naturally, replace CHAT with your template bit name and global with your template group name.<br />
<br />
<strong class='bbc'>TIPS.)</strong><br />
<br />
This is really great for organizing your skin changes, especially for upgrades because they will not touch your custom templates!]]></description>
		<pubDate>Sat, 31 Mar 2012 16:43:50 +0000</pubDate>
		<guid isPermaLink="false">695</guid>
		<creator>Nevo</creator>
		<category>27</category>
	</item>
	<item>
		<title>If Member Statement</title>
		<link>http://invisionmodding.com/tutorials/article/694-if-member-statement/</link>
		<description><![CDATA[<strong class='bbc'>STEP 1.)</strong><br />
<br />
Okay, so log into your IPB 3 Admin Panel. Then navigate to the Look & Feel Tab and go into the Style you want to edit.<br />
<br />
<strong class='bbc'>STEP 2.)</strong><br />
<br />
Now, this Member statement can be used in many ways. You can use it in HTML tables and boxes or you can use in links.<br />
<br />
<strong class='bbc'>Use this IF Statement For HTML:</strong><br />
<br />
<pre class='prettyprint'>

	&lt;if test="memberbox:|:$this-&gt;memberData&#91;'member_id'&#93;"&gt;
	&lt;div class='logged_in'&gt;

	*REPLACE THIS LINE*

	&lt;/div&gt;
	&lt;/if&gt;
</pre>
<br />
<strong class='bbc'>Use this IF Statement For Links:</strong><br />
<br />
<pre class='prettyprint'>

	&lt;if test="memberbox:|:$this-&gt;memberData&#91;'member_id'&#93;"&gt;
	&lt;a href='#' class='logged_in'&gt;

	*REPLACE THIS LINE*

	&lt;/a&gt;
	&lt;/if&gt;
</pre>
<br />
<strong class='bbc'>STEP 3.)</strong><br />
<br />
Naturally, replace the content in *REPLACE THIS LINE* with your desired Content and desired HTML.<br />
<br />
<strong class='bbc'>TIPS.)</strong><br />
<br />
This line of coding is useful for guest messages and registration links, help files, stuff like that.]]></description>
		<pubDate>Sat, 31 Mar 2012 16:42:49 +0000</pubDate>
		<guid isPermaLink="false">694</guid>
		<creator>Nevo</creator>
		<category>25</category>
	</item>
	<item>
		<title>Adding member number to topic view</title>
		<link>http://invisionmodding.com/tutorials/article/693-adding-member-number-to-topic-view/</link>
		<description><![CDATA[Here's a quick article on how to restore the Member Number to topic view. <img src='http://netdna.invisionmodding.com//public/style_emoticons/default/smile.png' 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 />
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 />
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 />
Save. <img src='http://netdna.invisionmodding.com//public/style_emoticons/default/smile.png' class='bbc_emoticon' alt=':)' /><br />
<br />
Quick pic:<br />
<br />
<span rel='lightbox'><img src='http://img.photobucket.com/albums/v294/yellow_spider/ipb_tutorials/member_id_topic_view.png' alt='Posted Image' class='bbc_img' /></span>]]></description>
		<pubDate>Wed, 15 Feb 2012 15:56:59 +0000</pubDate>
		<guid isPermaLink="false">693</guid>
		<creator>AndyF</creator>
		<category>25</category>
	</item>
	<item>
		<title>Disable Fast Reply</title>
		<link>http://invisionmodding.com/tutorials/article/692-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. <span rel='lightbox'><img src='http://netdna.invisionmodding.com//public/style_emoticons/default/smile.png' alt='Posted Image' class='bbc_img' /></span><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;br /&gt;&lt;/if&gt;
		&lt;br /&gt;
		&lt;if test="isMember:|:$this-&gt;memberData&#91;'member_id'&#93;"&gt;
			&lt;a href="{parse url="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='{$this-&gt;memberData&#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;/if&gt;
		&lt;div class='ipsBox_withphoto clearfix'&gt;
			&lt;form action="{parse url="" base="public"}" method="post" id='ips_fastReplyForm'&gt;
				&lt;input type="hidden" name="app" value="forums" /&gt;
				&lt;input type="hidden" name="module" value="post" /&gt;
				&lt;input type="hidden" name="section" value="post" /&gt;
				&lt;input type="hidden" name="do" value="reply_post_do" /&gt;
				&lt;input type="hidden" name="f" value="{$forum&#91;'id'&#93;}" /&gt;
				&lt;input type="hidden" name="t" value="{$topic&#91;'tid'&#93;}" /&gt;
				&lt;input type="hidden" name="st" value="{$this-&gt;request&#91;'st'&#93;}" /&gt;
				&lt;input type="hidden" name="auth_key" value="{$this-&gt;member-&gt;form_hash}" /&gt;
				&lt;input type="hidden" name="fast_reply_used" value="1" /&gt;
				&lt;input type="hidden" name="enableemo" value="yes" /&gt;
				&lt;input type="hidden" name="enablesig" value="yes" /&gt;
				&lt;if test="$this-&gt;memberData&#91;'auto_track'&#93;"&gt;
					&lt;input type="hidden" name="enabletrack" value="1" /&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( '&lt;br /&gt;', $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;br /&gt;
				
				&lt;fieldset class='right' id='fast_reply_controls'&gt;
					&lt;input type='submit' name="submit" class='input_submit' value='{$this-&gt;lang-&gt;words&#91;'qr_post'&#93;}' tabindex='0' accesskey='s' id='submit_post' /&gt;&nbsp;&nbsp;&lt;input type='submit' name="preview" class='input_submit alt' value='{$this-&gt;lang-&gt;words&#91;'qr_more_opts'&#93;}' tabindex='0' id='full_compose' /&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;script type='text/javascript'&gt;
	ipb.topic.fastReplyId	= '{$this-&gt;settings&#91;'_lastEditorId'&#93;}';
&lt;/script&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;/if&gt;</pre>
<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 />
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='{$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;/if&gt;
				&lt;else /&gt;
					&lt;if test="closedButtonLink:|:$displayData&#91;'reply_button'&#93;&#91;'url'&#93;"&gt;
						&lt;a href='{$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;/if&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='{$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;/if&gt;
			&lt;/if&gt;
		&lt;/if&gt;
	&lt;/ul&gt;</pre>
<br />
Save. <span rel='lightbox'><img src='http://netdna.invisionmodding.com//public/style_emoticons/default/smile.png' alt='Posted Image' class='bbc_img' /></span><br />
<br />
Quick pic:<br />
<br />
<span rel='lightbox'><img src='http://img.photobucket.com/albums/v294/yellow_spider/ipb_tutorials/disable_fast_reply_323.png' alt='Posted Image' class='bbc_img' /></span>]]></description>
		<pubDate>Tue, 14 Feb 2012 15:53:54 +0000</pubDate>
		<guid isPermaLink="false">692</guid>
		<creator>AndyF</creator>
		<category>25</category>
	</item>
	<item>
		<title>Center Replies and Posts Automatically</title>
		<link>http://invisionmodding.com/tutorials/article/691-center-replies-and-posts-automatically/</link>
		<description><![CDATA[<strong class='bbc'><span style='color: #FF0000'><span style='font-size: 14px;'>Center Replies and Posts Automatically</span></span></strong><br />
<br />
<strong class='bbc'><span style='color: #FF0000'><span style='font-size: 14px;'>make any post in the center simple </span></span></strong><br />
<br />
<strong class='bbc'><span style='color: #FF0000'><span style='font-size: 14px;'>log in ur acp :</span></span></strong><br />
<br />
<strong class='bbc'><span style='color: #FF0000'><span style='font-size: 14px;'>and go to look and feel</span></span></strong><br />
<br />
<strong class='bbc'><span style='color: #FF0000'><span style='font-size: 14px;'>chose ur style </span></span></strong><br />
<br />
<strong class='bbc'><span style='color: #FF0000'><span style='font-size: 14px;'>open style css and find :</span></span></strong><br />
<br />
<strong class='bbc'><span style='color: #FF0000'><span style='font-size: 14px;'><pre class='prettyprint'>
.postcolor{
</pre></span></span></strong><br />
<br />
<strong class='bbc'><span style='color: #FF0000'><span style='font-size: 14px;'>add Below :</span></span></strong><br />
<br />
<strong class='bbc'><span style='color: #FF0000'><span style='font-size: 14px;'><pre class='prettyprint'>
text-align: center;</pre></span></span></strong><br />
<br />
<strong class='bbc'><span style='color: #FF0000'><span style='font-size: 14px;'>save and reload ur css ...</span></span></strong><br />
<br />
<strong class='bbc'><span style='color: #FF0000'><span style='font-size: 14px;'>and any new posts or replies will be centerd <span rel='lightbox'><img src='http://netdna.invisionmodding.com//public/style_emoticons/default/wink.png' alt='Posted Image' class='bbc_img' /></span></span></span></strong><br />
<br />
<strong class='bbc'><span style='color: #FF0000'><span style='font-size: 14px;'>Dr.Ahmed </span></span></strong>]]></description>
		<pubDate>Tue, 03 Jan 2012 20:20:06 +0000</pubDate>
		<guid isPermaLink="false">691</guid>
		<creator>esho</creator>
		<category>13</category>
	</item>
	<item>
		<title><![CDATA[Add Basmalah's to each new topic]]></title>
		<link>http://invisionmodding.com/tutorials/article/690-add-basmalahs-to-each-new-topic/</link>
		<description><![CDATA[Add Basmalah's to each new topic<br />
<br />
&#1575;&#1590;&#1575;&#1601;&#1577; &#1575;&#1604;&#1576;&#1587;&#1605;&#1604;&#1577; &#1575;&#1593;&#1604;&#1609; &#1575;&#1604;&#1605;&#1608;&#1590;&#1608;&#1593; &#1601;&#1610; &#1603;&#1604; &#1605;&#1608;&#1590;&#1608;&#1593; &#1580;&#1583;&#1610;&#1583;<br />
<br />
open file :<br />
<br />
sources/classes/post/class_post.php<br />
<br />
search in compile_post()<br />
<br />
Find :<br />
<br />
<pre class='prettyprint'>$this-&gt;ipsclass-&gt;input&#91;'Post'&#93; = $this-&gt;han_editor-&gt;process_raw_post( 'Post' );</pre>
<br />
<br />
add below :<br />
<br />
<pre class='prettyprint'>if ($this-&gt;ipsclass-&gt;input&#91;'CODE'&#93; == '01')
		{
		   
		   $basmala = "&lt;center&gt; &lt;img src=&#092;"bismillah.gif&#092;" width=&#092;"254&#092;" height=&#092;"154&#092;" /&gt; &lt;/center&gt;&lt;br&gt;&lt;br&gt;";
		   $basmala .= $this-&gt;ipsclass-&gt;input&#91;'Post'&#93;;
		   $this-&gt;ipsclass-&gt;input&#91;'Post'&#93; = $basmala;
		}</pre>
<br />
<br />
you can change the image height and width by changing this section <br />
<br />
<span style='color: #FF0000'>width=&#092;"254&#092;" height=&#092;"154&#092;"</span><br />
<br />
and you can add any image you want <img src='http://invisionmodding.com/public/style_emoticons/default/smile.gif' class='bbc_emoticon' alt=':)' /> by changing this section<br />
<br />
<span style='color: #FF0000'>img src=&#092;"bismillah.gif&#092;</span><br />
<br />
screen shot<br />
<br />
<span rel='lightbox'><img src='http://img703.imageshack.us/img703/7536/bsm.jpg' alt='Posted Image' class='bbc_img' /></span><br />
<br />
enjoy ....<br />
<br />
<span style='color: #FF0000'>Dr.Ahmed</span>]]></description>
		<pubDate>Sun, 04 Dec 2011 16:26:36 +0000</pubDate>
		<guid isPermaLink="false">690</guid>
		<creator>esho</creator>
		<category>13</category>
	</item>
	<item>
		<title>Animated snow in forum</title>
		<link>http://invisionmodding.com/tutorials/article/689-animated-snow-in-forum/</link>
		<description><![CDATA[If you want animated snow in all of your forum (useful for north globe hemisphere in this season) , download this javascript:<br />
<a href='http://www.schillmania.com/projects/snowstorm/' class='bbc_url' title='External link' rel='nofollow external'>http://www.schillman...ects/snowstorm/</a><br />
unzip it.<br />
<br />
rename the main downloaded folder in "snow"<br />
<br />
upload this folder via FTP in your skin folder (public/style_images/master or other skin)<br />
<br />
<br />
ACP &gt; Look & Feel &gt; Manage Skin Sets & Templates &gt; select your skin &gt; Global Templates &gt; globalTemplate<br />
<br />
and add just before the close of tag&nbsp;&nbsp;/head this code<br />
<br />
<pre class='prettyprint'>&lt;script src="{$this-&gt;settings&#91;'img_url'&#93;}/snow/snowstorm.js"&gt;&lt;/script&gt;</pre>
<br />
<br />
Live preview for 1 month&nbsp;&nbsp;http://www.invisionita.it/forum]]></description>
		<pubDate>Fri, 02 Dec 2011 08:31:25 +0000</pubDate>
		<guid isPermaLink="false">689</guid>
		<creator>najaru</creator>
		<category>25</category>
	</item>
	<item>
		<title>Add one or more custom block in sidebar</title>
		<link>http://invisionmodding.com/tutorials/article/688-add-one-or-more-custom-block-in-sidebar/</link>
		<description><![CDATA[As you all know you can add some automatic or custom content&nbsp;&nbsp;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='External link' rel='nofollow external'>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&nbsp;&nbsp;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 />
Find 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://invisionmodding.com/public/style_emoticons/default/smile.gif' class='bbc_emoticon' alt=':)' />]]></description>
		<pubDate>Mon, 07 Nov 2011 07:44:50 +0000</pubDate>
		<guid isPermaLink="false">688</guid>
		<creator>najaru</creator>
		<category>25</category>
	</item>
	<item>
		<title>Adjust the log pruning schedule</title>
		<link>http://invisionmodding.com/tutorials/article/687-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://invisionmodding.com/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://invisionmodding.com/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:27:52 +0000</pubDate>
		<guid isPermaLink="false">687</guid>
		<creator>AndyF</creator>
		<category>25</category>
	</item>
	<item>
		<title>Public polls by default</title>
		<link>http://invisionmodding.com/tutorials/article/686-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:53:48 +0000</pubDate>
		<guid isPermaLink="false">686</guid>
		<creator>AndyF</creator>
		<category>25</category>
	</item>
</channel>
</rss>
