<?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: Blog - Recent Posts</title>
		<link>http://www.kriesi.at/support/tags/blog</link>
		<description>Support Forum - Tag: Blog - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Mon, 20 May 2013 19:52:08 +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/blog" rel="self" type="application/rss+xml" />

		<item>
			<title>evergreenmedia on "Titles on blog page with h2 but single post title with h1"</title>
			<link>http://www.kriesi.at/support/topic/titles-on-blog-page-with-h2-but-single-post-title-with-h1#post-112159</link>
			<pubDate>Sat, 18 May 2013 14:25:10 +0000</pubDate>
			<dc:creator>evergreenmedia</dc:creator>
			<guid isPermaLink="false">112159@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks guys for all the help. Fantastic support! Conditionals work like a charm. Problem solved.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>shirazk8 on "View category as excerpts"</title>
			<link>http://www.kriesi.at/support/topic/view-category-as-excerpts#post-111930</link>
			<pubDate>Fri, 17 May 2013 14:26:47 +0000</pubDate>
			<dc:creator>shirazk8</dc:creator>
			<guid isPermaLink="false">111930@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Wow I feel a little dumb.&#60;/p&#62;
&#60;p&#62;Great support you guys! Thank you.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "View category as excerpts"</title>
			<link>http://www.kriesi.at/support/topic/view-category-as-excerpts#post-111909</link>
			<pubDate>Fri, 17 May 2013 07:14:21 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">111909@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi! &#60;/p&#62;
