<?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: To many h1 Headings for SEO</title>
		<link>http://www.kriesi.at/support/topic/to-many-h1-headings-for-seo</link>
		<description>Support Forum - Topic: To many h1 Headings for SEO</description>
		<language>en-US</language>
		<pubDate>Thu, 23 May 2013 13:29: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/topic/to-many-h1-headings-for-seo" rel="self" type="application/rss+xml" />

		<item>
			<title>Ismael on "To many h1 Headings for SEO"</title>
			<link>http://www.kriesi.at/support/topic/to-many-h1-headings-for-seo#post-76289</link>
			<pubDate>Mon, 17 Sep 2012 17:30:11 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">76289@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;/p&#62;
&#60;p&#62;Glad you fixed it.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>zarako on "To many h1 Headings for SEO"</title>
			<link>http://www.kriesi.at/support/topic/to-many-h1-headings-for-seo#post-76248</link>
			<pubDate>Mon, 17 Sep 2012 15:45:55 +0000</pubDate>
			<dc:creator>zarako</dc:creator>
			<guid isPermaLink="false">76248@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Devin,&#60;/p&#62;
&#60;p&#62;I just found the solution after looking into the loop-portfolio.php file, I could see that it was calling the avia_title function with the $class set as 'portfolio-title' and by adding a conditional check in avia_title I was able to fix the issue..... &#60;/p&#62;
&#60;p&#62;Previously the portfolio entries were coming up with &#38;lt;h1&#38;gt; tags in their titels on both the homepage, but as well in the portfolio page, but by adding this code, I have changed them to &#38;lt;h3&#38;gt;.&#60;/p&#62;
&#60;p&#62;               if($class=='portfolio-title')&#60;br /&#62;
		{&#60;br /&#62;
			$output .= '&#38;lt;h3 class=&#34;main-title&#34;&#38;gt;'.$title.'&#38;lt;/h3&#38;gt;';&#60;br /&#62;
		}&#60;br /&#62;
		else&#60;br /&#62;
		{ 	$output .= '&#38;lt;h1 class=&#34;main-title&#34;&#38;gt;'.$title.'&#38;lt;/h1&#38;gt;';&#60;br /&#62;
		}
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "To many h1 Headings for SEO"</title>
			<link>http://www.kriesi.at/support/topic/to-many-h1-headings-for-seo#post-76227</link>
			<pubDate>Mon, 17 Sep 2012 14:32:46 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">76227@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Mikael,&#60;/p&#62;
&#60;p&#62;All of the dynamic elements are created with functions in includes&#38;gt;helper-template-dynamic.php. You should be able to go through and change the h1 elements to h2 or h3 as you need.&#60;/p&#62;
&#60;p&#62;This may require some additional css fixes and changes since the current layout and structure is based on them having h1 in the selector.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>zarako on "To many h1 Headings for SEO"</title>
			<link>http://www.kriesi.at/support/topic/to-many-h1-headings-for-seo#post-76224</link>
			<pubDate>Mon, 17 Sep 2012 14:16:05 +0000</pubDate>
			<dc:creator>zarako</dc:creator>
			<guid isPermaLink="false">76224@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Ismael,&#60;/p&#62;
&#60;p&#62;I have tried it with is_home() as well, and it it still serving up the &#38;lt;h1&#38;gt; tag on the homepage.&#60;br /&#62;
I currently have modified the avia_title function in functions-choherence.php to the following&#60;/p&#62;
&#60;p&#62;                if(is_home())&#60;br /&#62;
		{&#60;br /&#62;
			$output .= '&#38;lt;h3 class=&#34;main-title&#34;&#38;gt;'.$title.'&#38;lt;/h3&#38;gt;';&#60;br /&#62;
		}&#60;br /&#62;
		else&#60;br /&#62;
		{ 	$output .= '&#38;lt;h1 class=&#34;main-title&#34;&#38;gt;'.$title.'&#38;lt;/h1&#38;gt;';&#60;br /&#62;
		}&#60;/p&#62;
&#60;p&#62;but it is not working... It must be due to the page being configured dynamically and built in the Template Builder, as I can use is_home function in the header and it works fine there.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "To many h1 Headings for SEO"</title>
			<link>http://www.kriesi.at/support/topic/to-many-h1-headings-for-seo#post-76106</link>
			<pubDate>Sun, 16 Sep 2012 17:23:40 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">76106@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I think it is &#34;is_home&#34;.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>zarako on "To many h1 Headings for SEO"</title>
			<link>http://www.kriesi.at/support/topic/to-many-h1-headings-for-seo#post-76053</link>
			<pubDate>Sun, 16 Sep 2012 01:04:31 +0000</pubDate>
			<dc:creator>zarako</dc:creator>
			<guid isPermaLink="false">76053@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I would like to change the H1 &#34;main-title&#34; tag that is shown on my dynamic homepage when portfolio items are shown to H3, and I found the code in functions-coherence.php, but it is not working with is_home() nor is_frontpage().&#60;br /&#62;
Is there a Avia framework call that I can use to see if the page is the homepage?&#60;/p&#62;
&#60;p&#62;			if(is_front_page()) {&#60;br /&#62;
				$output .= '&#38;lt;h3 class=&#34;main-title&#34;&#38;gt;'.$title.'&#38;lt;/h3&#38;gt;';&#60;br /&#62;
			}&#60;br /&#62;
			else { $output .= '&#38;lt;h1 class=&#34;main-title&#34;&#38;gt;'.$title.'&#38;lt;/h1&#38;gt;';&#60;br /&#62;
			}&#60;/p&#62;
&#60;p&#62;...Mikael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>zarako on "To many h1 Headings for SEO"</title>
			<link>http://www.kriesi.at/support/topic/to-many-h1-headings-for-seo#post-76046</link>
			<pubDate>Sat, 15 Sep 2012 17:10:44 +0000</pubDate>
			<dc:creator>zarako</dc:creator>
			<guid isPermaLink="false">76046@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Thanks for great themes. I was looking at the Coherence theme and was concerned about all the H1 headings that is on the homepage.&#60;br /&#62;
Normally I would place the Logo as an H1 on the home page and then work my way down to h2, h3 etc, but on your demo as well on the site I am setting up which is pretty much the same configuration as your demo site, I ending up with way too many H1 that are competing for attentions.&#60;/p&#62;
&#60;p&#62;There are 8 H1 tags on the homepage:&#60;/p&#62;
&#60;p&#62;LOGO: Coherence	9&#60;/p&#62;
&#60;p&#62;WELCOME SLIDESHOW: A gourmet Theme	15&#60;br /&#62;
WELCOME SLIDESHOW: This is a smaller caption with more text	40&#60;/p&#62;
&#60;p&#62;PORTFOLIO ITEM: KEREMIC	7&#60;br /&#62;
PORTFOLIO ITEM: DISCOVER	8&#60;br /&#62;
PORTFOLIO ITEM: EXPERIMENTS	11&#60;br /&#62;
PORTFOLIO ITEM: IOS LOGO DESIGN	15&#60;/p&#62;
&#60;p&#62;Anyway without having to sift through the code too much to change that?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
