<?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 - User Favorites: naranili</title>
		<link><a href='http://www.kriesi.at/support/profile/naranili'>naranili</a></link>
		<description>Support Forum - User Favorites: naranili</description>
		<language>en-US</language>
		<pubDate>Thu, 23 May 2013 18:04:20 +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/profile/" rel="self" type="application/rss+xml" />

		<item>
			<title>Dude on "Filter to extend Metaboxes doesn&#039;t work ??"</title>
			<link>http://www.kriesi.at/support/topic/filter-to-extend-metaboxes-doesnt-work#post-97878</link>
			<pubDate>Thu, 21 Feb 2013 17:05:27 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">97878@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey! &#60;/p&#62;
&#60;p&#62; slackbladder thanks for helping us out :) &#60;/p&#62;
&#60;p&#62; Best regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>naranili on "Filter to extend Metaboxes doesn&#039;t work ??"</title>
			<link>http://www.kriesi.at/support/topic/filter-to-extend-metaboxes-doesnt-work#post-97870</link>
			<pubDate>Thu, 21 Feb 2013 16:38:00 +0000</pubDate>
			<dc:creator>naranili</dc:creator>
			<guid isPermaLink="false">97870@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Many thanks. This works.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>slackbladder on "Filter to extend Metaboxes doesn&#039;t work ??"</title>
			<link>http://www.kriesi.at/support/topic/filter-to-extend-metaboxes-doesnt-work#post-97813</link>
			<pubDate>Thu, 21 Feb 2013 13:17:32 +0000</pubDate>
			<dc:creator>slackbladder</dc:creator>
			<guid isPermaLink="false">97813@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Try removing the class variable?&#60;/p&#62;
&#60;p&#62;'class' =&#38;gt; &#34;av_2columns av_col_2&#34;,&#60;/p&#62;
&#60;p&#62;to&#60;/p&#62;
&#60;p&#62;'class' =&#38;gt; &#34;&#34;,
&#60;/p&#62;</description>
		</item>
		<item>
			<title>naranili on "Filter to extend Metaboxes doesn&#039;t work ??"</title>
			<link>http://www.kriesi.at/support/topic/filter-to-extend-metaboxes-doesnt-work#post-97811</link>
			<pubDate>Thu, 21 Feb 2013 12:58:38 +0000</pubDate>
			<dc:creator>naranili</dc:creator>
			<guid isPermaLink="false">97811@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi !&#60;/p&#62;
