<?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 - Tag: recent comments - Recent Posts</title>
		<link>http://www.kriesi.at/support/tags/recent-comments</link>
		<description>Support Forum - Tag: recent comments - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Sun, 19 May 2013 15:04:01 +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/tags/recent-comments" rel="self" type="application/rss+xml" />

		<item>
			<title>cameljok on "Portfolio AND Blog Posts in Combo Widget"</title>
			<link>http://www.kriesi.at/support/topic/portfolio-and-blog-posts-in-combo-widget#post-82929</link>
			<pubDate>Thu, 08 Nov 2012 19:16:20 +0000</pubDate>
			<dc:creator>cameljok</dc:creator>
			<guid isPermaLink="false">82929@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Ok, thanks! :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Portfolio AND Blog Posts in Combo Widget"</title>
			<link>http://www.kriesi.at/support/topic/portfolio-and-blog-posts-in-combo-widget#post-82662</link>
			<pubDate>Wed, 07 Nov 2012 13:45:28 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">82662@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey cameljok,&#60;/p&#62;
&#60;p&#62;That sounds correct. Just make sure to save a backup of the file you edited so when you update the theme or framework you can easily re-apply your change :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>cameljok on "Portfolio AND Blog Posts in Combo Widget"</title>
			<link>http://www.kriesi.at/support/topic/portfolio-and-blog-posts-in-combo-widget#post-82594</link>
			<pubDate>Tue, 06 Nov 2012 22:18:26 +0000</pubDate>
			<dc:creator>cameljok</dc:creator>
			<guid isPermaLink="false">82594@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Err... so minutes after I posted this, the comments from the portfolio entries started showing up in the box. So maybe it already works like that and it was just torturing me for awhile? &#60;/p&#62;
&#60;p&#62;I would still like to know if my solutions for the recent and popular posts is a good one or not. I know it's working... but I don't know enough about coding to know if it will break the way something else is supposed to work later down the line. :)&#60;/p&#62;
&#60;p&#62;Thanks for a great theme!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>cameljok on "Portfolio AND Blog Posts in Combo Widget"</title>
			<link>http://www.kriesi.at/support/topic/portfolio-and-blog-posts-in-combo-widget#post-82592</link>
			<pubDate>Tue, 06 Nov 2012 22:08:39 +0000</pubDate>
			<dc:creator>cameljok</dc:creator>
			<guid isPermaLink="false">82592@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I've seen this question asked a few different ways in this forum, so I figured out from those posts how to make portfolio and blog posts show up under latest posts and popular posts in the Combo Widget (though I'm not sure it's the best way...), but I can't figure out how to make that work with the latest comments.&#60;/p&#62;
&#60;p&#62;For the latest posts and most popular posts, I opened up class-frameworks-widget.php and basically added a second 'avia_get_post_list' to call the portfolio posts and left the blog posts intact, rather than replacing it. When I change how many I want shown in the widget area, it will show that many of EACH type.  &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;echo &#38;#39;&#38;lt;div class=&#38;quot;tab first_tab widget_tab_popular&#38;quot;&#38;gt;&#38;lt;span&#38;gt;&#38;#39;.__(&#38;#39;Popular&#38;#39;, &#38;#39;avia_framework&#38;#39;).&#38;#39;&#38;lt;/span&#38;gt;&#38;lt;/div&#38;gt;&#38;#39;;
		echo &#38;quot;&#38;lt;div class=&#38;#39;tab_content&#38;#39;&#38;gt;&#38;quot;;
		avia_get_post_list(&#38;#39;post_type=portfolio&#38;amp;cat=&#38;amp;orderby=comment_count&#38;amp;posts_per_page=&#38;#39;.$posts);
		avia_get_post_list(&#38;#39;cat=&#38;amp;orderby=comment_count&#38;amp;posts_per_page=&#38;#39;.$posts);
		echo &#38;quot;&#38;lt;/div&#38;gt;&#38;quot;;

		echo &#38;#39;&#38;lt;div class=&#38;quot;tab widget_tab_recent&#38;quot;&#38;gt;&#38;lt;span&#38;gt;&#38;#39;.__(&#38;#39;Recent&#38;#39;, &#38;#39;avia_framework&#38;#39;).&#38;#39;&#38;lt;/span&#38;gt;&#38;lt;/div&#38;gt;&#38;#39;;
		echo &#38;quot;&#38;lt;div class=&#38;#39;tab_content&#38;#39;&#38;gt;&#38;quot;;
		avia_get_post_list(&#38;#39;post_type=portfolio&#38;amp;showposts=&#38;#39;. $posts .&#38;#39;&#38;amp;orderby=post_date&#38;amp;order=asc&#38;#39;);
		avia_get_post_list(&#38;#39;showposts=&#38;#39;. $posts .&#38;#39;&#38;amp;orderby=post_date&#38;amp;order=desc&#38;#39;);
		echo &#38;quot;&#38;lt;/div&#38;gt;&#38;quot;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;The problem is... I don't really know what I'm doing, so I'm not sure if that is the best way to handle it, and ... I don't know how to produce the same effect with the comments section. Any ideas?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ameliaamelia on "HIDE blog sidebar eg. recent comments, archives, categories &#38; META - Move search"</title>
			<link>http://www.kriesi.at/support/topic/hide-blog-sidebar-eg-recent-comments-archives-categories-meta-move-search#post-39494</link>
			<pubDate>Tue, 31 Jan 2012 22:25:34 +0000</pubDate>
			<dc:creator>ameliaamelia</dc:creator>
			<guid isPermaLink="false">39494@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;THANK YOU!!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "HIDE blog sidebar eg. recent comments, archives, categories &#38; META - Move search"</title>
			<link>http://www.kriesi.at/support/topic/hide-blog-sidebar-eg-recent-comments-archives-categories-meta-move-search#post-39396</link>
			<pubDate>Tue, 31 Jan 2012 11:18:44 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">39396@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
you can deactivate the right sidebar by using the option panel (Flashlight &#38;gt; Theme Options) or drag'n'drop any other widgets of your choice into the &#34;Display Everywhere Right&#34; widget area. You can also place the search widget into the &#34;Displayed Everywhere Left&#34; area and it will be displayed underneath the menu.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ameliaamelia on "HIDE blog sidebar eg. recent comments, archives, categories &#38; META - Move search"</title>
			<link>http://www.kriesi.at/support/topic/hide-blog-sidebar-eg-recent-comments-archives-categories-meta-move-search#post-39291</link>
			<pubDate>Mon, 30 Jan 2012 09:23:26 +0000</pubDate>
			<dc:creator>ameliaamelia</dc:creator>
			<guid isPermaLink="false">39291@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;I am using the FLASHLIGHT theme. I do not want to connect this site to a blog I purely want to use this theme to display my pictures. How can I turn off the recent comments, archives, categories &#38;amp; META that appear on the right hand side of a page?&#60;/p&#62;
&#60;p&#62;Also if possible is there any way to move the search bar to underneath the left hand side navigation?&#60;/p&#62;
&#60;p&#62;Thank
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
