<?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 posts widget - Recent Posts</title>
		<link>http://www.kriesi.at/support/tags/recent-posts-widget</link>
		<description>Support Forum - Tag: recent posts widget - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Wed, 22 May 2013 22:40:46 +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-posts-widget" rel="self" type="application/rss+xml" />

		<item>
			<title>Ismael on "How to disable &#34;Recent Posts&#34; widget?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-disable-recent-posts-widget#post-94084</link>
			<pubDate>Wed, 30 Jan 2013 03:49:51 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">94084@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Not sure if this is what you want but this will remove the widget areas and of course the Recent Posts widget.&#60;/p&#62;
&#60;p&#62;Go to includes &#38;gt; admin, edit register-widget-area.php. Remove and replace everything with this code.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
// global $wp_registered_sidebars;
#########################################

if ( function_exists(&#38;#39;register_sidebar&#38;#39;) )
{
	$sidebars_to_show = array(&#38;#39;&#38;#39;);	 // (&#38;#39;.$sidebar.&#38;#39;)

		foreach ($sidebars_to_show as $sidebar)
		{	

		}

		foreach ($sidebars_to_show as $sidebar)
		{

		}

		foreach ($sidebars_to_show as $sidebar)
		{

		}

	//dynamic widgets

	#footer
	$footer_columns = avia_get_option(&#38;#39;footer_columns&#38;#39;,&#38;#39;5&#38;#39;);

	for ($i = 1; $i &#38;lt;= $footer_columns; $i++)
	{
		register_sidebar(array(
		&#38;#39;name&#38;#39; =&#38;gt; &#38;#39;Footer - column&#38;#39;.$i,
		&#38;#39;before_widget&#38;#39; =&#38;gt; &#38;#39;&#38;lt;div id=&#38;quot;%1$s&#38;quot; class=&#38;quot;widget %2$s&#38;quot;&#38;gt;&#38;#39;,
		&#38;#39;after_widget&#38;#39; =&#38;gt; &#38;#39;&#38;lt;span class=&#38;quot;seperator extralight-border&#38;quot;&#38;gt;&#38;lt;/span&#38;gt;&#38;lt;/div&#38;gt;&#38;#39;,
		&#38;#39;before_title&#38;#39; =&#38;gt; &#38;#39;&#38;lt;h3 class=&#38;quot;widgettitle&#38;quot;&#38;gt;&#38;#39;,
		&#38;#39;after_title&#38;#39; =&#38;gt; &#38;#39;&#38;lt;/h3&#38;gt;&#38;#39;,
		));
	}

		#extra widgets for pages
		$id_array = avia_check_custom_widget(&#38;#39;page&#38;#39;, &#38;#39;ids&#38;#39;);

		if(isset($id_array[0]))
		{
			foreach ($id_array as $page_id)
			{
				foreach ($sidebars_to_show as $sidebar)
				{
				if($page_id != &#38;quot;&#38;quot;)
				register_sidebar(array(
				&#38;#39;name&#38;#39; =&#38;gt; &#38;#39;Page: &#38;#39;.get_the_title($page_id).&#38;#39;&#38;#39;,
				&#38;#39;before_widget&#38;#39; =&#38;gt; &#38;#39;&#38;lt;div id=&#38;quot;%1$s&#38;quot; class=&#38;quot;widget %2$s&#38;quot;&#38;gt;&#38;#39;,
				&#38;#39;after_widget&#38;#39; =&#38;gt; &#38;#39;&#38;lt;span class=&#38;quot;seperator extralight-border&#38;quot;&#38;gt;&#38;lt;/span&#38;gt;&#38;lt;/div&#38;gt;&#38;#39;,
				&#38;#39;before_title&#38;#39; =&#38;gt; &#38;#39;&#38;lt;h3 class=&#38;quot;widgettitle&#38;quot;&#38;gt;&#38;#39;,
				&#38;#39;after_title&#38;#39; =&#38;gt; &#38;#39;&#38;lt;/h3&#38;gt;&#38;#39;,
				));

			}
		}
	}

		#extra widgets for categories
		$id_array = avia_check_custom_widget(&#38;#39;cat&#38;#39;, &#38;#39;ids&#38;#39;);

		if(isset($id_array[0]))
		{
			foreach ($id_array as $cat_id)
			{
				foreach ($sidebars_to_show as $sidebar)
				{
				if($cat_id != &#38;quot;&#38;quot;)
				register_sidebar(array(
				&#38;#39;name&#38;#39; =&#38;gt; &#38;#39;Category: &#38;#39;.get_the_category_by_ID($cat_id).&#38;#39;&#38;#39;,
				&#38;#39;before_widget&#38;#39; =&#38;gt; &#38;#39;&#38;lt;div id=&#38;quot;%1$s&#38;quot; class=&#38;quot;widget %2$s&#38;quot;&#38;gt;&#38;#39;,
				&#38;#39;after_widget&#38;#39; =&#38;gt; &#38;#39;&#38;lt;span class=&#38;quot;seperator extralight-border&#38;quot;&#38;gt;&#38;lt;/span&#38;gt;&#38;lt;/div&#38;gt;&#38;#39;,
				&#38;#39;before_title&#38;#39; =&#38;gt; &#38;#39;&#38;lt;h3 class=&#38;quot;widgettitle&#38;quot;&#38;gt;&#38;#39;,
				&#38;#39;after_title&#38;#39; =&#38;gt; &#38;#39;&#38;lt;/h3&#38;gt;&#38;#39;,
				));

			}
		}
	}

		#extra widgets for categories
		$name_array = avia_check_custom_widget(&#38;#39;dynamic_template&#38;#39;);

		if(isset($name_array))
		{
			foreach ($name_array as $name)
			{
				if($name != &#38;quot;&#38;quot;)
				register_sidebar(array(
				&#38;#39;name&#38;#39; =&#38;gt; &#38;#39;Dynamic Template: Widget &#38;#39;.$name,
				&#38;#39;before_widget&#38;#39; =&#38;gt; &#38;#39;&#38;lt;div id=&#38;quot;%1$s&#38;quot; class=&#38;quot;widget %2$s&#38;quot;&#38;gt;&#38;#39;,
				&#38;#39;after_widget&#38;#39; =&#38;gt; &#38;#39;&#38;lt;span class=&#38;quot;seperator extralight-border&#38;quot;&#38;gt;&#38;lt;/span&#38;gt;&#38;lt;/div&#38;gt;&#38;#39;,
				&#38;#39;before_title&#38;#39; =&#38;gt; &#38;#39;&#38;lt;h3 class=&#38;quot;widgettitle&#38;quot;&#38;gt;&#38;#39;,
				&#38;#39;after_title&#38;#39; =&#38;gt; &#38;#39;&#38;lt;/h3&#38;gt;&#38;#39;,
				));

		}
	}	

}

	function avia_dummy_widget($number)
	{
		switch($number)
		{

		}
	}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Colourstone on "How to disable &#34;Recent Posts&#34; widget?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-disable-recent-posts-widget#post-94080</link>
			<pubDate>Wed, 30 Jan 2013 03:18:53 +0000</pubDate>
			<dc:creator>Colourstone</dc:creator>
			<guid isPermaLink="false">94080@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Ismael,&#60;/p&#62;
&#60;p&#62;I need to remove it from the template!&#60;br /&#62;
It interferes with a more advanced plugin that is similar but has more options. How do I disable or remove that php code from the theme?&#60;br /&#62;
Sorry I wasn't specific enough.&#60;/p&#62;
&#60;p&#62;Thanks for the reply,&#60;br /&#62;
Brent
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "How to disable &#34;Recent Posts&#34; widget?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-disable-recent-posts-widget#post-94065</link>
			<pubDate>Wed, 30 Jan 2013 02:32:30 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">94065@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Go to Appearance &#38;gt; Widgets, remove the Recent Posts widget.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Colourstone on "How to disable &#34;Recent Posts&#34; widget?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-disable-recent-posts-widget#post-93966</link>
			<pubDate>Tue, 29 Jan 2013 18:21:59 +0000</pubDate>
			<dc:creator>Colourstone</dc:creator>
			<guid isPermaLink="false">93966@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Is there a way to disable the &#34;Recent Posts&#34; widget? I am trying to use a different widget for displaying this with additional options. The recents posts widget seems to block the other plugin from working. &#60;/p&#62;
&#60;p&#62;Thanks for the prompt reply, I have a client waiting.&#60;br /&#62;
Brent
&#60;/p&#62;</description>
		</item>
		<item>
			<title>310creative on "Having widgets / related post thumbnailsused for portfolio instead of blog posts"</title>
			<link>http://www.kriesi.at/support/topic/having-widgets-related-post-thumbnailsused-for-portfolio-instead-of-blog-posts#post-5267</link>
			<pubDate>Tue, 21 Sep 2010 21:38:25 +0000</pubDate>
			<dc:creator>310creative</dc:creator>
			<guid isPermaLink="false">5267@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;1. If i wanted to hypothetically use the portfolio to server as my blog since the portfolio has the sorting feature, how do i get the &#34;related posts&#34; thumbnails at the bottom of each blog posts to show-up at the bottom of the portfolio items instead?&#60;/p&#62;
&#60;p&#62;2. If the item above works, then how would i get the &#34;recent posts&#34; and &#34;most popular posts&#34; to display portfolio items instead of blog items
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