&#60;p&#62; You can use the more quicktag: &#60;a href=&#34;http://codex.wordpress.org/Customizing_the_Read_More&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Customizing_the_Read_More&#60;/a&#62; , &#60;a href=&#34;http://en.support.wordpress.com/splitting-content/more-tag/&#34; rel=&#34;nofollow&#34;&#62;http://en.support.wordpress.com/splitting-content/more-tag/&#60;/a&#62; to split your content into an excerpt and full version. &#60;/p&#62;
&#60;p&#62; Regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Titles on blog page with h2 but single post title with h1"</title>
			<link>http://www.kriesi.at/support/topic/titles-on-blog-page-with-h2-but-single-post-title-with-h1#post-111892</link>
			<pubDate>Fri, 17 May 2013 06:23:27 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">111892@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;You can try conditionals to change the headline - add following code to functions.php (insert it at the very end):&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function avia_default_title_filter($current_post)
	{
		$output  = &#38;quot;&#38;quot;;
$headline = is_single() ? &#38;#39;h1&#38;#39; : &#38;#39;h2&#38;#39;;
		$output .= &#38;quot;&#38;lt;$headline class=&#38;#39;post-title&#38;#39;&#38;gt;&#38;quot;;
		$output .= &#38;quot;	&#38;lt;a href=&#38;#39;&#38;quot;.get_permalink().&#38;quot;&#38;#39; rel=&#38;#39;bookmark&#38;#39; title=&#38;#39;&#38;quot;. __(&#38;#39;Permanent Link:&#38;#39;,&#38;#39;avia_framework&#38;#39;).&#38;quot; &#38;quot;.$current_post[&#38;#39;title&#38;#39;].&#38;quot;&#38;#39;&#38;gt;&#38;quot;.$current_post[&#38;#39;title&#38;#39;];
		$output .= &#38;quot;			&#38;lt;span class=&#38;#39;post-format-icon minor-meta&#38;#39;&#38;gt;&#38;lt;/span&#38;gt;&#38;quot;;
		$output .= &#38;quot;	&#38;lt;/a&#38;gt;&#38;quot;;
		$output .= &#38;quot;&#38;lt;/$headline&#38;gt;&#38;quot;;

		$current_post[&#38;#39;title&#38;#39;] = $output;

		return $current_post;
	}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>evergreenmedia on "Titles on blog page with h2 but single post title with h1"</title>
			<link>http://www.kriesi.at/support/topic/titles-on-blog-page-with-h2-but-single-post-title-with-h1#post-111794</link>
			<pubDate>Fri, 17 May 2013 01:25:18 +0000</pubDate>
			<dc:creator>evergreenmedia</dc:creator>
			<guid isPermaLink="false">111794@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;That's what I thought too. Well, is this something that will be changed in future versions? It would be a great SEO tweak ;)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>shirazk8 on "View category as excerpts"</title>
			<link>http://www.kriesi.at/support/topic/view-category-as-excerpts#post-111789</link>
			<pubDate>Fri, 17 May 2013 01:16:54 +0000</pubDate>
			<dc:creator>shirazk8</dc:creator>
			<guid isPermaLink="false">111789@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I'm having trouble getting blog posts to show only as excerpts when viewing a category. The demo site does this perfectly here: &#60;a href=&#34;http://www.kriesi.at/themes/enfold/category/frontpage-article/&#34; rel=&#34;nofollow&#34;&#62;http://www.kriesi.at/themes/enfold/category/frontpage-article/&#60;/a&#62; &#60;/p&#62;
&#60;p&#62;But I can't find how to do this on my site. &#60;a href=&#34;http://karenhume.ca/new/category/differentiation/&#34; rel=&#34;nofollow&#34;&#62;http://karenhume.ca/new/category/differentiation/&#60;/a&#62;&#60;br /&#62;
It is showing the full posts.&#60;/p&#62;
&#60;p&#62;Please help.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Titles on blog page with h2 but single post title with h1"</title>
			<link>http://www.kriesi.at/support/topic/titles-on-blog-page-with-h2-but-single-post-title-with-h1#post-111650</link>
			<pubDate>Thu, 16 May 2013 14:12:18 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">111650@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Alex,&#60;/p&#62;
&#60;p&#62;No, I don't believe so since it uses the same function. &#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>evergreenmedia on "Titles on blog page with h2 but single post title with h1"</title>
			<link>http://www.kriesi.at/support/topic/titles-on-blog-page-with-h2-but-single-post-title-with-h1#post-111398</link>
			<pubDate>Wed, 15 May 2013 15:21:34 +0000</pubDate>
			<dc:creator>evergreenmedia</dc:creator>
			<guid isPermaLink="false">111398@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Yes yes, but this changes the post title to h2 on both single and blog page. I want it to be h1 on a single post and and h2 on the blog page. Is that even possible?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Titles on blog page with h2 but single post title with h1"</title>
			<link>http://www.kriesi.at/support/topic/titles-on-blog-page-with-h2-but-single-post-title-with-h1#post-111274</link>
			<pubDate>Wed, 15 May 2013 03:27:40 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">111274@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Open includes &#38;gt; helper-post-format.php then find this code on line 48.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;/**
 *   The avia_default_title_filter creates the default title for your posts.
 *   This function is used by most post types
 */
if(!function_exists(&#38;#39;avia_default_title_filter&#38;#39;))
{
	function avia_default_title_filter($current_post)
	{
		$output  = &#38;quot;&#38;quot;;
		//$output .= &#38;quot;&#38;lt;h2 class=&#38;#39;post-title &#38;quot;. avia_offset_class(&#38;#39;meta&#38;#39;, false). &#38;quot;&#38;#39;&#38;gt;&#38;quot;;
		$output .= &#38;quot;&#38;lt;h2 class=&#38;#39;post-title&#38;#39;&#38;gt;&#38;quot;;
		$output .= &#38;quot;	&#38;lt;a href=&#38;#39;&#38;quot;.get_permalink().&#38;quot;&#38;#39; rel=&#38;#39;bookmark&#38;#39; title=&#38;#39;&#38;quot;. __(&#38;#39;Permanent Link:&#38;#39;,&#38;#39;avia_framework&#38;#39;).&#38;quot; &#38;quot;.$current_post[&#38;#39;title&#38;#39;].&#38;quot;&#38;#39;&#38;gt;&#38;quot;.$current_post[&#38;#39;title&#38;#39;];
		$output .= &#38;quot;			&#38;lt;span class=&#38;#39;post-format-icon minor-meta&#38;#39;&#38;gt;&#38;lt;/span&#38;gt;&#38;quot;;
		$output .= &#38;quot;	&#38;lt;/a&#38;gt;&#38;quot;;
		$output .= &#38;quot;&#38;lt;/h2&#38;gt;&#38;quot;;

		$current_post[&#38;#39;title&#38;#39;] = $output;

		return $current_post;
	}
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;It should be h2.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>evergreenmedia on "Titles on blog page with h2 but single post title with h1"</title>
			<link>http://www.kriesi.at/support/topic/titles-on-blog-page-with-h2-but-single-post-title-with-h1#post-111145</link>
			<pubDate>Tue, 14 May 2013 15:54:26 +0000</pubDate>
			<dc:creator>evergreenmedia</dc:creator>
			<guid isPermaLink="false">111145@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;friggin love the theme but it needs some small changes for decent onpage optimization. For example the post titles are h2 naturally. Now I already changed those to h1 and the header title to h3 (e.g. &#60;a href=&#34;http://www.evergreenmedia.at/interne-verlinkung/)&#34; rel=&#34;nofollow&#34;&#62;http://www.evergreenmedia.at/interne-verlinkung/)&#60;/a&#62;. But this also changes the post titles to h1 on the blog page (&#60;a href=&#34;http://www.evergreenmedia.at/blog/)&#34; rel=&#34;nofollow&#34;&#62;http://www.evergreenmedia.at/blog/)&#60;/a&#62;. I need the post titles on the blog page (listing of blog articles) to be h2. How do I accomplish this?&#60;/p&#62;
&#60;p&#62;Thanks in advance!&#60;/p&#62;
&#60;p&#62;Best regards,&#60;/p&#62;
&#60;p&#62;Alex
&#60;/p&#62;</description>
		</item>
		<item>
			<title>giabardo on "How to hide Blog author / categories / comment count &#124;&#124; How to remove the RSS"</title>
			<link>http://www.kriesi.at/support/topic/how-to-hide-blog-author-categories-comment-count-how-to-remove-the-rss#post-110818</link>
			<pubDate>Mon, 13 May 2013 07:56:18 +0000</pubDate>
			<dc:creator>giabardo</dc:creator>
			<guid isPermaLink="false">110818@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks Dude! It worked out-
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "how to remove the tags container from single blog post page, under the  body."</title>
			<link>http://www.kriesi.at/support/topic/how-to-remove-the-tags-container-from-single-blog-post-page-under-the-body#post-110603</link>
			<pubDate>Sun, 12 May 2013 00:43:37 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">110603@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Try&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;#top span.blog-tags{
display: none !important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;or you can always open up /includes/format-standard.php and find line 91-96 (in last version of Propulsion , which is 2.0) and remove that entire block of code&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;if(has_tag() &#38;amp;&#38;amp; is_single())
{
    echo &#38;#39;&#38;lt;span class=&#38;quot;blog-tags&#38;quot;&#38;gt;&#38;#39;;
    echo the_tags(&#38;#39;&#38;lt;strong&#38;gt;&#38;#39;.__(&#38;#39;Tags: &#38;#39;,&#38;#39;avia_framework&#38;#39;).&#38;#39;&#38;lt;/strong&#38;gt;&#38;lt;span&#38;gt;&#38;#39;);
    echo &#38;#39;&#38;lt;/span&#38;gt;&#38;lt;/span&#38;gt;&#38;#39;;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;That same block of code is also located in the following files on line-numbers indicated in files: format-gallery.php(93-98), format-link.php(116-121), format-quote.php(89-94), and loop-archive.php (57-62) in the same folder as the above file.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>atst on "how to remove the tags container from single blog post page, under the  body."</title>
			<link>http://www.kriesi.at/support/topic/how-to-remove-the-tags-container-from-single-blog-post-page-under-the-body#post-110299</link>
			<pubDate>Fri, 10 May 2013 09:22:29 +0000</pubDate>
			<dc:creator>atst</dc:creator>
			<guid isPermaLink="false">110299@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;.blog-tags{&#60;br /&#62;
display: none!important;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;this does not work does not work
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "How to hide Blog author / categories / comment count &#124;&#124; How to remove the RSS"</title>
			<link>http://www.kriesi.at/support/topic/how-to-hide-blog-author-categories-comment-count-how-to-remove-the-rss#post-109428</link>
			<pubDate>Tue, 07 May 2013 06:17:16 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">109428@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;1) Open up wp-content\themes\angular\includes\format-standard.php and delete following code:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;div class=&#38;#39;blog-inner-meta extralight-border&#38;#39;&#38;gt;

					&#38;lt;span class=&#38;#39;post-meta-infos&#38;#39;&#38;gt;

						&#38;lt;?php
						if(comments_open() &#124;&#124; get_comments_number())
						{
							echo &#38;quot;&#38;lt;span class=&#38;#39;comment-container minor-meta&#38;#39;&#38;gt;&#38;quot;;
							comments_popup_link(&#38;quot; &#38;lt;span&#38;gt;0 &#38;quot;.__(&#38;#39;Comments&#38;#39;,&#38;#39;avia_framework&#38;#39;).&#38;quot;&#38;lt;/span&#38;gt;&#38;quot;,
												&#38;quot; &#38;lt;span&#38;gt;1 &#38;quot;.__(&#38;#39;Comment&#38;#39; ,&#38;#39;avia_framework&#38;#39;).&#38;quot;&#38;lt;/span&#38;gt;&#38;quot;,
												&#38;quot; &#38;lt;span&#38;gt;% &#38;quot;.__(&#38;#39;Comments&#38;#39;,&#38;#39;avia_framework&#38;#39;).&#38;quot;&#38;lt;/span&#38;gt;&#38;quot;,&#38;#39;comments-link&#38;#39;,
												__(&#38;#39;Comments Off&#38;#39;  ,&#38;#39;avia_framework&#38;#39;));
							echo &#38;quot;&#38;lt;/span&#38;gt;&#38;lt;span class=&#38;#39;text-sep&#38;#39;&#38;gt;/&#38;lt;/span&#38;gt;&#38;quot;;
						}

						?&#38;gt;

						&#38;lt;?php
						$cats = get_the_category();

						if(!empty($cats))
						{
							echo &#38;#39;&#38;lt;span class=&#38;quot;blog-categories minor-meta&#38;quot;&#38;gt;&#38;#39;.__(&#38;#39;in &#38;#39;,&#38;#39;avia_framework&#38;#39;);
							the_category(&#38;#39;, &#38;#39;);
							echo &#38;#39; &#38;lt;/span&#38;gt;&#38;lt;span class=&#38;quot;text-sep&#38;quot;&#38;gt;/&#38;lt;/span&#38;gt; &#38;#39;;
						}

						$portfolio_cats = get_the_term_list(  get_the_ID(), &#38;#39;portfolio_entries&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;, &#38;#39;,&#38;#39;&#38;#39;);

						if($portfolio_cats &#38;amp;&#38;amp; !is_object($portfolio_cats))
						{
							echo &#38;#39;&#38;lt;span class=&#38;quot;blog-categories minor-meta&#38;quot;&#38;gt;&#38;#39;.__(&#38;#39;in &#38;#39;,&#38;#39;avia_framework&#38;#39;);
							echo $portfolio_cats;
							echo &#38;#39; &#38;lt;/span&#38;gt;&#38;lt;span class=&#38;quot;text-sep&#38;quot;&#38;gt;/&#38;lt;/span&#38;gt; &#38;#39;;
						}

						echo &#38;#39;&#38;lt;span class=&#38;quot;blog-author minor-meta&#38;quot;&#38;gt;&#38;#39;.__(&#38;#39;by &#38;#39;,&#38;#39;avia_framework&#38;#39;);
						the_author_posts_link();
						echo &#38;#39;&#38;lt;/span&#38;gt;&#38;#39;;

						?&#38;gt;

					&#38;lt;/span&#38;gt;	

				&#38;lt;/div&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;2) Open up single.php and delete&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;//wordpress function that loads the comments template &#38;quot;comments.php&#38;quot;
					comments_template( &#38;#39;/includes/comments.php&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;3) Open up header.php and delete&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;echo &#38;#39;	&#38;lt;li class=&#38;quot;rss&#38;quot;&#38;gt;&#38;lt;a href=&#38;quot;&#38;#39;.avia_get_option(&#38;#39;feedburner&#38;#39;,get_bloginfo(&#38;#39;rss2_url&#38;#39;)).&#38;#39;&#38;quot;&#38;gt;RSS&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;&#38;#39;;&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>indigoleader on "Blog for front page - with a different default title"</title>
			<link>http://www.kriesi.at/support/topic/blog-for-front-page-with-a-different-default-title#post-109237</link>
			<pubDate>Mon, 06 May 2013 13:27:48 +0000</pubDate>
			<dc:creator>indigoleader</dc:creator>
			<guid isPermaLink="false">109237@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Brilliant - worked perfectly! Thanks :D
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Blog for front page - with a different default title"</title>
			<link>http://www.kriesi.at/support/topic/blog-for-front-page-with-a-different-default-title#post-109225</link>
			<pubDate>Mon, 06 May 2013 13:08:50 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">109225@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Sarah,&#60;/p&#62;
&#60;p&#62;In your theme files, open up template-blog.php and find then edit this line:&#60;br /&#62;
&#60;code&#62;$title  = __(&#38;#39;Blog - Latest News&#38;#39;, &#38;#39;avia_framework&#38;#39;); //default blog title&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;that should change the default title for you.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>giabardo on "How to hide Blog author / categories / comment count &#124;&#124; How to remove the RSS"</title>
			<link>http://www.kriesi.at/support/topic/how-to-hide-blog-author-categories-comment-count-how-to-remove-the-rss#post-109194</link>
			<pubDate>Mon, 06 May 2013 11:11:32 +0000</pubDate>
			<dc:creator>giabardo</dc:creator>
			<guid isPermaLink="false">109194@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi there, Hi have installed Angular on &#60;a href=&#34;http://www.dossofiorito.com&#34; rel=&#34;nofollow&#34;&#62;http://www.dossofiorito.com&#60;/a&#62;&#60;br /&#62;
I would like to do 3 customization:&#60;/p&#62;
&#60;p&#62;1. remove the comment/ categories/author  from the top part of my posts. I would also like to remove the pen icon on the left&#60;br /&#62;
&#60;a href=&#34;http://www.dossofiorito.com/lightscape-press-kit/&#34; rel=&#34;nofollow&#34;&#62;http://www.dossofiorito.com/lightscape-press-kit/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;2. Remove the comment/pingback section at the bottom of the posts&#60;/p&#62;
&#60;p&#62;3. I would like to be able to remove the RSS icon from the header.&#60;/p&#62;
&#60;p&#62;Tried to look in the threads but could't find a solution that worhed here. I have digged into the various .psp an css but with no luck...I need some direction please&#60;/p&#62;
&#60;p&#62;g.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "&#34;Posts&#34; Thumbnails not showing up on homepage"</title>
			<link>http://www.kriesi.at/support/topic/posts-thumbnails-not-showing-up-on-homepage#post-109098</link>
			<pubDate>Sun, 05 May 2013 18:15:54 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">109098@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Have you added a sidebar there or checked if the sidebar has the widget that displays latest blog posts attached still?&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>indigoleader on "Blog for front page - with a different default title"</title>
			<link>http://www.kriesi.at/support/topic/blog-for-front-page-with-a-different-default-title#post-109026</link>
			<pubDate>Sun, 05 May 2013 13:00:12 +0000</pubDate>
			<dc:creator>indigoleader</dc:creator>
			<guid isPermaLink="false">109026@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Dear Kriesi,&#60;/p&#62;
&#60;p&#62;Thanks so much for such a great theme. I've recently made some modifications to my site and I'm trying to get the blog as the front page with a different page title to &#34;Blog - Latest News&#34;. &#60;/p&#62;
&#60;p&#62;I've already tried setting the blog default page with a modified page title as a 'front page' under the theme options. When I do this, an empty page shell with the title I want appears on the front page, but no blog content.&#60;/p&#62;
&#60;p&#62;Secondly, I have now left the front page option blank on theme options...and the blog content appears, only it has the default &#34;Blog-Latest News&#34; title I don't want.&#60;/p&#62;
&#60;p&#62;I hope this is clear. If you could please explain what I need to do in baby steps (I'm not a programmer) that would be fantastic.&#60;/p&#62;
&#60;p&#62;My site is &#60;a href=&#34;http://www.gotosarah.com&#34; rel=&#34;nofollow&#34;&#62;http://www.gotosarah.com&#60;/a&#62;.&#60;/p&#62;
&#60;p&#62;Thank you,&#60;/p&#62;
&#60;p&#62;Sarah
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "blog main page header breadcrumb"</title>
			<link>http://www.kriesi.at/support/topic/blog-main-page-header-breadcrumb#post-108832</link>
			<pubDate>Sat, 04 May 2013 09:16:53 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">108832@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Open up index.php and replace:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;echo avia_title(array(&#38;#39;title&#38;#39; =&#38;gt; $title, &#38;#39;link&#38;#39; =&#38;gt; $t_link, &#38;#39;subtitle&#38;#39; =&#38;gt; $t_sub));&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;with&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;if( get_post_meta(get_the_ID(), &#38;#39;header&#38;#39;, true) != &#38;#39;no&#38;#39;) echo avia_title(array(&#38;#39;title&#38;#39; =&#38;gt; $title, &#38;#39;link&#38;#39; =&#38;gt; $t_link, &#38;#39;subtitle&#38;#39; =&#38;gt; $t_sub));&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;We'll fix it in the next version.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Author In All Posts"</title>
			<link>http://www.kriesi.at/support/topic/author-in-all-posts#post-108823</link>
			<pubDate>Sat, 04 May 2013 08:30:49 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">108823@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Open up template-blog.php and repace:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;span class=&#38;#39;author&#38;#39;&#38;gt;&#38;lt;?php comments_popup_link(&#38;#39;No Comments&#38;#39;, &#38;#39;1 Comment&#38;#39;, &#38;#39;% Comments&#38;#39;); ?&#38;gt;&#38;lt;/span&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;with:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;span class=&#38;#39;comments&#38;#39;&#38;gt;&#38;lt;?php comments_popup_link(&#38;#39;No Comments&#38;#39;, &#38;#39;1 Comment&#38;#39;, &#38;#39;% Comments&#38;#39;); ?&#38;gt;&#38;lt;/span&#38;gt;
&#38;lt;span class=&#38;#39;author&#38;#39;&#38;gt;&#38;lt;?php the_author(); ?&#38;gt;&#38;lt;/span&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>alexmandell on "&#34;Posts&#34; Thumbnails not showing up on homepage"</title>
			<link>http://www.kriesi.at/support/topic/posts-thumbnails-not-showing-up-on-homepage#post-108817</link>
			<pubDate>Sat, 04 May 2013 05:01:24 +0000</pubDate>
			<dc:creator>alexmandell</dc:creator>
			<guid isPermaLink="false">108817@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Nick,&#60;/p&#62;
&#60;p&#62;Thanks. Sorry, I didn't mean to the left of the main menu, I meant in the space below the menu on the left side of the page. There used to be a little box with a preview of my 3 latest blog posts (like there is on the &#34;news&#34; page itself).&#60;/p&#62;
&#60;p&#62;Best,&#60;/p&#62;
&#60;p&#62;Alex
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "&#34;Posts&#34; Thumbnails not showing up on homepage"</title>
			<link>http://www.kriesi.at/support/topic/posts-thumbnails-not-showing-up-on-homepage#post-108729</link>
			<pubDate>Fri, 03 May 2013 16:26:00 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">108729@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;You said before there was something to the left of the main menu? There is only but 100 pixels or less and I never seen anything showing up there in any version. I am looking at your homepage, but am not understanding what is missing. Do you want to move the box from the lower right side somewhere? or show the blog in there as well?&#60;/p&#62;
&#60;p&#62;Site looks good. &#60;a href=&#34;http://www.clipular.com/c?5748106=hl9w5smb1jEJ4WWqBhqYKj5eXVw&#38;amp;f=.png&#34; rel=&#34;nofollow&#34;&#62;http://www.clipular.com/c?5748106=hl9w5smb1jEJ4WWqBhqYKj5eXVw&#38;amp;f=.png&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>AdamMerle on "Author In All Posts"</title>
			<link>http://www.kriesi.at/support/topic/author-in-all-posts#post-108673</link>
			<pubDate>Fri, 03 May 2013 12:25:52 +0000</pubDate>
			<dc:creator>AdamMerle</dc:creator>
			<guid isPermaLink="false">108673@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;How do I get the author to appear in all of my blog posts?&#60;/p&#62;
&#60;p&#62;Thanks&#60;br /&#62;
Adam
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Spiv on "blog main page header breadcrumb"</title>
			<link>http://www.kriesi.at/support/topic/blog-main-page-header-breadcrumb#post-108639</link>
			<pubDate>Fri, 03 May 2013 08:43:58 +0000</pubDate>
			<dc:creator>Spiv</dc:creator>
			<guid isPermaLink="false">108639@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I'll install first the new update to see if it sheds any positive light on this matter. It's hard to share a link because I develop locally ;)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "blog main page header breadcrumb"</title>
			<link>http://www.kriesi.at/support/topic/blog-main-page-header-breadcrumb#post-108598</link>
			<pubDate>Fri, 03 May 2013 05:03:59 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">108598@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Spiv,&#60;/p&#62;
&#60;p&#62;Its pretty simple to remove with a bit of css if you want to provide a link to the blog we can assist.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>alexmandell on "&#34;Posts&#34; Thumbnails not showing up on homepage"</title>
			<link>http://www.kriesi.at/support/topic/posts-thumbnails-not-showing-up-on-homepage#post-108589</link>
			<pubDate>Fri, 03 May 2013 04:34:06 +0000</pubDate>
			<dc:creator>alexmandell</dc:creator>
			<guid isPermaLink="false">108589@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Devin,&#60;/p&#62;
&#60;p&#62;Thanks so much for the prompt response! &#60;/p&#62;
&#60;p&#62;I was way overdue on an update, so I downloaded the most recent version of Flashlight as you suggested and it is now installed. It seems like the photos are showing up in the blog preview on the left sidebar now, but only on the blog page (called &#34;news&#34; on my site). For some reason, I can't get the posts preview to show up where it used to on my homepage (underneath the main menu on the left). Any ideas?&#60;/p&#62;
&#60;p&#62;Thanks again.&#60;/p&#62;
&#60;p&#62;- Alex
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Header Settings"</title>
			<link>http://www.kriesi.at/support/topic/header-settings#post-108557</link>
			<pubDate>Thu, 02 May 2013 23:43:11 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">108557@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Can you give us a link to your blog?&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Spiv on "Header Settings"</title>
			<link>http://www.kriesi.at/support/topic/header-settings#post-108438</link>
			<pubDate>Thu, 02 May 2013 14:54:39 +0000</pubDate>
			<dc:creator>Spiv</dc:creator>
			<guid isPermaLink="false">108438@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;It's this what's not working. It does work for the blog posts.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Header Settings"</title>
			<link>http://www.kriesi.at/support/topic/header-settings#post-108404</link>
			<pubDate>Thu, 02 May 2013 13:31:21 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">108404@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Spiv,&#60;/p&#62;
&#60;p&#62;You should be able to set that on the specific page the blog loads into. So whatever page you've designated to show the blog, you can set it there.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
