<?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: Order Categories in filterable portfolio</title>
		<link>http://www.kriesi.at/support/topic/order-categories-in-filterable-portfolio</link>
		<description>Support Forum - Topic: Order Categories in filterable portfolio</description>
		<language>en-US</language>
		<pubDate>Fri, 24 May 2013 06:02:52 +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/order-categories-in-filterable-portfolio" rel="self" type="application/rss+xml" />

		<item>
			<title>Ismael on "Order Categories in filterable portfolio"</title>
			<link>http://www.kriesi.at/support/topic/order-categories-in-filterable-portfolio#post-74899</link>
			<pubDate>Sat, 08 Sep 2012 05:19:49 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">74899@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;/p&#62;
&#60;p&#62;My bad. I thought you are talking about sorting the portfolio items. Glad you fixed it. :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>simonsticker on "Order Categories in filterable portfolio"</title>
			<link>http://www.kriesi.at/support/topic/order-categories-in-filterable-portfolio#post-74775</link>
			<pubDate>Fri, 07 Sep 2012 11:34:31 +0000</pubDate>
			<dc:creator>simonsticker</dc:creator>
			<guid isPermaLink="false">74775@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I found the fix for that with the plugin 'Category Order and Taxonomy Terms Order'. Does the trick with ease...
&#60;/p&#62;</description>
		</item>
		<item>
			<title>simonsticker on "Order Categories in filterable portfolio"</title>
			<link>http://www.kriesi.at/support/topic/order-categories-in-filterable-portfolio#post-74641</link>
			<pubDate>Thu, 06 Sep 2012 09:13:39 +0000</pubDate>
			<dc:creator>simonsticker</dc:creator>
			<guid isPermaLink="false">74641@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Ok, I think I was a bit unclear here. I need to manually order the sub-menu that allows me to filter the different categories in the filterable portfolio instead of by the name (and not the posts itself). &#60;/p&#62;
&#60;p&#62;Maybe you have an easy tweak for that as well? :-)&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Order Categories in filterable portfolio"</title>
			<link>http://www.kriesi.at/support/topic/order-categories-in-filterable-portfolio#post-74603</link>
			<pubDate>Thu, 06 Sep 2012 02:10:45 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">74603@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Open includes &#38;gt; helper-template-logic.php, find this code&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$avia_config[&#38;#39;new_query&#38;#39;] = array(	&#38;#39;orderby&#38;#39; 	=&#38;gt; &#38;#39;ID&#38;#39;,
												&#38;#39;order&#38;#39; 	=&#38;gt; &#38;#39;ASC&#38;#39;,
												&#38;#39;paged&#38;#39; 	=&#38;gt; get_query_var( &#38;#39;paged&#38;#39; ),
												&#38;#39;posts_per_page&#38;#39; =&#38;gt; $itemcount,
												&#38;#39;tax_query&#38;#39; =&#38;gt; array( 	array( 	&#38;#39;taxonomy&#38;#39; 	=&#38;gt; &#38;#39;portfolio_entries&#38;#39;,
																				&#38;#39;field&#38;#39; 	=&#38;gt; &#38;#39;id&#38;#39;,
																				&#38;#39;terms&#38;#39; 	=&#38;gt; $terms,
																				&#38;#39;operator&#38;#39; 	=&#38;gt; &#38;#39;IN&#38;#39;)));&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Replace it with&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$avia_config[&#38;#39;new_query&#38;#39;] = array(	&#38;#39;orderby&#38;#39; 	=&#38;gt; &#38;#39;ID&#38;#39;,
												&#38;#39;orderby&#38;#39; =&#38;gt; &#38;#39;date&#38;#39;,
                                                                                                &#38;#39;order&#38;#39; 	=&#38;gt; &#38;#39;ASC&#38;#39;,
												&#38;#39;paged&#38;#39; 	=&#38;gt; get_query_var( &#38;#39;paged&#38;#39; ),
												&#38;#39;posts_per_page&#38;#39; =&#38;gt; $itemcount,
												&#38;#39;tax_query&#38;#39; =&#38;gt; array( 	array( 	&#38;#39;taxonomy&#38;#39; 	=&#38;gt; &#38;#39;portfolio_entries&#38;#39;,
																				&#38;#39;field&#38;#39; 	=&#38;gt; &#38;#39;id&#38;#39;,
																				&#38;#39;terms&#38;#39; 	=&#38;gt; $terms,
																				&#38;#39;operator&#38;#39; 	=&#38;gt; &#38;#39;IN&#38;#39;)));&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You can change orderby &#38;amp; order parameters. This link might help. &#60;a href=&#34;http://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>simonsticker on "Order Categories in filterable portfolio"</title>
			<link>http://www.kriesi.at/support/topic/order-categories-in-filterable-portfolio#post-74584</link>
			<pubDate>Wed, 05 Sep 2012 21:05:38 +0000</pubDate>
			<dc:creator>simonsticker</dc:creator>
			<guid isPermaLink="false">74584@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey guys,&#60;br /&#62;
just a small thing in an amazing theme: Is there a way to manually sort the categories in the filterable portfolios instead of having it sorted by the name?&#60;/p&#62;
&#60;p&#62;Thanks in advance!&#60;br /&#62;
Simon
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
