<?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: Latest Portfolio Widget: Random order</title>
		<link>http://www.kriesi.at/support/topic/latest-portfolio-widget-random-order</link>
		<description>Support Forum - Topic: Latest Portfolio Widget: Random order</description>
		<language>en-US</language>
		<pubDate>Sat, 25 May 2013 20:17:17 +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/latest-portfolio-widget-random-order" rel="self" type="application/rss+xml" />

		<item>
			<title>Beholder123 on "Latest Portfolio Widget: Random order"</title>
			<link>http://www.kriesi.at/support/topic/latest-portfolio-widget-random-order#post-79573</link>
			<pubDate>Fri, 12 Oct 2012 19:37:39 +0000</pubDate>
			<dc:creator>Beholder123</dc:creator>
			<guid isPermaLink="false">79573@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Perfect!&#60;/p&#62;
&#60;p&#62;You guys rock!&#60;/p&#62;
&#60;p&#62;Thank you very much,&#60;br /&#62;
Andi
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Latest Portfolio Widget: Random order"</title>
			<link>http://www.kriesi.at/support/topic/latest-portfolio-widget-random-order#post-79540</link>
			<pubDate>Fri, 12 Oct 2012 12:02:37 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">79540@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I think I found the issue - it's framework/widget class related and I'll ask Kriesi to look into it. For now you can try following - replace following code in eunoia\framework\php\class-framework-widgets.php&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;$new_query = array(	&#38;quot;posts_per_page&#38;quot;=&#38;gt;$count, &#38;#39;tax_query&#38;#39; =&#38;gt; array(
													array( &#38;#39;taxonomy&#38;#39; =&#38;gt; $this-&#38;gt;avia_term,
														   &#38;#39;field&#38;#39; =&#38;gt; &#38;#39;id&#38;#39;,
														   &#38;#39;terms&#38;#39; =&#38;gt; explode(&#38;#39;,&#38;#39;, $cat),
														   &#38;#39;operator&#38;#39; =&#38;gt; &#38;#39;IN&#38;#39;)
														  )
													);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;with:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$orderby = ($this-&#38;gt;avia_term == &#38;#39;portfolio_entries&#38;#39;) ? &#38;#39;rand&#38;#39; : &#38;#39;date&#38;#39;;
					$new_query = array(	&#38;quot;posts_per_page&#38;quot;=&#38;gt;$count, &#38;#39;orderby&#38;#39; =&#38;gt; $orderby, &#38;#39;tax_query&#38;#39; =&#38;gt; array(
													array( &#38;#39;taxonomy&#38;#39; =&#38;gt; $this-&#38;gt;avia_term,
														   &#38;#39;field&#38;#39; =&#38;gt; &#38;#39;id&#38;#39;,
														   &#38;#39;terms&#38;#39; =&#38;gt; explode(&#38;#39;,&#38;#39;, $cat),
														   &#38;#39;operator&#38;#39; =&#38;gt; &#38;#39;IN&#38;#39;)
														  )
													);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Don't forget to revert the change(s) we provided in the last posts.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Beholder123 on "Latest Portfolio Widget: Random order"</title>
			<link>http://www.kriesi.at/support/topic/latest-portfolio-widget-random-order#post-79538</link>
			<pubDate>Fri, 12 Oct 2012 11:22:53 +0000</pubDate>
			<dc:creator>Beholder123</dc:creator>
			<guid isPermaLink="false">79538@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;With this code I am getting the empty widget again.&#60;/p&#62;
&#60;p&#62;I am really sorry that I am keeping you that busy - thank you very much for your effort.&#60;/p&#62;
&#60;p&#62;Best regards&#60;br /&#62;
Andi
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Latest Portfolio Widget: Random order"</title>
			<link>http://www.kriesi.at/support/topic/latest-portfolio-widget-random-order#post-79508</link>
			<pubDate>Fri, 12 Oct 2012 06:32:44 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">79508@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Try following code instead:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$this-&#38;gt;avia_new_query  =
	array(&#38;#39;showposts&#38;#39; =&#38;gt; $count,
			&#38;#39;orderby&#38;#39;=&#38;gt; &#38;#39;rand&#38;#39;,
			&#38;#39;tax_query&#38;#39; =&#38;gt; array(
            	array( &#38;#39;taxonomy&#38;#39; =&#38;gt; $this-&#38;gt;avia_term,
						&#38;#39;field&#38;#39; =&#38;gt; &#38;#39;id&#38;#39;,
						&#38;#39;terms&#38;#39; =&#38;gt; explode(&#38;#39;,&#38;#39;, $cat),
					&#38;#39;operator&#38;#39; =&#38;gt; &#38;#39;IN&#38;#39;
	 			)
    		),
			&#38;#39;post_type&#38;#39; =&#38;gt; array(&#38;#39;portfolio&#38;#39;)
		);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Now you're able to use the widget settings to adjust the number of posts, categories, etc.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Beholder123 on "Latest Portfolio Widget: Random order"</title>
			<link>http://www.kriesi.at/support/topic/latest-portfolio-widget-random-order#post-79468</link>
			<pubDate>Thu, 11 Oct 2012 19:47:07 +0000</pubDate>
			<dc:creator>Beholder123</dc:creator>
			<guid isPermaLink="false">79468@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thank you very much! This seems to work, I can see random entries now.&#60;/p&#62;
