<?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: Slideshow Order</title>
		<link>http://www.kriesi.at/support/topic/slideshow-order</link>
		<description>Support Forum - Topic: Slideshow Order</description>
		<language>en-US</language>
		<pubDate>Sun, 26 May 2013 07:51:29 +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/slideshow-order" rel="self" type="application/rss+xml" />

		<item>
			<title>pat_morita on "Slideshow Order"</title>
			<link>http://www.kriesi.at/support/topic/slideshow-order#post-30527</link>
			<pubDate>Wed, 26 Oct 2011 15:13:37 +0000</pubDate>
			<dc:creator>pat_morita</dc:creator>
			<guid isPermaLink="false">30527@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Ok, thank you, i'll see what i can do! Lets see if i can implement a &#34;position&#34; field.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Slideshow Order"</title>
			<link>http://www.kriesi.at/support/topic/slideshow-order#post-30508</link>
			<pubDate>Wed, 26 Oct 2011 10:30:28 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">30508@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I'm not entirely sure but I don't think it's easily possible without rewriting some parts of the framework. I can only give you a hint regarding the code location. broadscope\includes\admin_option_pages\metabox.php ; broadscope\framework\php\class-htmlhelper.php and broadscope\framework\php\class-metabox.php contain all necessary code references.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>pat_morita on "Slideshow Order"</title>
			<link>http://www.kriesi.at/support/topic/slideshow-order#post-30506</link>
			<pubDate>Wed, 26 Oct 2011 10:02:35 +0000</pubDate>
			<dc:creator>pat_morita</dc:creator>
			<guid isPermaLink="false">30506@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thats great! Works!&#60;/p&#62;
&#60;p&#62;Last question:&#60;br /&#62;
Is there ANY possibility (even code-wise) to change the sorting like this:&#60;br /&#62;
Existing Featured image on position 4 to position 1?&#60;/p&#62;
&#60;p&#62;Any help appreciated&#60;/p&#62;
&#60;p&#62;Pat
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Slideshow Order"</title>
			<link>http://www.kriesi.at/support/topic/slideshow-order#post-30430</link>
			<pubDate>Tue, 25 Oct 2011 16:30:47 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">30430@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
I haven't tested my approach but I think you can use the array_reverse function to change the slides array order. In broadscope\includes\featured-images-slideshow.php replace:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$output = &#38;quot;&#38;lt;ul class=&#38;#39;slideshow&#38;#39;&#38;gt;&#38;quot;;

		foreach($slides as $slide)&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;with:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;$output = &#38;quot;&#38;lt;ul class=&#38;#39;slideshow&#38;#39;&#38;gt;&#38;quot;;
$slides = array_reverse($slides, true);

		foreach($slides as $slide)&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>pat_morita on "Slideshow Order"</title>
			<link>http://www.kriesi.at/support/topic/slideshow-order#post-30412</link>
			<pubDate>Tue, 25 Oct 2011 11:40:42 +0000</pubDate>
			<dc:creator>pat_morita</dc:creator>
			<guid isPermaLink="false">30412@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;*push* :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>pat_morita on "Slideshow Order"</title>
			<link>http://www.kriesi.at/support/topic/slideshow-order#post-30331</link>
			<pubDate>Mon, 24 Oct 2011 14:42:00 +0000</pubDate>
			<dc:creator>pat_morita</dc:creator>
			<guid isPermaLink="false">30331@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;edit: im talking 'bout the featured images -&#38;gt; slideshow.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>pat_morita on "Slideshow Order"</title>
			<link>http://www.kriesi.at/support/topic/slideshow-order#post-30327</link>
			<pubDate>Mon, 24 Oct 2011 13:46:58 +0000</pubDate>
			<dc:creator>pat_morita</dc:creator>
			<guid isPermaLink="false">30327@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi there,&#60;/p&#62;
&#60;p&#62;i use Broadscope as my Portfolio page and so i like the Slideshow technology on my HOME-site. But when i add a new item, i'd like to have it first, not last, because the first item usually creates most attention and you can see what i got newest.&#60;/p&#62;
&#60;p&#62;So is there any possibility (even by hand - im quite good in coding) to change the order of the slideshow items?&#60;/p&#62;
&#60;p&#62;Best regards&#60;br /&#62;
Pat
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
