<?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: Large image in RSS FEED</title>
		<link>http://www.kriesi.at/support/topic/large-image-in-rss-feed</link>
		<description>Support Forum - Topic: Large image in RSS FEED</description>
		<language>en-US</language>
		<pubDate>Wed, 22 May 2013 13:50:12 +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/large-image-in-rss-feed" rel="self" type="application/rss+xml" />

		<item>
			<title>infoept on "Large image in RSS FEED"</title>
			<link>http://www.kriesi.at/support/topic/large-image-in-rss-feed#post-101837</link>
			<pubDate>Mon, 18 Mar 2013 15:40:31 +0000</pubDate>
			<dc:creator>infoept</dc:creator>
			<guid isPermaLink="false">101837@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;AHH! With this code works correctly..&#60;/p&#62;
&#60;p&#62;Thank you!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Large image in RSS FEED"</title>
			<link>http://www.kriesi.at/support/topic/large-image-in-rss-feed#post-101802</link>
			<pubDate>Mon, 18 Mar 2013 12:39:41 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">101802@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;This code won't work. You need to change the thumbnail size by modifying following line:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$postimage = avia_image_by_id($slides[0][&#38;#39;slideshow_image&#38;#39;],&#38;#39;thumbnail&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Replace &#34;thumbnail&#34; with another size like:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$postimage = avia_image_by_id($slides[0][&#38;#39;slideshow_image&#38;#39;],&#38;#39;featured_small&#38;#39;);&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>infoept on "Large image in RSS FEED"</title>
			<link>http://www.kriesi.at/support/topic/large-image-in-rss-feed#post-101782</link>
			<pubDate>Mon, 18 Mar 2013 10:38:22 +0000</pubDate>
			<dc:creator>infoept</dc:creator>
			<guid isPermaLink="false">101782@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Devin,&#60;/p&#62;