&#60;p&#62;However, there are some issues remaining:&#60;/p&#62;
&#60;p&#62;My aim is to show two widgets: 1 showing 2 posts from category A, and 1 showing 4 posts from category B.&#60;br /&#62;
- Only one entry per widget is shown.&#60;br /&#62;
- Both widgets are showing both categories.&#60;br /&#62;
- Even private entrys are shown.&#60;/p&#62;
&#60;p&#62;Besides this, it's working great!&#60;/p&#62;
&#60;p&#62;I hope we can solve these minor issues finally.&#60;/p&#62;
&#60;p&#62;Thank you&#60;br /&#62;
Andi
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Latest Portfolio Widget: Random order"</title>
			<link>http://www.kriesi.at/support/topic/latest-portfolio-widget-random-order#post-79436</link>
			<pubDate>Thu, 11 Oct 2012 15:28:44 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">79436@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Tried and tested. Please follow the steps in Dude's original reply regarding where to paste the code below:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;$this-&#38;gt;avia_new_query  = (array(&#38;#39;showposts&#38;#39; =&#38;gt; 1, &#38;#39;orderby&#38;#39;=&#38;gt; &#38;#39;rand&#38;#39;, &#38;#39;post_type&#38;#39; =&#38;gt; array(&#38;#39;portfolio&#38;#39;)));&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Please keep refreshing page, even if five in a row appear the same. Sometimes randomness can look quite static.&#60;/p&#62;
&#60;p&#62;I even made a commemorative video to document this achievement  - &#60;a href=&#34;https://docs.google.com/open?id=0B8hqGBMSfHtKdk4xbmlXdXYyRDg&#34; rel=&#34;nofollow&#34;&#62;https://docs.google.com/open?id=0B8hqGBMSfHtKdk4xbmlXdXYyRDg&#60;/a&#62; -  (for some reason nothing was working for the longest time).&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Latest Portfolio Widget: Random order"</title>
			<link>http://www.kriesi.at/support/topic/latest-portfolio-widget-random-order#post-79347</link>
			<pubDate>Thu, 11 Oct 2012 04:03:51 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">79347@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Please try to remove browser history and cache. I have no more idea what to do. Let me tag the rest of the support team.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Beholder123 on "Latest Portfolio Widget: Random order"</title>
			<link>http://www.kriesi.at/support/topic/latest-portfolio-widget-random-order#post-79308</link>
			<pubDate>Wed, 10 Oct 2012 20:57:51 +0000</pubDate>
			<dc:creator>Beholder123</dc:creator>
			<guid isPermaLink="false">79308@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I hate to say, but there is still no random display.&#60;/p&#62;
&#60;p&#62;How can we figure this out?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Latest Portfolio Widget: Random order"</title>
			<link>http://www.kriesi.at/support/topic/latest-portfolio-widget-random-order#post-79187</link>
			<pubDate>Wed, 10 Oct 2012 05:51:00 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">79187@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi.&#60;/p&#62;
&#60;p&#62;This code is included on AVIA NEWSBOX section, find this code&#60;/p&#62;
&#60;p&#62;&#60;code&#62;$new_query = array(&#38;quot;posts_per_page&#38;quot;=&#38;gt;$count,&#38;quot;post_type&#38;quot;=&#38;gt;$this-&#38;gt;avia_post_type);&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Then replace it with this.&#60;/p&#62;
&#60;p&#62;&#60;code&#62;$new_query = array(&#38;quot;posts_per_page&#38;quot;=&#38;gt;$count,&#38;quot;post_type&#38;quot;=&#38;gt;$this-&#38;gt;avia_post_type,&#38;quot;orderby&#38;quot;=&#38;gt;&#38;quot;rand&#38;quot;);&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Remove browser cache then reload the page 3-5 times and see if it works. It works in my end.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Beholder123 on "Latest Portfolio Widget: Random order"</title>
			<link>http://www.kriesi.at/support/topic/latest-portfolio-widget-random-order#post-79161</link>
			<pubDate>Tue, 09 Oct 2012 19:37:14 +0000</pubDate>
			<dc:creator>Beholder123</dc:creator>
			<guid isPermaLink="false">79161@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Guys, I am feeling very sorry, but I still can't see anything ;-)&#60;/p&#62;
