<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Support Forum - Topic: Creat 5 or 6 columns portfolio</title>
		<link>http://www.kriesi.at/support/topic/creat-5-or-6-columns-portfolio</link>
		<description>Support Forum - Topic: Creat 5 or 6 columns portfolio</description>
		<language>en-US</language>
		<pubDate>Mon, 20 May 2013 15:15:43 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.kriesi.at/support/search.php</link>
		</textInput>
		<atom:link href="http://www.kriesi.at/support/rss/topic/creat-5-or-6-columns-portfolio" rel="self" type="application/rss+xml" />

		<item>
			<title>mrpnkt on "Creat 5 or 6 columns portfolio"</title>
			<link>http://www.kriesi.at/support/topic/creat-5-or-6-columns-portfolio#post-91190</link>
			<pubDate>Fri, 11 Jan 2013 20:09:33 +0000</pubDate>
			<dc:creator>mrpnkt</dc:creator>
			<guid isPermaLink="false">91190@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;&#60;code&#62;&#60;br /&#62;
switch($avia_config['portfolio']['portfolio_columns'])&#60;br /&#62;
	{&#60;br /&#62;
		case &#34;1&#34;: $grid = 'fullwidth';  $image_size = 'fullsize'; break;&#60;br /&#62;
		case &#34;2&#34;: $grid = 'one_half';   break;&#60;br /&#62;
		case &#34;3&#34;: $grid = 'one_third';  break;&#60;br /&#62;
		// case &#34;4&#34;: $grid = 'one_fourth'; $image_size = 'portfolio_small'; break;&#60;br /&#62;
		case &#34;4&#34;: $grid = 'one_fifth'; $image_size = 'portfolio_small'; break;&#60;br /&#62;
	}&#60;br /&#62;
&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;worked for me. i had to remove the case &#34;4&#34;: $grid = 'one_fourth'; $image_size = 'portfolio_small'; break;&#60;/p&#62;
&#60;p&#62;thank you!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Creat 5 or 6 columns portfolio"</title>
			<link>http://www.kriesi.at/support/topic/creat-5-or-6-columns-portfolio#post-91100</link>
			<pubDate>Fri, 11 Jan 2013 08:06:21 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">91100@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;You can do what Devin said and it will work with a minor alteration for coherence. &#60;/p&#62;
