<?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: Make images of galleries appear in RSS readers</title>
		<link>http://www.kriesi.at/support/topic/make-images-of-galleries-appear-in-rss-readers</link>
		<description>Support Forum - Topic: Make images of galleries appear in RSS readers</description>
		<language>en-US</language>
		<pubDate>Wed, 22 May 2013 08:33:00 +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/make-images-of-galleries-appear-in-rss-readers" rel="self" type="application/rss+xml" />

		<item>
			<title>Dude on "Make images of galleries appear in RSS readers"</title>
			<link>http://www.kriesi.at/support/topic/make-images-of-galleries-appear-in-rss-readers#post-32989</link>
			<pubDate>Thu, 24 Nov 2011 13:05:07 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">32989@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Glad that I could help you :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ebouille on "Make images of galleries appear in RSS readers"</title>
			<link>http://www.kriesi.at/support/topic/make-images-of-galleries-appear-in-rss-readers#post-32980</link>
			<pubDate>Thu, 24 Nov 2011 11:24:09 +0000</pubDate>
			<dc:creator>ebouille</dc:creator>
			<guid isPermaLink="false">32980@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Nice, thanks very much.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Make images of galleries appear in RSS readers"</title>
			<link>http://www.kriesi.at/support/topic/make-images-of-galleries-appear-in-rss-readers#post-32970</link>
			<pubDate>Thu, 24 Nov 2011 10:12:14 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">32970@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Yes,&#60;br /&#62;
replace:&#60;/p&#62;
&#60;p&#62;$size = &#34;portfolio&#34;;&#60;/p&#62;
&#60;p&#62;with:&#60;/p&#62;
&#60;p&#62;$size = &#34;fullsize&#34;;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ebouille on "Make images of galleries appear in RSS readers"</title>
			<link>http://www.kriesi.at/support/topic/make-images-of-galleries-appear-in-rss-readers#post-32966</link>
			<pubDate>Thu, 24 Nov 2011 09:39:45 +0000</pubDate>
			<dc:creator>ebouille</dc:creator>
			<guid isPermaLink="false">32966@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Yeeees it works now !&#60;br /&#62;
Is it possible to show full size images instead of thumbnails in reader ?&#60;br /&#62;
Thanks for your help
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Make images of galleries appear in RSS readers"</title>
			<link>http://www.kriesi.at/support/topic/make-images-of-galleries-appear-in-rss-readers#post-32961</link>
			<pubDate>Thu, 24 Nov 2011 08:40:53 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">32961@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I changed the code. Please try it again.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ebouille on "Make images of galleries appear in RSS readers"</title>
			<link>http://www.kriesi.at/support/topic/make-images-of-galleries-appear-in-rss-readers#post-32958</link>
			<pubDate>Thu, 24 Nov 2011 07:59:01 +0000</pubDate>
			<dc:creator>ebouille</dc:creator>
			<guid isPermaLink="false">32958@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Maybe, I have a problem,&#60;br /&#62;
Images and texts have disappeared of my RSS. Only posts titles shows up now&#60;br /&#62;
Do you have an idea ?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Make images of galleries appear in RSS readers"</title>
			<link>http://www.kriesi.at/support/topic/make-images-of-galleries-appear-in-rss-readers#post-32903</link>
			<pubDate>Wed, 23 Nov 2011 22:14:15 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">32903@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
add following code to functions.php:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;// THIS INCLUDES THE THUMBNAIL IN OUR RSS FEED
add_filter( &#38;#39;the_excerpt_rss&#38;#39;, &#38;#39;inoplugs_insertThumbnailRSS&#38;#39; );
add_filter( &#38;#39;the_content_feed&#38;#39;, &#38;#39;inoplugs_insertThumbnailRSS&#38;#39; );
function inoplugs_insertThumbnailRSS( $content ) {

global $post;
$id = avia_post_meta($post-&#38;gt;post_id, &#38;#39;gallery_image&#38;#39;);
$size = &#38;quot;portfolio&#38;quot;;
$returnvalue = &#38;#39;url&#38;#39;;
global $avia_config;

		if(!$id)
		{
			$attachment_holder = avia_get_post_by_title( &#38;quot;avia_smart-default-gallery&#38;quot;);
		}
		else
		{
			$attachment_holder = avia_get_post_by_title( &#38;quot;avia_smart-gallery-of-post-&#38;quot;.$id);
		}

			if(empty($attachment_holder[&#38;#39;ID&#38;#39;])) return;

		$attachments = get_children(array(&#38;#39;post_parent&#38;#39; =&#38;gt; $attachment_holder[&#38;#39;ID&#38;#39;],
                        &#38;#39;post_status&#38;#39; =&#38;gt; &#38;#39;inherit&#38;#39;,
                        &#38;#39;post_type&#38;#39; =&#38;gt; &#38;#39;attachment&#38;#39;,
                        &#38;#39;post_mime_type&#38;#39; =&#38;gt; &#38;#39;image&#38;#39;,
                        &#38;#39;order&#38;#39; =&#38;gt; &#38;#39;ASC&#38;#39;,
                        &#38;#39;orderby&#38;#39; =&#38;gt; &#38;#39;menu_order ID&#38;#39;));

        if (!empty($attachments)){
			foreach($attachments as $key =&#38;gt; $attachment)
			{
				$image_url_array[] = avia_image_by_id($attachment-&#38;gt;ID, $avia_config[&#38;#39;imgSize&#38;#39;][$size], $returnvalue);
			}
		}

	    $postimage = &#38;quot;&#38;quot;;

         if (!empty($image_url_array)){
		foreach($image_url_array as $url)
		{
			$postimage .= &#38;quot;&#38;lt;img src=&#38;#39;$url&#38;#39; alt=&#38;#39;feed image&#38;#39; title=&#38;#39;feed image&#38;#39; /&#38;gt;&#38;quot;;
		}
         }

		$content = &#38;#39;&#38;lt;div&#38;gt;&#38;#39; . $postimage . &#38;#39;&#38;lt;/div&#38;gt;&#38;#39; . $content;

		return $content;
}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>ebouille on "Make images of galleries appear in RSS readers"</title>
			<link>http://www.kriesi.at/support/topic/make-images-of-galleries-appear-in-rss-readers#post-32902</link>
			<pubDate>Wed, 23 Nov 2011 22:08:57 +0000</pubDate>
			<dc:creator>ebouille</dc:creator>
			<guid isPermaLink="false">32902@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello&#60;/p&#62;
&#60;p&#62;Could you tell me how to make images (from image galleries) appear in my rss ? In reader text appears but pictures shows up only if I had them in the post.&#60;/p&#62;
&#60;p&#62;Thanks again for your support !&#60;/p&#62;
&#60;p&#62;thibautvoisin.com
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
