<?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: Remove sidebars from blog posts</title>
		<link>http://www.kriesi.at/support/topic/remove-sidebars-from-blog-posts</link>
		<description>Support Forum - Topic: Remove sidebars from blog posts</description>
		<language>en-US</language>
		<pubDate>Thu, 23 May 2013 19:48: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/remove-sidebars-from-blog-posts" rel="self" type="application/rss+xml" />

		<item>
			<title>vcasqu on "Remove sidebars from blog posts"</title>
			<link>http://www.kriesi.at/support/topic/remove-sidebars-from-blog-posts#post-1531</link>
			<pubDate>Fri, 30 Jul 2010 18:31:48 +0000</pubDate>
			<dc:creator>vcasqu</dc:creator>
			<guid isPermaLink="false">1531@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Worked like a charm. Thanks a lot.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>James Morrison on "Remove sidebars from blog posts"</title>
			<link>http://www.kriesi.at/support/topic/remove-sidebars-from-blog-posts#post-1490</link>
			<pubDate>Fri, 30 Jul 2010 13:42:32 +0000</pubDate>
			<dc:creator>James Morrison</dc:creator>
			<guid isPermaLink="false">1490@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Ok, there are a few steps to complete:&#60;/p&#62;
&#60;p&#62;1.) Open up archive.php and change this code (right at the top):&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$k_option[&#38;#39;custom&#38;#39;][&#38;#39;bodyclass&#38;#39;] = &#38;quot;&#38;quot;; //&#38;lt;-- Display Sidebar
// $k_option[&#38;#39;custom&#38;#39;][&#38;#39;bodyclass&#38;#39;] = &#38;quot;fullwidth&#38;quot;; //&#38;lt;-- Dont display Sidebar&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;to this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;//$k_option[&#38;#39;custom&#38;#39;][&#38;#39;bodyclass&#38;#39;] = &#38;quot;&#38;quot;; //&#38;lt;-- Display Sidebar
$k_option[&#38;#39;custom&#38;#39;][&#38;#39;bodyclass&#38;#39;] = &#38;quot;fullwidth&#38;quot;; //&#38;lt;-- Dont display Sidebar&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Make the same change in single.php.&#60;/p&#62;
&#60;p&#62;Next, you can adjust the image size by changing this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$preview_image = kriesi_post_thumb($post-&#38;gt;ID, array(&#38;#39;size&#38;#39;=&#38;gt; array(&#38;#39;M&#38;#39;),
													&#38;#39;display_link&#38;#39; =&#38;gt; array(&#38;#39;lightbox&#38;#39;), 				// &#38;#39;_prev_image_link&#38;#39; or array(&#38;#39;lightbox&#38;#39;)
													&#38;#39;linkurl&#38;#39; =&#38;gt; array (&#38;#39;fullscreen&#38;#39;,&#38;#39;_preview_big&#38;#39;),
													&#38;#39;wh&#38;#39; =&#38;gt; $k_option[&#38;#39;custom&#38;#39;][&#38;#39;imgSize&#38;#39;][&#38;#39;M&#38;#39;]
													));&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;to this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$preview_image = kriesi_post_thumb($post-&#38;gt;ID, array(&#38;#39;size&#38;#39;=&#38;gt; array(&#38;#39;XL&#38;#39;),
													&#38;#39;display_link&#38;#39; =&#38;gt; array(&#38;#39;lightbox&#38;#39;), 				// &#38;#39;_prev_image_link&#38;#39; or array(&#38;#39;lightbox&#38;#39;)
													&#38;#39;linkurl&#38;#39; =&#38;gt; array (&#38;#39;fullscreen&#38;#39;,&#38;#39;_preview_big&#38;#39;),
													&#38;#39;wh&#38;#39; =&#38;gt; $k_option[&#38;#39;custom&#38;#39;][&#38;#39;imgSize&#38;#39;][&#38;#39;XL&#38;#39;]
													));&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Make the same changes in single.php.&#60;/p&#62;
&#60;p&#62;2.) To display the full post content, find and change this:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;?php the_excerpt() ?&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;to this:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;?php the_content() ?&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;3.) If you mean can you move one of the sidebars from the 2 column layout (as per the demo -&#38;gt; &#60;a href=&#34;http://www.kriesi.at/themes/newscast/)&#34; rel=&#34;nofollow&#34;&#62;http://www.kriesi.at/themes/newscast/)&#60;/a&#62; to the left of the content, no you can't the sidebars are built into the same function. It is possible to modify the theme to add a separate sidebar - this is something I may put together in a tutorial if I get the time (no guarantees or timescale thought...).&#60;/p&#62;
&#60;p&#62;Hope this helps!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vcasqu on "Remove sidebars from blog posts"</title>
			<link>http://www.kriesi.at/support/topic/remove-sidebars-from-blog-posts#post-1432</link>
			<pubDate>Thu, 29 Jul 2010 21:36:38 +0000</pubDate>
			<dc:creator>vcasqu</dc:creator>
			<guid isPermaLink="false">1432@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;1) On both would be great. But particulary on individual pages.&#60;br /&#62;
2) I mean when I click on the &#34;Blog&#34; page, where all the posts are, I want to see the full posts. Not just the excerpts.&#60;/p&#62;
&#60;p&#62;Another question: is it possible to have a sidebar on the right and one on the left on the homepage?&#60;br /&#62;
Txs a lot.&#60;br /&#62;
Vasco
&#60;/p&#62;</description>
		</item>
		<item>
			<title>James Morrison on "Remove sidebars from blog posts"</title>
			<link>http://www.kriesi.at/support/topic/remove-sidebars-from-blog-posts#post-1378</link>
			<pubDate>Thu, 29 Jul 2010 15:00:53 +0000</pubDate>
			<dc:creator>James Morrison</dc:creator>
			<guid isPermaLink="false">1378@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi! &#60;/p&#62;
&#60;p&#62; Just need to clarify a couple of things:&#60;/p&#62;
&#60;p&#62;1.) On archive pages or individual pages or both?&#60;/p&#62;
&#60;p&#62;2.) Do you mean the full blog post instead of the excerpt on archive pages? &#60;/p&#62;
&#60;p&#62; Regards,&#60;br /&#62;
James
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vcasqu on "Remove sidebars from blog posts"</title>
			<link>http://www.kriesi.at/support/topic/remove-sidebars-from-blog-posts#post-1341</link>
			<pubDate>Thu, 29 Jul 2010 10:25:38 +0000</pubDate>
			<dc:creator>vcasqu</dc:creator>
			<guid isPermaLink="false">1341@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;1- I want my blog posts to be full-width as I need to show bigger images.&#60;br /&#62;
How can I do that?&#60;/p&#62;
&#60;p&#62;2- How can I always display the full blog post instead of just the title?&#60;/p&#62;
&#60;p&#62;Please provide as much detailed explanation as possible, as I am not a programer.&#60;/p&#62;
&#60;p&#62;Thank you&#60;br /&#62;
Vasco
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