&#60;p&#62;I provided &#34;featured_small&#34; image size. Sample code:&#60;/p&#62;
&#60;p&#62;&#60;bbcode&#62;&#60;br /&#62;
// THIS INCLUDES THE THUMBNAIL IN OUR RSS FEED&#60;br /&#62;
add_filter( 'the_excerpt_rss', 'inoplugs_insertThumbnailRSS' );&#60;br /&#62;
add_filter( 'the_content_feed', 'inoplugs_insertThumbnailRSS' );&#60;br /&#62;
function inoplugs_insertThumbnailRSS( $content ) {&#60;/p&#62;
&#60;p&#62;	global $post;&#60;br /&#62;
	$slides = avia_post_meta($post-&#38;gt;post_id, 'featured_small');&#60;br /&#62;
	if ($slides){&#60;br /&#62;
		$postimage = avia_image_by_id($slides[0]['slideshow_image'],'thumbnail');&#60;br /&#62;
		$content = '&#38;lt;div&#38;gt;' . $postimage . '&#38;lt;/div&#38;gt;' . $content;&#60;/p&#62;
&#60;p&#62;		return $content;&#60;br /&#62;
	}&#60;br /&#62;
}&#60;br /&#62;
&#60;/bbcode&#62;&#60;/p&#62;
&#60;p&#62;RSS Feed only show title entry. It's possible to add content entry? &#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Large image in RSS FEED"</title>
			<link>http://www.kriesi.at/support/topic/large-image-in-rss-feed#post-101506</link>
			<pubDate>Fri, 15 Mar 2013 17:06:11 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">101506@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi infoept,&#60;/p&#62;
&#60;p&#62;Which image size did you include in the function provided there?&#60;/p&#62;
&#60;p&#62;The image names for Replete are those listed in the functions.php in:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;$avia_config[&#38;#39;imgSize&#38;#39;][&#38;#39;widget&#38;#39;] 			 	= array(&#38;#39;width&#38;#39;=&#38;gt;36,  &#38;#39;height&#38;#39;=&#38;gt;36);						// small preview pics eg sidebar news
$avia_config[&#38;#39;imgSize&#38;#39;][&#38;#39;slider_thumb&#38;#39;] 		= array(&#38;#39;width&#38;#39;=&#38;gt;70,  &#38;#39;height&#38;#39;=&#38;gt;50);						// slideshow preview pics
$avia_config[&#38;#39;imgSize&#38;#39;][&#38;#39;fullsize&#38;#39;] 		 	= array(&#38;#39;width&#38;#39;=&#38;gt;930, &#38;#39;height&#38;#39;=&#38;gt;930, &#38;#39;crop&#38;#39;=&#38;gt;false);		// big images for lightbox and portfolio single entries
$avia_config[&#38;#39;imgSize&#38;#39;][&#38;#39;featured&#38;#39;] 		 	= array(&#38;#39;width&#38;#39;=&#38;gt;1500, &#38;#39;height&#38;#39;=&#38;gt;430 );						// images for fullsize pages and fullsize slider
$avia_config[&#38;#39;imgSize&#38;#39;][&#38;#39;featured_small&#38;#39;] 		= array(&#38;#39;width&#38;#39;=&#38;gt;990, &#38;#39;height&#38;#39;=&#38;gt;280 );						// images for fullsize pages and fullsize slider
$avia_config[&#38;#39;imgSize&#38;#39;][&#38;#39;portfolio&#38;#39;] 		 	= array(&#38;#39;width&#38;#39;=&#38;gt;495, &#38;#39;height&#38;#39;=&#38;gt;400 );						// images for portfolio entries (2,3 column)
$avia_config[&#38;#39;imgSize&#38;#39;][&#38;#39;portfolio_small&#38;#39;] 		= array(&#38;#39;width&#38;#39;=&#38;gt;241, &#38;#39;height&#38;#39;=&#38;gt;179 );						// images for portfolio 4 columns
$avia_config[&#38;#39;imgSize&#38;#39;][&#38;#39;logo&#38;#39;] 		 		= array(&#38;#39;width&#38;#39;=&#38;gt;446, &#38;#39;height&#38;#39;=&#38;gt;218, &#38;#39;copy&#38;#39;=&#38;gt;&#38;#39;greyscale&#38;#39;);   // images for dynamic logo/partner element

//dynamic columns
$avia_config[&#38;#39;imgSize&#38;#39;][&#38;#39;dynamic_1&#38;#39;] 		 	= array(&#38;#39;width&#38;#39;=&#38;gt;492, &#38;#39;height&#38;#39;=&#38;gt;165);						// images for 2/4 (aka 1/2) dynamic portfolio columns when using 3 columns
$avia_config[&#38;#39;imgSize&#38;#39;][&#38;#39;dynamic_2&#38;#39;] 		 	= array(&#38;#39;width&#38;#39;=&#38;gt;676, &#38;#39;height&#38;#39;=&#38;gt;151);						// images for 2/3 dynamic portfolio columns
$avia_config[&#38;#39;imgSize&#38;#39;][&#38;#39;dynamic_3&#38;#39;] 		 	= array(&#38;#39;width&#38;#39;=&#38;gt;765, &#38;#39;height&#38;#39;=&#38;gt;107);						// images for 3/4 dynamic portfolio&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>infoept on "Large image in RSS FEED"</title>
			<link>http://www.kriesi.at/support/topic/large-image-in-rss-feed#post-101310</link>
			<pubDate>Thu, 14 Mar 2013 15:07:09 +0000</pubDate>
			<dc:creator>infoept</dc:creator>
			<guid isPermaLink="false">101310@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello, &#60;/p&#62;
&#60;p&#62;In Replete theme , how to include large image in Feed (first image of gallery)? I tested sample code &#60;a href=&#34;http://www.kriesi.at/support/topic/featured-post-image-in-rss-feed&#34; rel=&#34;nofollow&#34;&#62;http://www.kriesi.at/support/topic/featured-post-image-in-rss-feed&#60;/a&#62;   but not show any image. Any ideas?&#60;/p&#62;
&#60;p&#62;Thanks in advanced!!
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
