<?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: post/page content - Recent Posts</title>
		<link>http://www.kriesi.at/support/tags/postpage-content</link>
		<description>Support Forum - Tag: post/page content - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Fri, 24 May 2013 07:27:15 +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/postpage-content" 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>Ismael on "Dynamic Template not using Post/Page Contents"</title>
			<link>http://www.kriesi.at/support/topic/dynamic-template-not-using-postpage-contents#post-76879</link>
			<pubDate>Sat, 22 Sep 2012 06:40:34 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">76879@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I think you forgot to add the SLIDESHOW element at the top.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>virginian56 on "Dynamic Template not using Post/Page Contents"</title>
			<link>http://www.kriesi.at/support/topic/dynamic-template-not-using-postpage-contents#post-76815</link>
			<pubDate>Fri, 21 Sep 2012 17:56:51 +0000</pubDate>
			<dc:creator>virginian56</dc:creator>
			<guid isPermaLink="false">76815@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I am trying to create a frontage that has a 'slider' region at the top.  I LOVE the tempo and the look of the slider (fades more than slides) that you get when you integrate multiple featured images into a page through the 'Add Featured Media' boxes.&#60;/p&#62;
&#60;p&#62;The trouble I am having is this:&#60;/p&#62;
&#60;p&#62;I created a PAGE with multiple featured images that create the correct slider/fader at the top.  &#60;/p&#62;
&#60;p&#62;I then created a TEMPLATE with the Template Builder that had &#60;/p&#62;
&#60;p&#62;1) Post/Page Content: I chose the above mentioned page.&#60;br /&#62;
2) Blockquote with some text&#60;br /&#62;
3) Products: a series of products in a slider, without product excerpt, without pagination, WITH shop slider row, but without the shop slider autorotation.&#60;/p&#62;
&#60;p&#62;When I created a 'master' page using the TEMPLATE above, everything is shown EXCEPT the 1) Post/Page Content, this is left off.  If I this page separately, I see the slider I want at the top, if I integrate the page into a template, the page content is lost.&#60;/p&#62;
&#60;p&#62;Can someone illuminate this for me?&#60;/p&#62;
&#60;p&#62;Thanks so much!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "change breadcrumb position"</title>
			<link>http://www.kriesi.at/support/topic/change-breadcrumb-position#post-31056</link>
			<pubDate>Thu, 03 Nov 2011 06:22:24 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">31056@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
yes - I think so. Maybe use left: 0px; instead of float:left; because this can give you more control over the position.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>demtnman on "change breadcrumb position"</title>
			<link>http://www.kriesi.at/support/topic/change-breadcrumb-position#post-31008</link>
			<pubDate>Wed, 02 Nov 2011 13:07:29 +0000</pubDate>
			<dc:creator>demtnman</dc:creator>
			<guid isPermaLink="false">31008@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I wanted to align breadcrumb in Corona to the left and just below the header container border so that long breadcrumbs do not infringe upon the main menu, which I dropped to the bottom of the header container. Is this the best fix for this, which I did below:&#60;/p&#62;
&#60;p&#62;I changed the top margin to 0, changed right:0 to float:left, and added a top border:&#60;/p&#62;
&#60;p&#62;#breadcrumb_wrapper .breadcrumb {&#60;br /&#62;
    padding: 2px 5px;&#60;br /&#62;
    position: absolute;&#60;br /&#62;
    top: 0px;&#60;br /&#62;
    float:left;&#60;br /&#62;
    border-top:1px solid #eeeeee;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;Thanks in advance.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
