<?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 add thumbnail or preview picture in categories or tags archive list?</title>
		<link>http://www.kriesi.at/support/topic/how-to-add-thumbnail-or-preview-picture-in-categories-or-tags-archive-list</link>
		<description>Support Forum - Topic: How to add thumbnail or preview picture in categories or tags archive list?</description>
		<language>en-US</language>
		<pubDate>Sun, 19 May 2013 21:50:56 +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-add-thumbnail-or-preview-picture-in-categories-or-tags-archive-list" rel="self" type="application/rss+xml" />

		<item>
			<title>Dude on "How to add thumbnail or preview picture in categories or tags archive list?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-add-thumbnail-or-preview-picture-in-categories-or-tags-archive-list#post-19606</link>
			<pubDate>Sun, 22 May 2011 07:49:26 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">19606@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Glad that I could help you :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kontramax on "How to add thumbnail or preview picture in categories or tags archive list?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-add-thumbnail-or-preview-picture-in-categories-or-tags-archive-list#post-19582</link>
			<pubDate>Sat, 21 May 2011 15:19:50 +0000</pubDate>
			<dc:creator>Kontramax</dc:creator>
			<guid isPermaLink="false">19582@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thank you! All works fine!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "How to add thumbnail or preview picture in categories or tags archive list?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-add-thumbnail-or-preview-picture-in-categories-or-tags-archive-list#post-19570</link>
			<pubDate>Sat, 21 May 2011 14:54:13 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">19570@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
1) In archive.php replace:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;the_excerpt();&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;with:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;// check if we got a previe picture, and which one should be taken
				// (image resizing with &#38;quot;tim thumb&#38;quot; on? then we can take the big one and resize it)
				$preview_small = get_post_meta($post-&#38;gt;ID, &#38;quot;_preview_small&#38;quot;, true);
				$preview_medium = get_post_meta($post-&#38;gt;ID, &#38;quot;_preview_medium&#38;quot;, true);
				$preview_big = get_post_meta($post-&#38;gt;ID, &#38;quot;_preview_big&#38;quot;, true);

				//defaults:
				$preview = $preview_medium;
				$link_url = $preview_big;
				$lightbox = &#38;#39;singlepost&#38;#39;;
				$link = true;
				//change if necessary:

				// resizing? =&#38;gt; take next sized picture
				if ($k_option[&#38;#39;general&#38;#39;][&#38;#39;tim&#38;#39;] == &#38;quot;1&#38;quot; &#38;amp;&#38;amp; $preview_medium == &#38;quot;&#38;quot;)
				{
					$preview = $preview_big;
				} 

				// no bigpicture? =&#38;gt; no lightbox
				if ($preview_big == &#38;quot;&#38;quot;) { $lightbox = &#38;#39;&#38;#39;; $link = true; $link_url = get_permalink(); }
				// the kriesi_build_image function used here checks if the image should be resized.
				// the function is located in framework/helper_functions

				$preview = kriesi_build_image(array(&#38;#39;url&#38;#39;=&#38;gt;$preview,
													&#38;#39;height&#38;#39;=&#38;gt; &#38;#39;273&#38;#39;,
													&#38;#39;width&#38;#39;=&#38;gt; &#38;#39;610&#38;#39;,
													&#38;#39;lightbox&#38;#39;=&#38;gt;$lightbox,
													&#38;#39;link&#38;#39;=&#38;gt;$link,
													&#38;#39;link_url&#38;#39;=&#38;gt;$link_url
													));			

echo $preview; // echo the preview image
the_excerpt();&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;2) In single.php (and in page.php and template_fullwidth.php if you like) delete following code&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;echo $preview; // echo the preview image&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;3) In custom.js adjust following code line:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$sublist.stop().css({overflow:&#38;quot;hidden&#38;quot;, height:&#38;quot;auto&#38;quot;, display:&#38;quot;none&#38;quot;}).slideDown(400, function()&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Increase/decrease the value &#34;400&#34; to adjust the speed.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kontramax on "How to add thumbnail or preview picture in categories or tags archive list?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-add-thumbnail-or-preview-picture-in-categories-or-tags-archive-list#post-19538</link>
			<pubDate>Fri, 20 May 2011 11:34:53 +0000</pubDate>
			<dc:creator>Kontramax</dc:creator>
			<guid isPermaLink="false">19538@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I have also one question - is it possible to increase speed of dropdown submenu in main menu (Display theme)? Thanx!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kontramax on "How to add thumbnail or preview picture in categories or tags archive list?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-add-thumbnail-or-preview-picture-in-categories-or-tags-archive-list#post-19530</link>
			<pubDate>Fri, 20 May 2011 08:22:06 +0000</pubDate>
			<dc:creator>Kontramax</dc:creator>
			<guid isPermaLink="false">19530@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello, I use Display theme.&#60;br /&#62;
1) When I click on Blog - I got list of post with pictures, but when I click on Categories or Tags for example, I got the text list with post titles. Can I add picture from post thumb or preview?&#60;br /&#62;
2) Is it possible to remove preview picture exactly from begin of blog post body, but leave it in list of posts?&#60;/p&#62;
&#60;p&#62;Thank you!
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