&#60;p&#62;I extended the Metabox Section of the Angular Portfolio on using the given filters:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;add_filter ( &#38;#39;avia_metabox_filter&#38;#39;, &#38;#39;my_avia_metabox_filter&#38;#39;);
	add_filter ( &#38;#39;avia_metabox_element_filter&#38;#39;, &#38;#39;my_avia_metabox_element_filter&#38;#39;);

	function my_avia_metabox_filter($boxes)
	{

		$boxes[] = array(
				&#38;#39;title&#38;#39; =&#38;gt;  &#38;quot;Buttons&#38;quot;,
				&#38;#39;id&#38;#39; =&#38;gt; &#38;quot;buttons&#38;quot; ,
				&#38;#39;page&#38;#39; =&#38;gt; array(&#38;#39;portfolio&#38;#39;),
				&#38;#39;context&#38;#39; =&#38;gt; &#38;quot;side&#38;quot;,
				&#38;#39;priority&#38;#39; =&#38;gt; &#38;quot;low&#38;quot;
				);

		return ($boxes);

	}

	function my_avia_metabox_element_filter($elements)
	{

		$elements[] = array(
						&#38;#39;slug&#38;#39;	=&#38;gt; &#38;quot;buttons&#38;quot;,
						&#38;#39;name&#38;#39; 	=&#38;gt; &#38;quot;SOLD Button Color&#38;quot;,
						&#38;#39;desc&#38;#39; 	=&#38;gt; &#38;quot;&#38;quot;,
						&#38;#39;id&#38;#39; 	=&#38;gt; &#38;quot;sold_button&#38;quot;,
						&#38;#39;type&#38;#39; 	=&#38;gt; &#38;quot;colorpicker&#38;quot;,
						&#38;#39;class&#38;#39; =&#38;gt; &#38;quot;av_2columns av_col_2&#38;quot;,
						&#38;#39;std&#38;#39; 	=&#38;gt; &#38;quot;#ffffff&#38;quot;,
						);

		$elements[] = array(
						&#38;#39;slug&#38;#39;	=&#38;gt; &#38;quot;buttons&#38;quot;,
						&#38;#39;name&#38;#39; 	=&#38;gt; &#38;quot;UNDER OFFER Button Color&#38;quot;,
						&#38;#39;desc&#38;#39; 	=&#38;gt; &#38;quot;&#38;quot;,
						&#38;#39;id&#38;#39; 	=&#38;gt; &#38;quot;underoffer_button&#38;quot;,
						&#38;#39;type&#38;#39; 	=&#38;gt; &#38;quot;colorpicker&#38;quot;,
						&#38;#39;class&#38;#39; =&#38;gt; &#38;quot;av_2columns av_col_2&#38;quot;,
						&#38;#39;std&#38;#39; 	=&#38;gt; &#38;quot;#ffffff&#38;quot;,
						);

		return ($elements);

	}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;But at the Backend this doesn't looks nice. Looks like that the Elements are not assigned to the box. I have a screenshot if you neet.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Can&#039;t define &#34;Featured Image&#34;. So some othe plugins failed"</title>
			<link>http://www.kriesi.at/support/topic/cant-define-featured-image-so-some-othe-plugins-failed#post-92426</link>
			<pubDate>Sat, 19 Jan 2013 18:22:57 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">92426@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey! &#60;/p&#62;
&#60;p&#62; Yes, actually following line:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;add_theme_support( &#38;#39;post-thumbnails&#38;#39; );&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;will add the &#34;featured image&#34; option field to the post editor screen. &#60;/p&#62;
&#60;p&#62; Regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>naranili on "Can&#039;t define &#34;Featured Image&#34;. So some othe plugins failed"</title>
			<link>http://www.kriesi.at/support/topic/cant-define-featured-image-so-some-othe-plugins-failed#post-92415</link>
			<pubDate>Sat, 19 Jan 2013 16:08:20 +0000</pubDate>
			<dc:creator>naranili</dc:creator>
			<guid isPermaLink="false">92415@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Yes. This code works.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Can&#039;t define &#34;Featured Image&#34;. So some othe plugins failed"</title>
			<link>http://www.kriesi.at/support/topic/cant-define-featured-image-so-some-othe-plugins-failed#post-92268</link>
			<pubDate>Fri, 18 Jan 2013 17:04:30 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">92268@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Has the code you pasted worked as you needed?&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Gallery View with latest Update broken"</title>
			<link>http://www.kriesi.at/support/topic/gallery-view-with-latest-update-broken#post-92208</link>
			<pubDate>Fri, 18 Jan 2013 08:39:32 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">92208@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi! &#60;/p&#62;
&#60;p&#62; Great, thanks for providing the details. &#60;/p&#62;
&#60;p&#62; Best regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>naranili on "Can&#039;t define &#34;Featured Image&#34;. So some othe plugins failed"</title>
			<link>http://www.kriesi.at/support/topic/cant-define-featured-image-so-some-othe-plugins-failed#post-92039</link>
			<pubDate>Thu, 17 Jan 2013 10:12:44 +0000</pubDate>
			<dc:creator>naranili</dc:creator>
			<guid isPermaLink="false">92039@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I think this must be :&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;//remove post thumbnails from pages, posts and various custom post types
if(!function_exists(&#38;#39;avia_remove_post_thumbnails&#38;#39;))
{
	add_theme_support( &#38;#39;post-thumbnails&#38;#39; );

//	add_action(&#38;#39;posts_selection&#38;#39;, &#38;#39;avia_remove_post_thumbnails&#38;#39;);
//	add_action(&#38;#39;init&#38;#39;, &#38;#39;avia_remove_post_thumbnails&#38;#39;);
//	add_filter(&#38;#39;post_updated_messages&#38;#39;,&#38;#39;avia_remove_post_thumbnails&#38;#39;);
//	function avia_remove_post_thumbnails($msg)
//	{
//		global $post_type;
//		$remove_when = apply_filters(&#38;#39;avia_remove_post_thumbnails&#38;#39;, array(&#38;#39;post&#38;#39;,&#38;#39;page&#38;#39;,&#38;#39;portfolio&#38;#39;));
//
//		if(is_admin())
//		{
//			foreach($remove_when as $remove)
//			{
//				if($post_type == $remove &#124;&#124; (isset($_GET[&#38;#39;post_type&#38;#39;]) &#38;amp;&#38;amp; $_GET[&#38;#39;post_type&#38;#39;] == $remove)) { remove_theme_support( &#38;#39;post-thumbnails&#38;#39; ); };
//			}
//		}
//
//		return $msg;
//	}
}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>naranili on "Can&#039;t define &#34;Featured Image&#34;. So some othe plugins failed"</title>
			<link>http://www.kriesi.at/support/topic/cant-define-featured-image-so-some-othe-plugins-failed#post-92037</link>
			<pubDate>Thu, 17 Jan 2013 10:05:57 +0000</pubDate>
			<dc:creator>naranili</dc:creator>
			<guid isPermaLink="false">92037@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Doesn't work with WP 3.5&#60;br /&#62;
I don'T have a link at the Media-Upload to define a featured media.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>naranili on "Gallery View with latest Update broken"</title>
			<link>http://www.kriesi.at/support/topic/gallery-view-with-latest-update-broken#post-92022</link>
			<pubDate>Thu, 17 Jan 2013 08:31:03 +0000</pubDate>
			<dc:creator>naranili</dc:creator>
			<guid isPermaLink="false">92022@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;My Provider solved the Problem.&#60;br /&#62;
WP 3.5 has some problems with PHP 5.3. Everything works with PHP 5.2 und PHP 5.4.&#60;br /&#62;
With PHP 5.3 Wordpress needs more than 192MB Memory to generate the thumbnails.&#60;/p&#62;
&#60;p&#62;The Image upload works, but there is not &#34;attachement_meta_data&#34; so wordpress doesn't know that there is a resized image.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Gallery View with latest Update broken"</title>
			<link>http://www.kriesi.at/support/topic/gallery-view-with-latest-update-broken#post-91382</link>
			<pubDate>Sun, 13 Jan 2013 17:58:03 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">91382@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I checked the source code and it seems like WordPress uses the original images (and not the thumbnails) as preview images. Then result is that the images are not cropped and portrait images have a different format than landscape images. Please create me a wordpress admin account and send me the login data to: &#60;a href=&#34;mailto:kriesi2000-dude@yahoo.com&#34;&#62;kriesi2000-dude@yahoo.com&#60;/a&#62; - I'll look into it.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>naranili on "Gallery View with latest Update broken"</title>
			<link>http://www.kriesi.at/support/topic/gallery-view-with-latest-update-broken#post-91358</link>
			<pubDate>Sun, 13 Jan 2013 14:00:01 +0000</pubDate>
			<dc:creator>naranili</dc:creator>
			<guid isPermaLink="false">91358@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi !&#60;/p&#62;
&#60;p&#62;The css fix works.&#60;br /&#62;
But everything else doesn't work.&#60;/p&#62;
&#60;p&#62;All thumbnails are in the right dimension. (i checked this also at my lokal system)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Gallery View with latest Update broken"</title>
			<link>http://www.kriesi.at/support/topic/gallery-view-with-latest-update-broken#post-91334</link>
			<pubDate>Sun, 13 Jan 2013 09:12:59 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">91334@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;1) To fix the column issue add following css code to css/custom.css or the quick css field:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;.gallery br {
display: block !important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;2) Please try to regenerate the thumbnails with: &#60;a href=&#34;http://wordpress.org/extend/plugins/regenerate-thumbnails/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/regenerate-thumbnails/&#60;/a&#62; and/or try to use another thumbnail size (the gallery shortcode: &#60;a href=&#34;http://codex.wordpress.org/Gallery_Shortcode&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Gallery_Shortcode&#60;/a&#62; allows you to change the default thumbnail size). I.e. use:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[gallery columns=&#38;quot;4&#38;quot; size=&#38;quot;medium&#38;quot;]&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>naranili on "Gallery View with latest Update broken"</title>
			<link>http://www.kriesi.at/support/topic/gallery-view-with-latest-update-broken#post-91294</link>
			<pubDate>Sat, 12 Jan 2013 19:24:28 +0000</pubDate>
			<dc:creator>naranili</dc:creator>
			<guid isPermaLink="false">91294@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;No.&#60;br /&#62;
The gallery don't use the thumbnails and isn't displayed right, as you could see at link i gave you at the first post.&#60;br /&#62;
But the thumbnails are generated right. This means that the right thumbnail files are at the file-system, but the gallery don't use this.&#60;/p&#62;
&#60;p&#62;And also i only get 6 colums, even if i define some other setting at the &#34;insert gallery&#34; function or the columns=&#34;&#34; setting at the gallery shortcode.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Gallery View with latest Update broken"</title>
			<link>http://www.kriesi.at/support/topic/gallery-view-with-latest-update-broken#post-91206</link>
			<pubDate>Fri, 11 Jan 2013 21:54:02 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">91206@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;So is the gallery working correctly for you now?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>naranili on "Gallery View with latest Update broken"</title>
			<link>http://www.kriesi.at/support/topic/gallery-view-with-latest-update-broken#post-91153</link>
			<pubDate>Fri, 11 Jan 2013 16:05:40 +0000</pubDate>
			<dc:creator>naranili</dc:creator>
			<guid isPermaLink="false">91153@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Oh. I fogott.&#60;br /&#62;
The thumbnails are generated rwith the right dimensions.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>naranili on "Gallery View with latest Update broken"</title>
			<link>http://www.kriesi.at/support/topic/gallery-view-with-latest-update-broken#post-91151</link>
			<pubDate>Fri, 11 Jan 2013 16:04:50 +0000</pubDate>
			<dc:creator>naranili</dc:creator>
			<guid isPermaLink="false">91151@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Nothing happened.&#60;br /&#62;
(Even all old articles before i update to 1.6 and WP 3.5 works, without generating a new gallery link)&#60;/p&#62;
&#60;p&#62;As you could see from the source-code the full image is used, and not the generated preview image.&#60;/p&#62;
&#60;p&#62;I also defined at the WP-Backend that i will use 3 columns. But i will get 6 columns. Why do i define this, when it doesn't work ??&#60;/p&#62;
&#60;p&#62;&#38;lt;dl class='gallery-item'&#38;gt;&#60;br /&#62;
			&#38;lt;dt class='gallery-icon'&#38;gt;&#60;br /&#62;
				&#60;a href='http://niklas.naranili.de/files/2013/01/Dezember-2-078-1280.jpg' title='Dezember 2 078-1280'&#62;&#60;img src=&#34;http://niklas.naranili.de/files/2013/01/Dezember-2-078-1280.jpg&#34; alt=&#34;Dezember 2 078-1280&#34; /&#62;&#60;/a&#62;&#60;br /&#62;
			&#38;lt;/dt&#38;gt;&#38;lt;/dl&#38;gt;&#38;lt;br style=&#34;clear: both&#34; /&#38;gt;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Can&#039;t define &#34;Featured Image&#34;. So some othe plugins failed"</title>
			<link>http://www.kriesi.at/support/topic/cant-define-featured-image-so-some-othe-plugins-failed#post-90992</link>
			<pubDate>Thu, 10 Jan 2013 15:37:51 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">90992@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi naranili,&#60;/p&#62;
&#60;p&#62;Go into the theme files and open functions-choices.php. Look for:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;//remove post thumbnails from pages, posts and various custom post types
if(!function_exists(&#38;#39;avia_remove_post_thumbnails&#38;#39;))
{
	add_theme_support( &#38;#39;post-thumbnails&#38;#39; );

	add_action(&#38;#39;posts_selection&#38;#39;, &#38;#39;avia_remove_post_thumbnails&#38;#39;);
	add_action(&#38;#39;init&#38;#39;, &#38;#39;avia_remove_post_thumbnails&#38;#39;);
	add_filter(&#38;#39;post_updated_messages&#38;#39;,&#38;#39;avia_remove_post_thumbnails&#38;#39;);
	function avia_remove_post_thumbnails($msg)
	{
		global $post_type;
		$remove_when = array(&#38;#39;post&#38;#39;,&#38;#39;page&#38;#39;,&#38;#39;portfolio&#38;#39;);

		if(is_admin())
		{
			foreach($remove_when as $remove)
			{
				if($post_type == $remove &#124;&#124; (isset($_GET[&#38;#39;post_type&#38;#39;]) &#38;amp;&#38;amp; $_GET[&#38;#39;post_type&#38;#39;] == $remove)) { remove_theme_support( &#38;#39;post-thumbnails&#38;#39; ); };
			}
		}

		return $msg;
	}
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and replace it with:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;//remove post thumbnails from pages, posts and various custom post types
//if(!function_exists(&#38;#39;avia_remove_post_thumbnails&#38;#39;))
//{
	add_theme_support( &#38;#39;post-thumbnails&#38;#39; );
//
//	add_action(&#38;#39;posts_selection&#38;#39;, &#38;#39;avia_remove_post_thumbnails&#38;#39;);
//	add_action(&#38;#39;init&#38;#39;, &#38;#39;avia_remove_post_thumbnails&#38;#39;);
//	add_filter(&#38;#39;post_updated_messages&#38;#39;,&#38;#39;avia_remove_post_thumbnails&#38;#39;);
//	function avia_remove_post_thumbnails($msg)
//	{
//		global $post_type;
//		$remove_when = array(&#38;#39;post&#38;#39;,&#38;#39;page&#38;#39;,&#38;#39;portfolio&#38;#39;);
//
//		if(is_admin())
//		{
//			foreach($remove_when as $remove)
//			{
//				if($post_type == $remove &#124;&#124; (isset($_GET[&#38;#39;post_type&#38;#39;]) &#38;amp;&#38;amp; $_GET[&#38;#39;post_type&#38;#39;] == $remove)) { remove_theme_support( &#38;#39;post-thumbnails&#38;#39; ); };
//			}
//		}
//
//		return $msg;
//	}
//}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;This should be lines around lines 325-348.&#60;/p&#62;
&#60;p&#62;You can then set the featured image in the Add Image pop up that appears when adding media to the visual editor.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Gallery View with latest Update broken"</title>
			<link>http://www.kriesi.at/support/topic/gallery-view-with-latest-update-broken#post-90989</link>
			<pubDate>Thu, 10 Jan 2013 15:22:05 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">90989@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi naranili,&#60;/p&#62;
&#60;p&#62;Try removing the gallery and then adding it back in via the new Add Media system (introduced in WP3.5).&#60;/p&#62;
&#60;p&#62;You could also try regenerating your thumbnails in case somehow the taller ones in that gallery weren't properly generated using: &#60;a href=&#34;http://wordpress.org/extend/plugins/regenerate-thumbnails/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/regenerate-thumbnails/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>naranili on "Can&#039;t define &#34;Featured Image&#34;. So some othe plugins failed"</title>
			<link>http://www.kriesi.at/support/topic/cant-define-featured-image-so-some-othe-plugins-failed#post-90859</link>
			<pubDate>Wed, 09 Jan 2013 19:58:49 +0000</pubDate>
			<dc:creator>naranili</dc:creator>
			<guid isPermaLink="false">90859@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;With the latest release of the choices theme i can't define a &#34;featured image&#34;.&#60;br /&#62;
So some other plugins, that uses this, faild (e.g. RSS images, ...)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>naranili on "Gallery View with latest Update broken"</title>
			<link>http://www.kriesi.at/support/topic/gallery-view-with-latest-update-broken#post-90858</link>
			<pubDate>Wed, 09 Jan 2013 19:56:39 +0000</pubDate>
			<dc:creator>naranili</dc:creator>
			<guid isPermaLink="false">90858@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Please take a look at this &#60;a href=&#34;http://niklas.naranili.de/la-pine/#&#34; rel=&#34;nofollow&#34;&#62;http://niklas.naranili.de/la-pine/#&#60;/a&#62;!prettyPhoto&#60;/p&#62;
&#60;p&#62;It looks like that the gallery view is broken. I updated to WP 3.5 and Choices 1.6.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
