<?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: Portfolio Categories</title>
		<link>http://www.kriesi.at/support/topic/portfolio-categories-1</link>
		<description>Support Forum - Topic: Portfolio Categories</description>
		<language>en-US</language>
		<pubDate>Sun, 26 May 2013 01:38:38 +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/portfolio-categories-1" rel="self" type="application/rss+xml" />

		<item>
			<title>Dude on "Portfolio Categories"</title>
			<link>http://www.kriesi.at/support/topic/portfolio-categories-1#post-28382</link>
			<pubDate>Sun, 02 Oct 2011 08:19:38 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">28382@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
1) No - as far as I know this is not possible without some custom query code. WordPress allows you to order your items by date or title only: &#60;a href=&#34;http://codex.wordpress.org/Function_Reference/query_posts&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Function_Reference/query_posts&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;2) Follow the instructions here: &#60;a href=&#34;http://www.kriesi.at/support/topic/alphabetical-portfolio-order#post-27920&#34; rel=&#34;nofollow&#34;&#62;http://www.kriesi.at/support/topic/alphabetical-portfolio-order#post-27920&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;3) Add following code to css/custom.css:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.sort_by_val{
display: none !important;
}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>griffinyouthman on "Portfolio Categories"</title>
			<link>http://www.kriesi.at/support/topic/portfolio-categories-1#post-28336</link>
			<pubDate>Sat, 01 Oct 2011 13:58:16 +0000</pubDate>
			<dc:creator>griffinyouthman</dc:creator>
			<guid isPermaLink="false">28336@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Broadscope Question 2:&#60;/p&#62;
&#60;p&#62;My previous post is in regards to the order of the portfolio categories menu on the left.&#60;/p&#62;
&#60;p&#62;I also would like to know how to do what this post addressed expect for the Broadscope theme:&#60;br /&#62;
&#60;a href=&#34;http://www.kriesi.at/support/topic/on-portfolio-sorting-remove-datename-sort&#34; rel=&#34;nofollow&#34;&#62;http://www.kriesi.at/support/topic/on-portfolio-sorting-remove-datename-sort&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I would like all of the portfolio posts to be arranged by name by default and also remove the date/name sort option on the bottom of portfolio menu&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>griffinyouthman on "Portfolio Categories"</title>
			<link>http://www.kriesi.at/support/topic/portfolio-categories-1#post-28285</link>
			<pubDate>Fri, 30 Sep 2011 15:14:35 +0000</pubDate>
			<dc:creator>griffinyouthman</dc:creator>
			<guid isPermaLink="false">28285@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Broadscope Question:&#60;/p&#62;
&#60;p&#62;On Portfolio page the portfolio categories menu on the left by default is ordered alphabetically.&#60;br /&#62;
Can you sort the categories in the portfolio alphabetically by the slug name rather than the name of the portfolio category?&#60;br /&#62;
I basically want to specifically order the portfolio categories. &#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Portfolio Categories"</title>
			<link>http://www.kriesi.at/support/topic/portfolio-categories-1#post-843</link>
			<pubDate>Mon, 26 Jul 2010 06:38:12 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">843@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;That can be done by adding a shuffle function to template_portfolio.php.&#60;/p&#62;
&#60;p&#62;Edit: Sorry the line number won't match because I used Avisio template files to solve your problem. But Cleancut and Avisio share many functions and huge parts of the framework, so I think that you'll find the same code in your template_portfolio.php.&#60;/p&#62;
&#60;p&#62;From line 52 to 56 you'll see following code:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;foreach($categories as $category)
	{
	$output .= &#38;quot;&#38;lt;a href=&#38;#39;#&#38;#39;&#38;gt;category_nicename.&#38;quot;_sort&#38;#39;&#38;gt;&#38;quot;.$category-&#38;gt;cat_name.&#38;quot;&#38;lt;/a&#38;gt;&#38;quot;;
	}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;.&#60;/p&#62;
&#60;p&#62;before line 52 paste following code (so before foreach($categories as $category) paste following):&#60;/p&#62;
&#60;p&#62;&#60;code&#62;shuffle($categories);&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;At the end it should look like:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;shuffle($categories);

foreach($categories as $category)
	{
	$output .= &#38;quot;&#38;lt;a href=&#38;#39;#&#38;#39;&#38;gt;category_nicename.&#38;quot;_sort&#38;#39;&#38;gt;&#38;quot;.$category-&#38;gt;cat_name.&#38;quot;&#38;lt;/a&#38;gt;&#38;quot;;
	}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;The function will shuffle the categories and so you'll see them in a random order. Just modify the php file and upload it via FTP to your themes/avisio directory. &#60;/p&#62;
&#60;p&#62;The Dude
&#60;/p&#62;</description>
		</item>
		<item>
			<title>p.schwarz on "Portfolio Categories"</title>
			<link>http://www.kriesi.at/support/topic/portfolio-categories-1#post-826</link>
			<pubDate>Sun, 25 Jul 2010 19:16:25 +0000</pubDate>
			<dc:creator>p.schwarz</dc:creator>
			<guid isPermaLink="false">826@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;i mean the order the sort-by-categories-buttons are displayed
&#60;/p&#62;</description>
		</item>
		<item>
			<title>p.schwarz on "Portfolio Categories"</title>
			<link>http://www.kriesi.at/support/topic/portfolio-categories-1#post-824</link>
			<pubDate>Sun, 25 Jul 2010 19:11:42 +0000</pubDate>
			<dc:creator>p.schwarz</dc:creator>
			<guid isPermaLink="false">824@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;it would be very lovely to get the Portfolio Categories sorted not alphabetically, but in individual order.&#60;br /&#62;
To get a workaround for that, would it be possible to let it get sorted by the timestamp the category was created?&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Patric
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