&#60;p&#62;I am replacing&#60;br /&#62;
$this-&#38;gt;avia_new_query = ''; //set a custom query here&#60;br /&#62;
in the Avia Portfoliobox section. Is that correct?&#60;/p&#62;
&#60;p&#62;Regards&#60;br /&#62;
Andi
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Latest Portfolio Widget: Random order"</title>
			<link>http://www.kriesi.at/support/topic/latest-portfolio-widget-random-order#post-79029</link>
			<pubDate>Mon, 08 Oct 2012 20:58:56 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">79029@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Never fear, we almost have it right where we want it. Please try this:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;$this-&#38;gt;avia_new_query=array(
    &#38;#39;orderby&#38;#39; =&#38;gt; &#38;#39;rand&#38;#39;,
    &#38;#39;posts_per_page&#38;#39; =&#38;gt; -1,
    &#38;#39;post_type&#38;#39; =&#38;gt; $this-&#38;gt;avia_post_type,
    &#38;#39;tax_query&#38;#39; =&#38;gt; array(
            array( &#38;#39;taxonomy&#38;#39; =&#38;gt; $this-&#38;gt;avia_term,
	&#38;#39;field&#38;#39; =&#38;gt; &#38;#39;id&#38;#39;,
	&#38;#39;terms&#38;#39; =&#38;gt; explode(&#38;#39;,&#38;#39;, $cat),
	&#38;#39;operator&#38;#39; =&#38;gt; &#38;#39;IN&#38;#39;
	 )
    )
);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Beholder123 on "Latest Portfolio Widget: Random order"</title>
			<link>http://www.kriesi.at/support/topic/latest-portfolio-widget-random-order#post-79022</link>
			<pubDate>Mon, 08 Oct 2012 20:05:14 +0000</pubDate>
			<dc:creator>Beholder123</dc:creator>
			<guid isPermaLink="false">79022@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Nick,&#60;/p&#62;
&#60;p&#62;thank you for your effort.&#60;/p&#62;
&#60;p&#62;The number of shown items has changed to zero, unfortunately.&#60;/p&#62;
&#60;p&#62;I hope you do have another idea to solve this.&#60;/p&#62;
&#60;p&#62;Best regards&#60;br /&#62;
Andi
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Latest Portfolio Widget: Random order"</title>
			<link>http://www.kriesi.at/support/topic/latest-portfolio-widget-random-order#post-78912</link>
			<pubDate>Mon, 08 Oct 2012 07:22:42 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">78912@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Could you try this please:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;$this-&#38;gt;avia_new_query = array(	&#38;#39;orderby&#38;#39; 	=&#38;gt; &#38;#39;rand&#38;#39;,
 &#38;#39;posts_per_page&#38;#39; =&#38;gt;-1,
 &#38;#39;tax_query&#38;#39; =&#38;gt; array( 	array( 	&#38;#39;taxonomy&#38;#39; 	=&#38;gt; $this-&#38;gt;avia_term,
  &#38;#39;field&#38;#39; 	=&#38;gt; &#38;#39;id&#38;#39;,
  &#38;#39;terms&#38;#39; 	=&#38;gt; explode(&#38;#39;,&#38;#39;, $cat),
  &#38;#39;operator&#38;#39; 	=&#38;gt; &#38;#39;IN&#38;#39;)));
 //-1 change for $count&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Any difference in number of portfolio items shown? &#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Latest Portfolio Widget: Random order"</title>
			<link>http://www.kriesi.at/support/topic/latest-portfolio-widget-random-order#post-78904</link>
			<pubDate>Mon, 08 Oct 2012 06:05:33 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">78904@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Andi,&#60;/p&#62;
&#60;p&#62;The &#34;orderby&#34;=&#38;gt;&#34;rand&#34; should have done the trick but I'm not sure why it didn't work on your end. Let me tag the rest of the support to see the issue.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Beholder123 on "Latest Portfolio Widget: Random order"</title>
			<link>http://www.kriesi.at/support/topic/latest-portfolio-widget-random-order#post-78758</link>
			<pubDate>Sat, 06 Oct 2012 07:23:26 +0000</pubDate>
			<dc:creator>Beholder123</dc:creator>
			<guid isPermaLink="false">78758@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;OK, now I can see the elements again, but they are still in the same order. I turned off the cache.&#60;br /&#62;
Regards&#60;br /&#62;
Andi
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Latest Portfolio Widget: Random order"</title>
			<link>http://www.kriesi.at/support/topic/latest-portfolio-widget-random-order#post-78731</link>
			<pubDate>Sat, 06 Oct 2012 02:08:09 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">78731@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Remove all of the changes you've done and find this code instead&#60;/p&#62;
