<?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: column layout - Recent Posts</title>
		<link>http://www.kriesi.at/support/tags/column-layout</link>
		<description>Support Forum - Tag: column layout - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Thu, 23 May 2013 21:24:44 +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/column-layout" rel="self" type="application/rss+xml" />

		<item>
			<title>Nick on "Post/Page content in column layout in template builder"</title>
			<link>http://www.kriesi.at/support/topic/postpage-content-in-column-layout-in-template-builder#post-104218</link>
			<pubDate>Thu, 04 Apr 2013 00:38:56 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">104218@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;It shouldn't be too hard to add that functionality in there.&#60;/p&#62;
&#60;p&#62;1) Open up /includes/admin/register-admin-dynamic-options.php and **change line 66** to look like&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;quot;subtype&#38;quot; =&#38;gt; array(&#38;#39;Single Page&#38;#39;=&#38;gt;&#38;#39;page&#38;#39;, &#38;#39;Single Post&#38;#39;=&#38;gt;&#38;#39;post&#38;#39;, &#38;#39;Post from Category&#38;#39;=&#38;gt;&#38;#39;cat&#38;#39;,&#38;#39;Widget&#38;#39;=&#38;gt;&#38;#39;widget&#38;#39;,&#38;#39;Direct Text input&#38;#39;=&#38;gt;&#38;#39;textarea&#38;#39;)&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;2) In same file add the following code on line 91 (which is empty but like 92 looks the same as first line below)&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;$column_element[] = array(
		&#38;quot;slug&#38;quot;	=&#38;gt; &#38;quot;&#38;quot;,
		&#38;quot;name&#38;quot; 	=&#38;gt; &#38;quot;Post:&#38;quot;,
		&#38;quot;desc&#38;quot; 	=&#38;gt; &#38;quot;&#38;quot;,
		&#38;quot;id&#38;quot; 	=&#38;gt; &#38;quot;dynamic_column_content_&#38;quot;.$i.&#38;quot;_post&#38;quot;,
		&#38;quot;type&#38;quot; 	=&#38;gt; &#38;quot;select&#38;quot;,
		&#38;quot;std&#38;quot; 	=&#38;gt; &#38;quot;&#38;quot;,
		&#38;quot;required&#38;quot; =&#38;gt; array(&#38;#39;dynamic_column_content_&#38;#39;.$i,&#38;#39;post&#38;#39;),
		&#38;quot;subtype&#38;quot; =&#38;gt; &#38;#39;post&#38;#39;
	);

	$column_element[] = array(
		&#38;quot;slug&#38;quot;	=&#38;gt; &#38;quot;&#38;quot;,
		&#38;quot;name&#38;quot; 	=&#38;gt; &#38;quot;How do you want to display the post?&#38;quot;,
		&#38;quot;desc&#38;quot; 	=&#38;gt; &#38;quot;&#38;quot;,
		&#38;quot;id&#38;quot; 	=&#38;gt; &#38;quot;dynamic_column_content_&#38;quot;.$i.&#38;quot;_post_display&#38;quot;,
		&#38;quot;type&#38;quot; 	=&#38;gt; &#38;quot;select&#38;quot;,
		&#38;quot;std&#38;quot; 	=&#38;gt; &#38;quot;img_post&#38;quot;,
		&#38;quot;no_first&#38;quot;=&#38;gt;true,
		&#38;quot;required&#38;quot; =&#38;gt; array(&#38;#39;dynamic_column_content_&#38;#39;.$i,&#38;#39;page&#38;#39;),
		&#38;quot;subtype&#38;quot; =&#38;gt; array(&#38;#39;Preview Image and Post content&#38;#39; =&#38;gt; &#38;#39;img_post&#38;#39;, &#38;#39;Only preview Image&#38;#39; =&#38;gt; &#38;#39;img&#38;#39;, &#38;#39;Only post Content&#38;#39; =&#38;gt; &#38;#39;post&#38;#39;)
	);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;3) Open up /includes/helper-templates.php and ***paste the code below on line 460*** (above is an almost identical function except for page&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;function columns_helper_post($data)
	{
		$data[&#38;#39;query_post&#38;#39;] = array( &#38;#39;p&#38;#39; =&#38;gt; $data[&#38;#39;value&#38;#39;], &#38;#39;posts_per_page&#38;#39;=&#38;gt;1, &#38;#39;post_type&#38;#39;=&#38;gt; &#38;#39;post&#38;#39; );
		$output = $this-&#38;gt;column_helper_loop_over_posts($data);

		return $output;
	}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;That's it. I tested it and it works (from a cursory examination, this code is untested and comes as is so up to you to try it)&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>bacem on "Post/Page content in column layout in template builder"</title>
			<link>http://www.kriesi.at/support/topic/postpage-content-in-column-layout-in-template-builder#post-104042</link>
			<pubDate>Tue, 02 Apr 2013 15:44:12 +0000</pubDate>
			<dc:creator>bacem</dc:creator>
			<guid isPermaLink="false">104042@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;That is a bummer.  Any simple way to switch the side that the default sidebar is on (from right to left)?  If I can get that over to the left, I can probably make it work.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Post/Page content in column layout in template builder"</title>
			<link>http://www.kriesi.at/support/topic/postpage-content-in-column-layout-in-template-builder#post-104034</link>
			<pubDate>Tue, 02 Apr 2013 15:16:45 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">104034@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Other than the Blog element where you can choose a specific category and output that categorie(s) as a blog layout and the columns&#38;gt;post from category No, there are no other built in options.&#60;/p&#62;
&#60;p&#62;You would either need to look to a plugin or customization of the theme functions/files to get something else.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>bacem on "Post/Page content in column layout in template builder"</title>
			<link>http://www.kriesi.at/support/topic/postpage-content-in-column-layout-in-template-builder#post-104024</link>
			<pubDate>Tue, 02 Apr 2013 14:53:33 +0000</pubDate>
			<dc:creator>bacem</dc:creator>
			<guid isPermaLink="false">104024@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Devin,&#60;/p&#62;
&#60;p&#62;That setting populates the post with the latest from whatever category you choose.  Even if I choose that template for a specific post, it still displays a different post content (the latest post from that category).  &#60;/p&#62;
&#60;p&#62;What I need to do is display the specific post content for each post with a sidebar that will appear with all posts from a particular category.  If this were a page, you could choose the column layout and have a sidebar/widget area on the left, and the content of whatever page you choose on the right (by using the single page setting and choosing a page in the builder).  For posts this would be really annoying, because you would have to have a template for each and every individual post.  So what I would like to have is the functionality of the page/post content within the column area, so I can just make a template for a particular category that has a left sidebar and post content on the right, and choose that template whenever I am creating a new post.&#60;/p&#62;
&#60;p&#62;Is that more clear?&#60;/p&#62;
&#60;p&#62;Thanks for your help on this, by the way.  I have been wrestling to learn the ins and outs of this theme for a few days now, and it is really a very nice theme.  The is the one problem I have run into, and unfortunately for my site, it is a pretty big issue.&#60;/p&#62;
&#60;p&#62;Best Regards,&#60;br /&#62;
B
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Post/Page content in column layout in template builder"</title>
			<link>http://www.kriesi.at/support/topic/postpage-content-in-column-layout-in-template-builder#post-103992</link>
			<pubDate>Tue, 02 Apr 2013 12:58:10 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">103992@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi B,&#60;/p&#62;
&#60;p&#62;I'm not sure what you mean. The theme has always had the ability to add post/page content into the columns element using the template builder.&#60;/p&#62;
&#60;p&#62;You just go to the Template Builder in the Themes wordpress menu section and in a template add a Columns element. Then choose the number of columns and pick single page or post from category.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>bacem on "Post/Page content in column layout in template builder"</title>
			<link>http://www.kriesi.at/support/topic/postpage-content-in-column-layout-in-template-builder#post-103891</link>
			<pubDate>Mon, 01 Apr 2013 18:54:43 +0000</pubDate>
			<dc:creator>bacem</dc:creator>
			<guid isPermaLink="false">103891@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi there,&#60;/p&#62;
&#60;p&#62;I read about adding this functionality in another theme forum on this site.  Is it possible now to add a column with post/page content into column layout?&#60;/p&#62;
&#60;p&#62;B
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Column layout - No background"</title>
			<link>http://www.kriesi.at/support/topic/column-layout-no-background#post-81191</link>
			<pubDate>Fri, 26 Oct 2012 16:13:15 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">81191@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey valahalldors,&#60;/p&#62;
&#60;p&#62;The column code is all inside floated elements so the page doesn't actually *see* the stuff inside them and doesn't know to expand to the bottom. The best and easiest solution is to add a single div at the end of the content to clear everything.&#60;/p&#62;
&#60;p&#62;Open up that page and switch over to the HTML tab of the visual editor. At the bottom of all your content after the last shortcode put:&#60;br /&#62;
&#60;code&#62;&#38;lt;div class=&#38;quot;clearboth&#38;quot;&#38;gt;&#38;lt;/div&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Save the page and that should do it :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>valahalldors on "Column layout - No background"</title>
			<link>http://www.kriesi.at/support/topic/column-layout-no-background#post-81064</link>
			<pubDate>Thu, 25 Oct 2012 16:03:02 +0000</pubDate>
			<dc:creator>valahalldors</dc:creator>
			<guid isPermaLink="false">81064@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks for the reply. It works but it adds an ugly white border around the original background. Some other ideas ?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Column layout - No background"</title>
			<link>http://www.kriesi.at/support/topic/column-layout-no-background#post-80979</link>
			<pubDate>Thu, 25 Oct 2012 04:10:06 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">80979@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi valahalldors,&#60;/p&#62;
&#60;p&#62;Try to add this code in Quick CSS or custom.css:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.content {
   background: white;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;or&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.content {
   background: white !important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Hope this helps. :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>valahalldors on "Column layout - No background"</title>
			<link>http://www.kriesi.at/support/topic/column-layout-no-background#post-80892</link>
			<pubDate>Wed, 24 Oct 2012 13:14:03 +0000</pubDate>
			<dc:creator>valahalldors</dc:creator>
			<guid isPermaLink="false">80892@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Sure, here is a link to a page where this happens &#60;a href=&#34;http://thestartupkids.com/interviewees/&#34; rel=&#34;nofollow&#34;&#62;http://thestartupkids.com/interviewees/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Column layout - No background"</title>
			<link>http://www.kriesi.at/support/topic/column-layout-no-background#post-78687</link>
			<pubDate>Fri, 05 Oct 2012 16:43:02 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">78687@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi valahalldors,&#60;/p&#62;
&#60;p&#62;Can we take a look at the page live? That way we can provide specific css that won't interfere with anything else on the site.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>valahalldors on "Column layout - No background"</title>
			<link>http://www.kriesi.at/support/topic/column-layout-no-background#post-78527</link>
			<pubDate>Thu, 04 Oct 2012 11:18:10 +0000</pubDate>
			<dc:creator>valahalldors</dc:creator>
			<guid isPermaLink="false">78527@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I'm using the Shoutbox theme. &#60;/p&#62;
&#60;p&#62;When using the Column layout on Pages, the white background for the page does not appear under the column layot, only the headline of the page.&#60;/p&#62;
&#60;p&#62;Can you please tell me how I get the white background behind the column layout on Pages.&#60;/p&#62;
&#60;p&#62;Thanks.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Putting slideshow into column layout"</title>
			<link>http://www.kriesi.at/support/topic/putting-slideshow-into-column-layout#post-52429</link>
			<pubDate>Thu, 19 Apr 2012 23:09:11 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">52429@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;Selecting &#34;only post content&#34; will only display the page content. You have to select &#34;Preview Image and post content&#34; to show the slideshow.&#60;/p&#62;
&#60;p&#62;Yes, that is the behavior of the options. :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>mertnuhoglu on "Putting slideshow into column layout"</title>
			<link>http://www.kriesi.at/support/topic/putting-slideshow-into-column-layout#post-52195</link>
			<pubDate>Wed, 18 Apr 2012 15:19:22 +0000</pubDate>
			<dc:creator>mertnuhoglu</dc:creator>
			<guid isPermaLink="false">52195@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I want to put the slideshow into a column layout. &#60;/p&#62;
&#60;p&#62;To achive this, &#60;/p&#62;
&#60;p&#62;1. I created a page that contains the slides.&#60;br /&#62;
2. I created a new template in Template Builder and added &#34;Columns&#34; element.&#60;br /&#62;
3. Inside the Column 1 Content, I added the page containing slides. And selected &#34;Preview Image and post content&#34;. &#60;/p&#62;
&#60;p&#62;When I select &#34;only post content&#34; the slideshow is not shown. I think this is a bit unintuitive because I was considering slideshow as the content of the page. Is this intentional behaviour or not?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Column Layout not working in Broadscope"</title>
			<link>http://www.kriesi.at/support/topic/column-layout-not-working-in-broadscope#post-51652</link>
			<pubDate>Sun, 15 Apr 2012 05:39:17 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">51652@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey! &#60;/p&#62;
&#60;p&#62; Can you post a link please? I think it's a simple css code issue which I need to investigate with Firebug. &#60;/p&#62;
&#60;p&#62; Best regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>JohnMYates on "Column Layout not working in Broadscope"</title>
			<link>http://www.kriesi.at/support/topic/column-layout-not-working-in-broadscope#post-51187</link>
			<pubDate>Wed, 11 Apr 2012 15:52:12 +0000</pubDate>
			<dc:creator>JohnMYates</dc:creator>
			<guid isPermaLink="false">51187@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Have successfully used most of the layout options but using 5ths configuration 2/5, 2/5, 1/5  or 1/5, 2/5, 2/5 doesn't work. It drops the last column below. &#60;/p&#62;
&#60;p&#62;Please advise how I can fix it.&#60;/p&#62;
&#60;p&#62;Many thanks&#60;/p&#62;
&#60;p&#62;John
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
