<?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: A Problem Viewing Archived Posts + Blog Sidebar Widgets</title>
		<link>http://www.kriesi.at/support/topic/a-problem-viewing-archived-posts-blog-sidebar-widgets</link>
		<description>Support Forum - Topic: A Problem Viewing Archived Posts + Blog Sidebar Widgets</description>
		<language>en-US</language>
		<pubDate>Tue, 18 Jun 2013 04:40:39 +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/a-problem-viewing-archived-posts-blog-sidebar-widgets" rel="self" type="application/rss+xml" />

		<item>
			<title>Dude on "A Problem Viewing Archived Posts + Blog Sidebar Widgets"</title>
			<link>http://www.kriesi.at/support/topic/a-problem-viewing-archived-posts-blog-sidebar-widgets#post-30796</link>
			<pubDate>Sun, 30 Oct 2011 18:32:26 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">30796@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
I'll report it to Kriesi. I think it's a pagination function problem - basically the cleancut blog isn't layed out to be the frontpage/homepage and I think this triggers the flaw. As a quick fix I can only suggest to use wp-paginate: &#60;a href=&#34;http://wordpress.org/extend/plugins/wp-paginate/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/wp-paginate/&#60;/a&#62; instead of Kriesi's pagination function. Activate the plugin and in template_blog.php replace:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;kriesi_pagination($additional_loop-&#38;gt;max_num_pages);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;with:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;if(function_exists(&#38;#39;wp_paginate&#38;#39;)) {
    wp_paginate();
}else{
kriesi_pagination($additional_loop-&#38;gt;max_num_pages);
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Update: You can also try to replace the Kriesi's pagination code with an updated version. Open up cleancut\framework\helper_functions\pagination.php and delete all code lines. Then insert:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
	function kriesi_pagination($pages = &#38;#39;&#38;#39;){
		global $paged;

		if(get_query_var(&#38;#39;paged&#38;#39;)) {
		     $paged = get_query_var(&#38;#39;paged&#38;#39;);
		} elseif(get_query_var(&#38;#39;page&#38;#39;)) {
		     $paged = get_query_var(&#38;#39;page&#38;#39;);
		} else {
		     $paged = 1;
		}

		$output = &#38;quot;&#38;quot;;
		$prev = $paged - 1;
		$next = $paged + 1;
		$range = 2; // only edit this if you want to show more page-links
		$showitems = ($range * 2)+1;

		if($pages == &#38;#39;&#38;#39;)
		{
			global $wp_query;
			$pages = $wp_query-&#38;gt;max_num_pages;
			if(!$pages)
			{
				$pages = 1;
			}
		}

		if(1 != $pages)
		{
			$output .= &#38;quot;&#38;lt;div class=&#38;#39;pagination&#38;#39;&#38;gt;&#38;quot;;
			$output .= ($paged &#38;gt; 2 &#38;amp;&#38;amp; $paged &#38;gt; $range+1 &#38;amp;&#38;amp; $showitems &#38;lt; $pages)? &#38;quot;&#38;lt;a href=&#38;#39;&#38;quot;.get_pagenum_link(1).&#38;quot;&#38;#39;&#38;gt;«&#38;lt;/a&#38;gt;&#38;quot;:&#38;quot;&#38;quot;;
			$output .= ($paged &#38;gt; 1 &#38;amp;&#38;amp; $showitems &#38;lt; $pages)? &#38;quot;&#38;lt;a href=&#38;#39;&#38;quot;.get_pagenum_link($prev).&#38;quot;&#38;#39;&#38;gt;‹&#38;lt;/a&#38;gt;&#38;quot;:&#38;quot;&#38;quot;;

			for ($i=1; $i &#38;lt;= $pages; $i++)
			{
				if (1 != $pages &#38;amp;&#38;amp;( !($i &#38;gt;= $paged+$range+1 &#124;&#124; $i &#38;lt;= $paged-$range-1) &#124;&#124; $pages &#38;lt;= $showitems ))
				{
					$output .= ($paged == $i)? &#38;quot;&#38;lt;span class=&#38;#39;current&#38;#39;&#38;gt;&#38;quot;.$i.&#38;quot;&#38;lt;/span&#38;gt;&#38;quot;:&#38;quot;&#38;lt;a href=&#38;#39;&#38;quot;.get_pagenum_link($i).&#38;quot;&#38;#39; class=&#38;#39;inactive&#38;#39; &#38;gt;&#38;quot;.$i.&#38;quot;&#38;lt;/a&#38;gt;&#38;quot;;
				}
			}

			$output .= ($paged &#38;lt; $pages &#38;amp;&#38;amp; $showitems &#38;lt; $pages) ? &#38;quot;&#38;lt;a href=&#38;#39;&#38;quot;.get_pagenum_link($next).&#38;quot;&#38;#39;&#38;gt;›&#38;lt;/a&#38;gt;&#38;quot; :&#38;quot;&#38;quot;;
			$output .= ($paged &#38;lt; $pages-1 &#38;amp;&#38;amp;  $paged+$range-1 &#38;lt; $pages &#38;amp;&#38;amp; $showitems &#38;lt; $pages) ? &#38;quot;&#38;lt;a href=&#38;#39;&#38;quot;.get_pagenum_link($pages).&#38;quot;&#38;#39;&#38;gt;»&#38;lt;/a&#38;gt;&#38;quot;:&#38;quot;&#38;quot;;
			$output .= &#38;quot;&#38;lt;/div&#38;gt;\n&#38;quot;;
		}

		echo $output;
	}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>elroyfulton on "A Problem Viewing Archived Posts + Blog Sidebar Widgets"</title>
			<link>http://www.kriesi.at/support/topic/a-problem-viewing-archived-posts-blog-sidebar-widgets#post-30794</link>
			<pubDate>Sun, 30 Oct 2011 17:34:53 +0000</pubDate>
			<dc:creator>elroyfulton</dc:creator>
			<guid isPermaLink="false">30794@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Whoops, forgot the link... hopefully that was what was holding up a response...&#60;/p&#62;
&#60;p&#62;&#38;gt; &#60;a href=&#34;http://www.djikas.com&#34; rel=&#34;nofollow&#34;&#62;http://www.djikas.com&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>elroyfulton on "A Problem Viewing Archived Posts + Blog Sidebar Widgets"</title>
			<link>http://www.kriesi.at/support/topic/a-problem-viewing-archived-posts-blog-sidebar-widgets#post-30161</link>
			<pubDate>Sat, 22 Oct 2011 02:17:08 +0000</pubDate>
			<dc:creator>elroyfulton</dc:creator>
			<guid isPermaLink="false">30161@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Through the following link to an active installation of CleanCut, the most recent 10 posts are seen from the 'home' page. Scroll down to the bottom and find page number links as well as a 'next' button. Clicking any of these should take you to previous posts, older than the most recent 10... doing so however just reloads the most recent 10, regardless of which link you click.&#60;/p&#62;
&#60;p&#62;Any ideas on how to get this working again?&#60;/p&#62;
&#60;p&#62;Also, how do I go about getting widgets to show up here in the Blogs right-side column? I've been through every option I can think of in the back-end with no luck.&#60;/p&#62;
&#60;p&#62;Thanks.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