&#60;p&#62;&#60;code&#62;$new_query = array(&#38;quot;posts_per_page&#38;quot;=&#38;gt;$count,&#38;quot;post_type&#38;quot;=&#38;gt;$this-&#38;gt;avia_post_type);&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Replace it with this &#60;/p&#62;
&#60;p&#62;&#60;code&#62;$new_query = array(&#38;quot;posts_per_page&#38;quot;=&#38;gt;$count,&#38;quot;post_type&#38;quot;=&#38;gt;$this-&#38;gt;avia_post_type,&#38;quot;orderby&#38;quot;=&#38;gt;&#38;quot;rand&#38;quot;);&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Beholder123 on "Latest Portfolio Widget: Random order"</title>
			<link>http://www.kriesi.at/support/topic/latest-portfolio-widget-random-order#post-78720</link>
			<pubDate>Fri, 05 Oct 2012 20:55:48 +0000</pubDate>
			<dc:creator>Beholder123</dc:creator>
			<guid isPermaLink="false">78720@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I am sorry, but there's still only an empty widget. That didn't work as well.&#60;/p&#62;
&#60;p&#62;Regards&#60;br /&#62;
Andi
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Latest Portfolio Widget: Random order"</title>
			<link>http://www.kriesi.at/support/topic/latest-portfolio-widget-random-order#post-78596</link>
			<pubDate>Fri, 05 Oct 2012 04:57:41 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">78596@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Try this instead.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$this-&#38;gt;avia_new_query =  array(	&#38;#39;orderby&#38;#39; =&#38;gt; &#38;#39;rand&#38;#39;, &#38;#39;tax_query&#38;#39; =&#38;gt; array(
													array( &#38;#39;taxonomy&#38;#39; =&#38;gt; $this-&#38;gt;avia_term,
														   &#38;#39;field&#38;#39; =&#38;gt; &#38;#39;id&#38;#39;,
														   &#38;#39;terms&#38;#39; =&#38;gt; explode(&#38;#39;,&#38;#39;, $cat),
														   &#38;#39;operator&#38;#39; =&#38;gt; &#38;#39;IN&#38;#39;)
														  )
													);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Beholder123 on "Latest Portfolio Widget: Random order"</title>
			<link>http://www.kriesi.at/support/topic/latest-portfolio-widget-random-order#post-78565</link>
			<pubDate>Thu, 04 Oct 2012 20:44:18 +0000</pubDate>
			<dc:creator>Beholder123</dc:creator>
			<guid isPermaLink="false">78565@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey Dude,&#60;/p&#62;
&#60;p&#62;thank you very much, but unfortunately this leads to an empty widget.&#60;/p&#62;
&#60;p&#62;Any ideas?&#60;/p&#62;
&#60;p&#62;Regards&#60;br /&#62;
Andi
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Latest Portfolio Widget: Random order"</title>
			<link>http://www.kriesi.at/support/topic/latest-portfolio-widget-random-order#post-78495</link>
			<pubDate>Thu, 04 Oct 2012 05:58:14 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">78495@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;In eunoia\framework\php\class-framework-widgets.php replace:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$this-&#38;gt;avia_new_query = &#38;#39;&#38;#39;; //set a custom query here&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;with&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;$this-&#38;gt;avia_new_query =  array(	&#38;quot;posts_per_page&#38;quot;=&#38;gt;$count, orderby =&#38;gt; &#38;#39;rand&#38;#39;, &#38;#39;tax_query&#38;#39; =&#38;gt; array(
													array( &#38;#39;taxonomy&#38;#39; =&#38;gt; $this-&#38;gt;avia_term,
														   &#38;#39;field&#38;#39; =&#38;gt; &#38;#39;id&#38;#39;,
														   &#38;#39;terms&#38;#39; =&#38;gt; explode(&#38;#39;,&#38;#39;, $cat),
														   &#38;#39;operator&#38;#39; =&#38;gt; &#38;#39;IN&#38;#39;)
														  )
													);&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>Beholder123 on "Latest Portfolio Widget: Random order"</title>
			<link>http://www.kriesi.at/support/topic/latest-portfolio-widget-random-order#post-78449</link>
			<pubDate>Wed, 03 Oct 2012 20:37:23 +0000</pubDate>
			<dc:creator>Beholder123</dc:creator>
			<guid isPermaLink="false">78449@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey Guys,&#60;/p&#62;
&#60;p&#62;this is a great theme!&#60;/p&#62;
&#60;p&#62;However, I have a question:&#60;/p&#62;
&#60;p&#62;How can I showcase random portfolio elements in a widget? The lastest widget is ordered by date and I didn't find how to change in to random.&#60;/p&#62;
&#60;p&#62;Thanks&#60;br /&#62;
Andi
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
