<?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: How to delete the theme&#039;s slideshow</title>
		<link>http://www.kriesi.at/support/topic/how-to-delete-the-themes-slideshow</link>
		<description>Support Forum - Topic: How to delete the theme&#039;s slideshow</description>
		<language>en-US</language>
		<pubDate>Wed, 22 May 2013 05:00:44 +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/how-to-delete-the-themes-slideshow" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Beard on "How to delete the theme&#039;s slideshow"</title>
			<link>http://www.kriesi.at/support/topic/how-to-delete-the-themes-slideshow#post-29921</link>
			<pubDate>Thu, 20 Oct 2011 00:33:25 +0000</pubDate>
			<dc:creator>Chris Beard</dc:creator>
			<guid isPermaLink="false">29921@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
I believe I've answered this question in an other topic of yours.&#60;br /&#62;
In your index.php file you can remove&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
		// FRONTPAGE SLIDESHOW
		//
		// check if slideshow should be displayed?
		if($k_option[&#38;#39;mainpage&#38;#39;][&#38;#39;slider&#38;#39;] != &#38;#39;none&#38;#39;) :
		?&#38;gt;
		&#38;lt;!-- FEATURED POST AREA ################################################### --&#38;gt;
		&#38;lt;div id=&#38;quot;feature_wrap&#38;quot;&#38;gt;
		&#38;lt;!-- ###################################################################### --&#38;gt;
			&#38;lt;div id=&#38;quot;featured&#38;quot; class=&#38;#39;&#38;lt;?php echo $k_option[&#38;#39;mainpage&#38;#39;][&#38;#39;slider&#38;#39;]; ?&#38;gt;&#38;#39;&#38;gt;

			&#38;lt;?php 

			//check slider and apply size to previe images
			$kimg = array(&#38;#39;shortcut&#38;#39; =&#38;gt; &#38;#39;L&#38;#39;, &#38;#39;overwrite&#38;#39; =&#38;gt; &#38;#39;none&#38;#39;);

			if($k_option[&#38;#39;mainpage&#38;#39;][&#38;#39;slider&#38;#39;] == &#38;#39;fadeslider&#38;#39;)
			{
				$kimg = array(&#38;#39;shortcut&#38;#39; =&#38;gt; &#38;#39;XL&#38;#39;, &#38;#39;overwrite&#38;#39; =&#38;gt; &#38;#39;none&#38;#39;);
			}

			// start the loop that gernerates the images
			$loopcount = 1;
			$additional_loop = new WP_Query(&#38;quot;cat=&#38;quot;.$k_option[&#38;#39;mainpage&#38;#39;][&#38;#39;feature_cats_final&#38;#39;].&#38;quot;&#38;amp;posts_per_page=&#38;quot;.$k_option[&#38;#39;mainpage&#38;#39;][&#38;#39;feature_count&#38;#39;]);
			if ($additional_loop-&#38;gt;have_posts()) :
			while ($additional_loop-&#38;gt;have_posts()) : $additional_loop-&#38;gt;the_post();

			$preview_image = kriesi_post_thumb($post-&#38;gt;ID, array(&#38;#39;size&#38;#39;=&#38;gt; array($kimg[&#38;#39;shortcut&#38;#39;],$kimg[&#38;#39;overwrite&#38;#39;]),
															&#38;#39;display_link&#38;#39; =&#38;gt; array(&#38;#39;none&#38;#39;),
															&#38;#39;wh&#38;#39; =&#38;gt; $k_option[&#38;#39;custom&#38;#39;][&#38;#39;imgSize&#38;#39;][$kimg[&#38;#39;shortcut&#38;#39;]]
															));

			// Featured Entry:
			?&#38;gt;
				&#38;lt;div class=&#38;quot;featured featured&#38;lt;?php echo $loopcount; ?&#38;gt;&#38;quot;&#38;gt;
					&#38;lt;a href=&#38;quot;&#38;lt;?php the_permalink(); ?&#38;gt;&#38;quot;&#38;gt;
						&#38;lt;span class=&#38;#39;feature_excerpt&#38;#39;&#38;gt;
							&#38;lt;strong class=&#38;#39;sliderheading&#38;#39;&#38;gt;&#38;lt;?php the_title(); ?&#38;gt;&#38;lt;/strong&#38;gt;
							&#38;lt;span class=&#38;#39;sliderdate&#38;#39;&#38;gt;&#38;lt;?php the_time(&#38;#39;M d, Y&#38;#39;) ?&#38;gt;&#38;lt;/span&#38;gt;
							&#38;lt;span class=&#38;#39;slidercontent&#38;#39;&#38;gt;
							&#38;lt;?php
								$content = strip_tags(get_the_excerpt(),&#38;#39;&#38;lt;a&#38;gt;&#38;lt;strong&#38;gt;&#38;lt;span&#38;gt;&#38;#39;);
								echo $content;
							?&#38;gt;
							&#38;lt;/span&#38;gt;
						&#38;lt;/span&#38;gt;
						&#38;lt;?php echo $preview_image; ?&#38;gt;
					&#38;lt;/a&#38;gt;
				&#38;lt;/div&#38;gt;
			&#38;lt;?php
			// end entry

			$loopcount ++;
			endwhile; endif;
			?&#38;gt;

		&#38;lt;/div&#38;gt;&#38;lt;!-- end #featured --&#38;gt; 

		&#38;lt;span class=&#38;#39;bottom_right_rounded_corner ie6fix&#38;#39;&#38;gt;&#38;lt;/span&#38;gt;
		&#38;lt;span class=&#38;#39;bottom_left_rounded_corner ie6fix&#38;#39;&#38;gt;&#38;lt;/span&#38;gt;	

	&#38;lt;!-- ###################################################################### --&#38;gt;
	&#38;lt;/div&#38;gt;&#38;lt;!-- end featuredwrap --&#38;gt;
	&#38;lt;!-- ###################################################################### --&#38;gt;
	&#38;lt;?php endif; // end slideshow ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;However, replacing this code with your Slidedeck code you provided in the other topic won't work as you expect (it won't work at all).
&#60;/p&#62;</description>
		</item>
		<item>
			<title>pvpbrasil on "How to delete the theme&#039;s slideshow"</title>
			<link>http://www.kriesi.at/support/topic/how-to-delete-the-themes-slideshow#post-29749</link>
			<pubDate>Tue, 18 Oct 2011 18:41:38 +0000</pubDate>
			<dc:creator>pvpbrasil</dc:creator>
			<guid isPermaLink="false">29749@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;Could you guys help me in how to delete the slideshow?&#60;br /&#62;
I want to install a new one , but i dont know how to erase the current  slideshow&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
