<?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: Selective Use of the &#34;Additional Heading&#34; Space</title>
		<link>http://www.kriesi.at/support/topic/selective-use-of-the-additional-heading-space</link>
		<description>Support Forum - Topic: Selective Use of the &quot;Additional Heading&quot; Space</description>
		<language>en-US</language>
		<pubDate>Wed, 19 Jun 2013 01:47:06 +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/selective-use-of-the-additional-heading-space" rel="self" type="application/rss+xml" />

		<item>
			<title>Dude on "Selective Use of the &#34;Additional Heading&#34; Space"</title>
			<link>http://www.kriesi.at/support/topic/selective-use-of-the-additional-heading-space#post-37531</link>
			<pubDate>Fri, 13 Jan 2012 08:17:28 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">37531@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
add following code to style.css:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#wrapper_featured_area{
display: none !important;
}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>kprotopapas on "Selective Use of the &#34;Additional Heading&#34; Space"</title>
			<link>http://www.kriesi.at/support/topic/selective-use-of-the-additional-heading-space#post-37496</link>
			<pubDate>Thu, 12 Jan 2012 21:20:20 +0000</pubDate>
			<dc:creator>kprotopapas</dc:creator>
			<guid isPermaLink="false">37496@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;What can I modify to just turn off the headline everywhere?  That big white stripe is just awful looking.&#60;/p&#62;
&#60;p&#62;here is what I'm talking about:  &#60;a href=&#34;http://kprotopapas.com/?page_id=46&#34; rel=&#34;nofollow&#34;&#62;http://kprotopapas.com/?page_id=46&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>James Morrison on "Selective Use of the &#34;Additional Heading&#34; Space"</title>
			<link>http://www.kriesi.at/support/topic/selective-use-of-the-additional-heading-space#post-12945</link>
			<pubDate>Tue, 15 Feb 2011 09:59:33 +0000</pubDate>
			<dc:creator>James Morrison</dc:creator>
			<guid isPermaLink="false">12945@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;/p&#62;
&#60;p&#62;Awesome, glad to hear you've got this working as you want.&#60;/p&#62;
&#60;p&#62;Let us know if you have any other questions.&#60;/p&#62;
&#60;p&#62;James
&#60;/p&#62;</description>
		</item>
		<item>
			<title>rlfinc on "Selective Use of the &#34;Additional Heading&#34; Space"</title>
			<link>http://www.kriesi.at/support/topic/selective-use-of-the-additional-heading-space#post-12903</link>
			<pubDate>Mon, 14 Feb 2011 16:43:33 +0000</pubDate>
			<dc:creator>rlfinc</dc:creator>
			<guid isPermaLink="false">12903@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Dude, you can close this one out.  Custom fields did the trick.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>James Morrison on "Selective Use of the &#34;Additional Heading&#34; Space"</title>
			<link>http://www.kriesi.at/support/topic/selective-use-of-the-additional-heading-space#post-11557</link>
			<pubDate>Wed, 19 Jan 2011 12:23:22 +0000</pubDate>
			<dc:creator>James Morrison</dc:creator>
			<guid isPermaLink="false">11557@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;/p&#62;
&#60;p&#62;Firstly if you're getting errors I'd recommend starting with a fresh copy of the template files.&#60;/p&#62;
&#60;p&#62;The code Dude posted above tells the page to show the content on any page except the front page / home page because of this code:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;if ( !is_front_page() ) {&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;This can be modified to not show up on other pages or you can use the code elsewhere in the code to further customise which code will show up on certain pages.&#60;/p&#62;
&#60;p&#62;For example, to stop the breadcrumbs showing up on a page called about, you could use this code:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php 

