<?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: Extra widget for a specific category is not showing up</title>
		<link>http://www.kriesi.at/support/topic/extra-widget-for-a-specific-category-is-not-showing-up</link>
		<description>Support Forum - Topic: Extra widget for a specific category is not showing up</description>
		<language>en-US</language>
		<pubDate>Thu, 23 May 2013 18:31:21 +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/extra-widget-for-a-specific-category-is-not-showing-up" rel="self" type="application/rss+xml" />

		<item>
			<title>Dude on "Extra widget for a specific category is not showing up"</title>
			<link>http://www.kriesi.at/support/topic/extra-widget-for-a-specific-category-is-not-showing-up#post-72046</link>
			<pubDate>Tue, 21 Aug 2012 08:04:01 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">72046@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I fixed the issue - for anyone else benefit: open up newscast\framework\helper_functions\lots_of_small_helpers.php and replace:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;##################################################################
# check if the current page has a custom widget and set a global
# var if that the case
##################################################################
function check_custom_widget()
{
	global $custom_widget_area, $k_option;
	//special widget area
	$specialpage = explode(&#38;#39;,&#38;#39;,$k_option[&#38;#39;includes&#38;#39;][&#38;#39;multi_widget_final&#38;#39;]);
	$specialcat = explode(&#38;#39;,&#38;#39;,$k_option[&#38;#39;includes&#38;#39;][&#38;#39;multi_widget_cat_final&#38;#39;]); 

	if(is_page($specialpage))
	{
		$custom_widget_area = get_the_title();
	}
	else if(is_category($specialcat) &#124;&#124; ($k_option[&#38;#39;includes&#38;#39;][&#38;#39;single_post_multi_widget_cat&#38;#39;] != 2 &#38;amp;&#38;amp; in_category($specialcat)))
	{
		$custom_widget_area = get_the_category();
		$custom_widget_area = $custom_widget_area[0]-&#38;gt;cat_name;
	}

}
add_action(&#38;#39;wp_head&#38;#39;, &#38;#39;check_custom_widget&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;with:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;##################################################################
# check if the current page has a custom widget and set a global
# var if that the case
##################################################################
function check_custom_widget()
{
	global $custom_widget_area, $k_option;
	//special widget area
	$specialpage = explode(&#38;#39;,&#38;#39;,$k_option[&#38;#39;includes&#38;#39;][&#38;#39;multi_widget_final&#38;#39;]);
	$specialcats = explode(&#38;#39;,&#38;#39;,$k_option[&#38;#39;includes&#38;#39;][&#38;#39;multi_widget_cat_final&#38;#39;]); 

	if(is_page($specialpage))
	{
		$custom_widget_area = get_the_title();
	}

	foreach ($specialcats as $specialcat)
	{
		if ( is_archive() &#38;amp;&#38;amp; is_category($specialcat) )
		{
			 $cat = get_category( get_query_var( &#38;#39;cat&#38;#39; ) );
			 $custom_widget_area = $cat-&#38;gt;name;
		}
		else if( is_single() &#38;amp;&#38;amp; (is_category($specialcat) &#124;&#124; ($k_option[&#38;#39;includes&#38;#39;][&#38;#39;single_post_multi_widget_cat&#38;#39;] != 2 &#38;amp;&#38;amp; in_category($specialcat))) )
		{
			$custom_widget_area = get_the_category();
			$custom_widget_area = $custom_widget_area[0]-&#38;gt;cat_name;
		}
	}

}
add_action(&#38;#39;wp_head&#38;#39;, &#38;#39;check_custom_widget&#38;#39;);&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>Devin on "Extra widget for a specific category is not showing up"</title>
			<link>http://www.kriesi.at/support/topic/extra-widget-for-a-specific-category-is-not-showing-up#post-71951</link>
			<pubDate>Mon, 20 Aug 2012 19:48:07 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">71951@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I've tagged the topic so Peter has it in his personal queue as well :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Boris on "Extra widget for a specific category is not showing up"</title>
			<link>http://www.kriesi.at/support/topic/extra-widget-for-a-specific-category-is-not-showing-up#post-71940</link>
			<pubDate>Mon, 20 Aug 2012 18:27:26 +0000</pubDate>
			<dc:creator>Boris</dc:creator>
			<guid isPermaLink="false">71940@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Mail is sent.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Extra widget for a specific category is not showing up"</title>
			<link>http://www.kriesi.at/support/topic/extra-widget-for-a-specific-category-is-not-showing-up#post-71905</link>
			<pubDate>Mon, 20 Aug 2012 15:39:05 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">71905@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey! &#60;/p&#62;
&#60;p&#62; Please send the login data to: &#60;a href=&#34;mailto:kriesi2000-dude@yahoo.com&#34;&#62;kriesi2000-dude@yahoo.com&#60;/a&#62; - I'll try to find the problem. &#60;/p&#62;
&#60;p&#62; Regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Extra widget for a specific category is not showing up"</title>
			<link>http://www.kriesi.at/support/topic/extra-widget-for-a-specific-category-is-not-showing-up#post-71887</link>
			<pubDate>Mon, 20 Aug 2012 13:00:27 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">71887@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Boris,&#60;/p&#62;
&#60;p&#62;I received your email and I perfectly understand. Someone will be with you asap!&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Boris on "Extra widget for a specific category is not showing up"</title>
			<link>http://www.kriesi.at/support/topic/extra-widget-for-a-specific-category-is-not-showing-up#post-71871</link>
			<pubDate>Mon, 20 Aug 2012 11:29:17 +0000</pubDate>
			<dc:creator>Boris</dc:creator>
			<guid isPermaLink="false">71871@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Allright, I sent a mail. Got it?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Extra widget for a specific category is not showing up"</title>
			<link>http://www.kriesi.at/support/topic/extra-widget-for-a-specific-category-is-not-showing-up#post-71779</link>
			<pubDate>Sun, 19 Aug 2012 20:32:11 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">71779@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Boris,&#60;/p&#62;
&#60;p&#62; My email is usjahm[at]gmail.com. I will look at it. When did you install wordpress approximately, and at what version originally? If you are not on shared hosting can you setup a limited ftp account please for that wordpress installation. If you can't, that's fine also.&#60;/p&#62;
&#60;p&#62;Thanks, &#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Boris on "Extra widget for a specific category is not showing up"</title>
			<link>http://www.kriesi.at/support/topic/extra-widget-for-a-specific-category-is-not-showing-up#post-71757</link>
			<pubDate>Sun, 19 Aug 2012 12:53:53 +0000</pubDate>
			<dc:creator>Boris</dc:creator>
			<guid isPermaLink="false">71757@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Nick,&#60;/p&#62;
&#60;p&#62;maybe it is the easiest way, to give you adminaccess. Let me know your emailadress and I send you the logindata.&#60;br /&#62;
At the moment I don't have it setup, but this is the story:&#60;/p&#62;
&#60;p&#62;- A Textwidget displays in any category (left or right sidebar) except &#34;Kletterbericht&#34; (and it does not show up anywhere else either, as described in the helpfile (bug) )&#60;br /&#62;
- Kletterbericht is the first category I added.&#60;/p&#62;
&#60;p&#62;Boris (www.kletterbericht.de)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Extra widget for a specific category is not showing up"</title>
			<link>http://www.kriesi.at/support/topic/extra-widget-for-a-specific-category-is-not-showing-up#post-71747</link>
			<pubDate>Sun, 19 Aug 2012 08:40:22 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">71747@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Please tell us what category, which widget, on what page doesn't show up and where the widget area is located on that page. Does this occur on just a single category page? Sequentially, is it the first, middle, or last category you've entered when compared to other categories? &#60;/p&#62;
&#60;p&#62;Unfortunately, the old post tells us very little except that the support team member never got access to investigate the phenomenon, so it remains a mystery. However please provide us with some more details, and please be as specific as you can about when, how, where this occurs, and whether its consistent or random.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Boris on "Extra widget for a specific category is not showing up"</title>
			<link>http://www.kriesi.at/support/topic/extra-widget-for-a-specific-category-is-not-showing-up#post-71539</link>
			<pubDate>Fri, 17 Aug 2012 11:28:51 +0000</pubDate>
			<dc:creator>Boris</dc:creator>
			<guid isPermaLink="false">71539@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;In addition the the posted problem I would like to ask, if it is possible to give the posts more space in width in the categories, even if I am using two or three colums on the frontpage. Is it true, that this would afford major coding?&#60;/p&#62;
&#60;p&#62;Best Boris
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Boris on "Extra widget for a specific category is not showing up"</title>
			<link>http://www.kriesi.at/support/topic/extra-widget-for-a-specific-category-is-not-showing-up#post-71388</link>
			<pubDate>Thu, 16 Aug 2012 15:49:40 +0000</pubDate>
			<dc:creator>Boris</dc:creator>
			<guid isPermaLink="false">71388@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I am having a problem with extra widget areas, that are not showing up in a specific categorie I definded.&#60;/p&#62;
&#60;p&#62;This problem ist described in this unsolved topic, and when I bumped it a few days ago someone closed the topic :-)&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.kriesi.at/support/topic/extra-widget-areas-for-specific-categories-not-working&#34; rel=&#34;nofollow&#34;&#62;http://www.kriesi.at/support/topic/extra-widget-areas-for-specific-categories-not-working&#60;/a&#62;.&#60;/p&#62;
&#60;p&#62;Maybe someone can help?&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Boris
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