&#60;p&#62;Open includes&#38;gt;admin&#38;gt;register-admin-options.php, find this code &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;quot;subtype&#38;quot; =&#38;gt; array(	&#38;#39;1 Column&#38;#39;=&#38;gt;&#38;#39;1&#38;#39;,
													&#38;#39;2 Columns&#38;#39;=&#38;gt;&#38;#39;2&#38;#39;,
													&#38;#39;3 Columns&#38;#39;=&#38;gt;&#38;#39;3&#38;#39;,
													&#38;#39;4 Columns&#38;#39;=&#38;gt;&#38;#39;4&#38;#39;,
													)),&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Replace it with this&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;quot;subtype&#38;quot; =&#38;gt; array(	&#38;#39;1 Column&#38;#39;=&#38;gt;&#38;#39;1&#38;#39;,
													&#38;#39;2 Columns&#38;#39;=&#38;gt;&#38;#39;2&#38;#39;,
													&#38;#39;3 Columns&#38;#39;=&#38;gt;&#38;#39;3&#38;#39;,
													&#38;#39;4 Columns&#38;#39;=&#38;gt;&#38;#39;4&#38;#39;,
													&#38;#39;5 Columns&#38;#39;=&#38;gt;&#38;#39;5&#38;#39;
													)),&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;On your loop-portfolio.php, find this code&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;switch($avia_config[&#38;#39;portfolio&#38;#39;][&#38;#39;portfolio_columns&#38;#39;])
	{
		case &#38;quot;1&#38;quot;: $grid = &#38;#39;fullwidth&#38;#39;;  $image_size = &#38;#39;fullsize&#38;#39;; break;
		case &#38;quot;2&#38;quot;: $grid = &#38;#39;one_half&#38;#39;;   break;
		case &#38;quot;3&#38;quot;: $grid = &#38;#39;one_third&#38;#39;;  break;
		case &#38;quot;4&#38;quot;: $grid = &#38;#39;one_fourth&#38;#39;; $image_size = &#38;#39;portfolio_small&#38;#39;; break;
	}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Replace it with this.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;switch($avia_config[&#38;#39;portfolio&#38;#39;][&#38;#39;portfolio_columns&#38;#39;])
	{
		case &#38;quot;1&#38;quot;: $grid = &#38;#39;fullwidth&#38;#39;;  $image_size = &#38;#39;fullsize&#38;#39;; break;
		case &#38;quot;2&#38;quot;: $grid = &#38;#39;one_half&#38;#39;;   break;
		case &#38;quot;3&#38;quot;: $grid = &#38;#39;one_third&#38;#39;;  break;
		case &#38;quot;4&#38;quot;: $grid = &#38;#39;one_fourth&#38;#39;; $image_size = &#38;#39;portfolio_small&#38;#39;; break;
		case &#38;quot;4&#38;quot;: $grid = &#38;#39;one_fifth&#38;#39;; $image_size = &#38;#39;portfolio_small&#38;#39;; break;
	}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Now you can choose the 5 column on Theme Options &#38;gt; Portfolio.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>mrpnkt on "Creat 5 or 6 columns portfolio"</title>
			<link>http://www.kriesi.at/support/topic/creat-5-or-6-columns-portfolio#post-91053</link>
			<pubDate>Thu, 10 Jan 2013 21:17:46 +0000</pubDate>
			<dc:creator>mrpnkt</dc:creator>
			<guid isPermaLink="false">91053@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;hello. maybe i can ask my question here, since this topic is already open. i want to do the exact same thing for coherence. shouldn't matter since its based on avia too, right? however.. i made the changes and it doesn't work for me. no errors, but no 5th column option showing up either.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Creat 5 or 6 columns portfolio"</title>
			<link>http://www.kriesi.at/support/topic/creat-5-or-6-columns-portfolio#post-89574</link>
			<pubDate>Wed, 02 Jan 2013 16:27:56 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">89574@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi BenWorx,&#60;/p&#62;
&#60;p&#62;You can add an option for a 5 column portfolio when creating portfolios with the Theme Options&#38;gt;Portfolio but not 6 columns.&#60;/p&#62;
&#60;p&#62;In your theme files open includes&#38;gt;admin&#38;gt;register-admin-options.php . Look for:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;quot;subtype&#38;quot; =&#38;gt; array(	&#38;#39;1 Column&#38;#39;=&#38;gt;&#38;#39;1&#38;#39;,
													&#38;#39;2 Columns&#38;#39;=&#38;gt;&#38;#39;2&#38;#39;,
													&#38;#39;3 Columns&#38;#39;=&#38;gt;&#38;#39;3&#38;#39;,
													&#38;#39;4 Columns&#38;#39;=&#38;gt;&#38;#39;4&#38;#39;,
													)),&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;replace it with:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;quot;subtype&#38;quot; =&#38;gt; array(	&#38;#39;1 Column&#38;#39;=&#38;gt;&#38;#39;1&#38;#39;,
													&#38;#39;2 Columns&#38;#39;=&#38;gt;&#38;#39;2&#38;#39;,
													&#38;#39;3 Columns&#38;#39;=&#38;gt;&#38;#39;3&#38;#39;,
													&#38;#39;4 Columns&#38;#39;=&#38;gt;&#38;#39;4&#38;#39;,
													&#38;#39;5 Columns&#38;#39;=&#38;gt;&#38;#39;5&#38;#39;,
													)),&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Save the file back on the server in the same spot and then open includes&#38;gt;loop-portfolio.php and look for:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;switch($avia_config[&#38;#39;portfolio_columns&#38;#39;])
	{
		case &#38;quot;1&#38;quot;: $grid = &#38;#39;fullwidth&#38;#39;;  $image_size = &#38;#39;fullsize&#38;#39;; break;
		case &#38;quot;2&#38;quot;: $grid = &#38;#39;one_half&#38;#39;;   break;
		case &#38;quot;3&#38;quot;: $grid = &#38;#39;one_third&#38;#39;;  break;
		case &#38;quot;4&#38;quot;: $grid = &#38;#39;one_fourth&#38;#39;; break;
	}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;replace it with:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;switch($avia_config[&#38;#39;portfolio_columns&#38;#39;])
	{
		case &#38;quot;1&#38;quot;: $grid = &#38;#39;fullwidth&#38;#39;;  $image_size = &#38;#39;fullsize&#38;#39;; break;
		case &#38;quot;2&#38;quot;: $grid = &#38;#39;one_half&#38;#39;;   break;
		case &#38;quot;3&#38;quot;: $grid = &#38;#39;one_third&#38;#39;;  break;
		case &#38;quot;4&#38;quot;: $grid = &#38;#39;one_fourth&#38;#39;; break;
		case &#38;quot;5&#38;quot;: $grid = &#38;#39;one_fifth&#38;#39;; break;
	}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Now you can choose 5 columns when creating portfolio pages in the Theme Options&#38;gt;Portfolio page. Tested on Updated live installation just now as well.&#60;/p&#62;
&#60;p&#62;Make sure that when doing any updates to the theme you backup these files so you can re-apply the changes.&#60;/p&#62;
&#60;p&#62;Six column isn't possible as it isn't already coded into the grid framework. You would need to create all the column css for it if you really needed 6 columns.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>BenWorx on "Creat 5 or 6 columns portfolio"</title>
			<link>http://www.kriesi.at/support/topic/creat-5-or-6-columns-portfolio#post-89544</link>
			<pubDate>Wed, 02 Jan 2013 12:29:26 +0000</pubDate>
			<dc:creator>BenWorx</dc:creator>
			<guid isPermaLink="false">89544@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi tehre,&#60;/p&#62;
&#60;p&#62;Is it possible to create a 5 or 6 column portfolio? &#60;/p&#62;
&#60;p&#62;Thank you!
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