#breadcrumb navigation
if(!is_front_page()){

if($k_option[&#38;#39;custom&#38;#39;][&#38;#39;headlineContent&#38;#39;] == &#38;#39;&#38;#39;)
{
	$headline = get_post_meta($post-&#38;gt;ID, &#38;quot;_headline&#38;quot;, true);
	if($headline != &#38;quot;&#38;quot;) $headline = &#38;#39;&#38;lt;h2&#38;gt;&#38;#39;.$headline.&#38;#39;&#38;lt;/h2&#38;gt;&#38;#39;;
}
else
{
	$headline = $k_option[&#38;#39;custom&#38;#39;][&#38;#39;headlineContent&#38;#39;];
}
	echo &#38;#39;&#38;lt;div class=&#38;quot;wrapper wrapper_heading ie6fix&#38;quot; id=&#38;quot;wrapper_featured_area&#38;quot;&#38;gt;&#38;#39;;
	echo &#38;#39;&#38;lt;div class=&#38;quot;overlay_top ie6fix&#38;quot;&#38;gt;&#38;lt;/div&#38;gt;&#38;#39;;
	echo &#38;#39;&#38;lt;div class=&#38;quot;overlay_bottom ie6fix&#38;quot;&#38;gt;&#38;#39;;

	echo &#38;#39;&#38;lt;/div&#38;gt;&#38;#39;;

	echo &#38;#39;&#38;lt;div class=&#38;quot;center&#38;quot;&#38;gt;&#38;#39;;
	if($headline != &#38;quot;&#38;quot;) echo $headline;
	echo &#38;#39;&#38;lt;/div&#38;gt;&#38;lt;/div&#38;gt;&#38;#39;;
	echo &#38;#39;&#38;lt;div class=&#38;quot;wrapper&#38;quot; id=&#38;quot;wrapper_stripe&#38;quot;&#38;gt;&#38;#39;;

if(!is_page(&#38;#39;about&#38;#39;)){

	if(class_exists(&#38;#39;kclass_breadcrumb&#38;#39;)){ $bc = new kclass_breadcrumb; }

}

	echo &#38;#39;&#38;lt;/div&#38;gt;&#38;#39;;
}
?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You can get a full list of template tags from the &#60;a href=&#34;http://codex.wordpress.org/Conditional_Tags&#34;&#62;Conditional Tags&#60;/a&#62; page in the &#60;a href=&#34;http://codex.wordpress.org/&#34;&#62;WordPress Codex&#60;/a&#62;.&#60;/p&#62;
&#60;p&#62;Hope this helps!&#60;/p&#62;
&#60;p&#62;James
&#60;/p&#62;</description>
		</item>
		<item>
			<title>rlfinc on "Selective Use of the &#34;Additional Heading&#34; Space"</title>
			<link>http://www.kriesi.at/support/topic/selective-use-of-the-additional-heading-space#post-11510</link>
			<pubDate>Tue, 18 Jan 2011 16:05:20 +0000</pubDate>
			<dc:creator>rlfinc</dc:creator>
			<guid isPermaLink="false">11510@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Messing around last night I came up with something that works, but wouldn't be nearly as clean as what you are proposing. &#60;/p&#62;
&#60;p&#62;So if I need to exclude a page with an ID of 2, how would I amend the above code.  I'm getting an error an undefined method error, so I am obviously wrong in my placement.&#60;/p&#62;
&#60;p&#62;Appreciate the help.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Selective Use of the &#34;Additional Heading&#34; Space"</title>
			<link>http://www.kriesi.at/support/topic/selective-use-of-the-additional-heading-space#post-11474</link>
			<pubDate>Tue, 18 Jan 2011 09:54:50 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">11474@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
the additional header is created by following code in header.php:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php 

#breadcrumb navigation
if(!is_front_page()){

if($k_option[&#38;#39;custom&#38;#39;][&#38;#39;headlineContent&#38;#39;] == &#38;#39;&#38;#39;)
{
	$headline = get_post_meta($post-&#38;gt;ID, &#38;quot;_headline&#38;quot;, true);
	if($headline != &#38;quot;&#38;quot;) $headline = &#38;#39;&#38;lt;h2&#38;gt;&#38;#39;.$headline.&#38;#39;&#38;lt;/h2&#38;gt;&#38;#39;;
}
else
{
	$headline = $k_option[&#38;#39;custom&#38;#39;][&#38;#39;headlineContent&#38;#39;];
}
	echo &#38;#39;&#38;lt;div class=&#38;quot;wrapper wrapper_heading ie6fix&#38;quot; id=&#38;quot;wrapper_featured_area&#38;quot;&#38;gt;&#38;#39;;
	echo &#38;#39;&#38;lt;div class=&#38;quot;overlay_top ie6fix&#38;quot;&#38;gt;&#38;lt;/div&#38;gt;&#38;#39;;
	echo &#38;#39;&#38;lt;div class=&#38;quot;overlay_bottom ie6fix&#38;quot;&#38;gt;&#38;#39;;

	echo &#38;#39;&#38;lt;/div&#38;gt;&#38;#39;;

	echo &#38;#39;&#38;lt;div class=&#38;quot;center&#38;quot;&#38;gt;&#38;#39;;
	if($headline != &#38;quot;&#38;quot;) echo $headline;
	echo &#38;#39;&#38;lt;/div&#38;gt;&#38;lt;/div&#38;gt;&#38;#39;;
	echo &#38;#39;&#38;lt;div class=&#38;quot;wrapper&#38;quot; id=&#38;quot;wrapper_stripe&#38;quot;&#38;gt;&#38;#39;;
	if(class_exists(&#38;#39;kclass_breadcrumb&#38;#39;)){ $bc = new kclass_breadcrumb; }
	echo &#38;#39;&#38;lt;/div&#38;gt;&#38;#39;;
}
?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You can use post meta, etc. to exlude/include the output on an individual basis.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>rlfinc on "Selective Use of the &#34;Additional Heading&#34; Space"</title>
			<link>http://www.kriesi.at/support/topic/selective-use-of-the-additional-heading-space#post-11452</link>
			<pubDate>Mon, 17 Jan 2011 21:38:52 +0000</pubDate>
			<dc:creator>rlfinc</dc:creator>
			<guid isPermaLink="false">11452@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;How difficult would it be to modify the theme to display the additional heading DIV on selective pages.  That is, can I use it on some pages and not others.  For example, I'd like to keep the strip at the top of the portfolio to utilize the sort functions, but on most pages I could do without it.  Any help would be appreciated.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
