<?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: full width post</title>
		<link>http://www.kriesi.at/support/topic/full-width-post</link>
		<description>Support Forum - Topic: full width post</description>
		<language>en-US</language>
		<pubDate>Sun, 26 May 2013 02:27:52 +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/full-width-post" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Beard on "full width post"</title>
			<link>http://www.kriesi.at/support/topic/full-width-post#post-27403</link>
			<pubDate>Tue, 20 Sep 2011 20:07:22 +0000</pubDate>
			<dc:creator>Chris Beard</dc:creator>
			<guid isPermaLink="false">27403@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Glad Dude could help you :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>rumblefish on "full width post"</title>
			<link>http://www.kriesi.at/support/topic/full-width-post#post-27319</link>
			<pubDate>Mon, 19 Sep 2011 12:51:23 +0000</pubDate>
			<dc:creator>rumblefish</dc:creator>
			<guid isPermaLink="false">27319@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I fixed the widget problem. I think the theme had crashed from overuse! I just reinstalled it and now it's fine.&#60;/p&#62;
&#60;p&#62;Thanks for all your help Dude!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "full width post"</title>
			<link>http://www.kriesi.at/support/topic/full-width-post#post-27297</link>
			<pubDate>Mon, 19 Sep 2011 05:29:16 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">27297@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Yes - the fix will only affect posts in a column structure (any column layout of the column element). You can use the post/page element to display a single post/page or the blog element. &#60;/p&#62;
&#60;p&#62;I'll ask Kriesi if he's aware of a &#34;widget&#34; limitation (number of widgets, etc.) but I don't think there's one.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>rumblefish on "full width post"</title>
			<link>http://www.kriesi.at/support/topic/full-width-post#post-27281</link>
			<pubDate>Sun, 18 Sep 2011 22:38:02 +0000</pubDate>
			<dc:creator>rumblefish</dc:creator>
			<guid isPermaLink="false">27281@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey, that seems to work!&#60;br /&#62;
The shortcodes seem to work too, at least on a 66:33 2-column layout (false three column).&#60;/p&#62;
&#60;p&#62;Now it looks the same as the static page it was reading the original data from, apart from that widget box problem. &#60;/p&#62;
&#60;p&#62;Can you explain when this fix will work? Is it only for single posts on a template page? To have a single blog post displaying in full, I would need a different fix in another par of the helper-template code? I think I've seen that one posted before on the support...&#60;/p&#62;
&#60;p&#62;Thanks for all your help on that bit. :O)&#60;/p&#62;
&#60;p&#62;I've just realised that I have a weird problem with the theme. I can't add any widgets at all now from the Template Builder. There is no Template Widget box appearing in Dashboard/Widgets/ control panel after I add a widget in the Template builder. Do you think I need to reinstall the theme or even WP?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "full width post"</title>
			<link>http://www.kriesi.at/support/topic/full-width-post#post-27278</link>
			<pubDate>Sun, 18 Sep 2011 18:26:32 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">27278@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;1) Instead of:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;$output.= get_the_content();&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;use:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;$content_text = get_the_content();
$content_text = apply_filters(&#38;#39;the_content&#38;#39;, $content_text);
$output.= $content_text;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;2) Remove following code in shoutbox\includes\helper-templates.php&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;$output.= &#38;quot; &#38;lt;a class=&#38;#39;read-more-icon&#38;#39; 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;.get_the_title().&#38;quot;&#38;#39;&#38;gt;&#38;lt;strong&#38;gt;&#38;quot;.__(&#38;#39;Read more&#38;#39;, &#38;#39;avia_framework&#38;#39;).&#38;quot;&#38;lt;/strong&#38;gt;&#38;lt;span&#38;gt;&#38;lt;/span&#38;gt;&#38;lt;/a&#38;gt;&#38;quot;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I'm not sure if the hr shortcode will be displayed right in the column. I think the columns are not intended to be used with shortcodes but for excerpts/plain text with &#34;standard&#34; css text styling only.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>rumblefish on "full width post"</title>
			<link>http://www.kriesi.at/support/topic/full-width-post#post-27274</link>
			<pubDate>Sun, 18 Sep 2011 13:53:17 +0000</pubDate>
			<dc:creator>rumblefish</dc:creator>
			<guid isPermaLink="false">27274@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I just noticed, the top-horizontal rulers aren't showing after the code fix. It just shows the shortcode [hr top]. How do I kill the read more box also, it's still showing?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>rumblefish on "full width post"</title>
			<link>http://www.kriesi.at/support/topic/full-width-post#post-27273</link>
			<pubDate>Sun, 18 Sep 2011 13:47:47 +0000</pubDate>
			<dc:creator>rumblefish</dc:creator>
			<guid isPermaLink="false">27273@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Oh, sorry I didn't see that post!&#60;/p&#62;
&#60;p&#62;Yes, the new code has fixed the post problem, but I need a sidebar. That's why I was asking about getting the widgets over a white box.&#60;br /&#62;
That code will only apply to single posts?&#60;/p&#62;
&#60;p&#62;Thanks very much for that!&#60;/p&#62;
&#60;p&#62;:O)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>rumblefish on "full width post"</title>
			<link>http://www.kriesi.at/support/topic/full-width-post#post-27271</link>
			<pubDate>Sun, 18 Sep 2011 13:44:13 +0000</pubDate>
			<dc:creator>rumblefish</dc:creator>
			<guid isPermaLink="false">27271@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I dont think I'm going to be able to do what I need to with the way the template is set up right now.  It doesn't work.&#60;/p&#62;
&#60;p&#62;On that opening page, I need (in this order going down the page):&#60;/p&#62;
&#60;p&#62;A full width image slider&#60;br /&#62;
3 columns: the first two taken up by a post (no featured image), the third taken up by a sidebar with a widget in it.*&#60;br /&#62;
A ruler.&#60;br /&#62;
A 5 column area for posts.&#60;/p&#62;
&#60;p&#62;*I might be able to hack the blog/sidebar set up for the second row of elements. I just need the blog post (the text) and the sidebar without any blog slider or images above it.&#60;/p&#62;
&#60;p&#62;How could I do this?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "full width post"</title>
			<link>http://www.kriesi.at/support/topic/full-width-post#post-27270</link>
			<pubDate>Sun, 18 Sep 2011 13:38:23 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">27270@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I corrected the code - please try it again :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>rumblefish on "full width post"</title>
			<link>http://www.kriesi.at/support/topic/full-width-post#post-27267</link>
			<pubDate>Sun, 18 Sep 2011 13:34:09 +0000</pubDate>
			<dc:creator>rumblefish</dc:creator>
			<guid isPermaLink="false">27267@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey Dude,&#60;/p&#62;
&#60;p&#62;That fix doesn't work. It makes the post appear over the whole background of the content area, above the first element of the template ( in this case the slider.)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "full width post"</title>
			<link>http://www.kriesi.at/support/topic/full-width-post#post-27264</link>
			<pubDate>Sun, 18 Sep 2011 13:21:31 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">27264@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I posted the required code for issue no1 here: &#60;a href=&#34;http://www.kriesi.at/support/topic/template-builder-postpage-content-option&#34; rel=&#34;nofollow&#34;&#62;http://www.kriesi.at/support/topic/template-builder-postpage-content-option&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Re widget: Because the widget uses a different div structure like posts it's not possible to &#34;wrap&#34; it in a white box. You can hack the wordpress core files to adjust the output (I'm not sure where the tag widget code is located though) but imho it's not possible to adjust the widget styling (some necessary div elements are missing). The template builder just inserts the widget &#34;as-is&#34; without wrapping it into additional containers (this would break the majority of all widgets).
&#60;/p&#62;</description>
		</item>
		<item>
			<title>rumblefish on "full width post"</title>
			<link>http://www.kriesi.at/support/topic/full-width-post#post-27257</link>
			<pubDate>Sun, 18 Sep 2011 08:41:50 +0000</pubDate>
			<dc:creator>rumblefish</dc:creator>
			<guid isPermaLink="false">27257@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;OK here's a link:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://sos.cameratruck.es/&#34; rel=&#34;nofollow&#34;&#62;http://sos.cameratruck.es/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I would like to be able to see all the content of that first post &#34;2 static page&#34; without the read more buttons. In this case the content is from a page, but I'm assuming the fix would work for a regular post content too?&#60;/p&#62;
&#60;p&#62;The second thing is the widget issue in a template column.&#60;/p&#62;
&#60;p&#62;The tag cloud widget (this is just an example - the same happens with all the widgets) in the second column next to the &#34;2 static page&#34; post is not being enclosed in a white box.&#60;/p&#62;
&#60;p&#62;Whilst you have the page up, any idea why the &#34;play&#34; button on the image slider for the top image is stuck on pause?&#60;/p&#62;
&#60;p&#62;Thanks guys. I hope it's clearer now, what I'm trying to do and what the problem is!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>rumblefish on "full width post"</title>
			<link>http://www.kriesi.at/support/topic/full-width-post#post-27246</link>
			<pubDate>Sun, 18 Sep 2011 08:08:43 +0000</pubDate>
			<dc:creator>rumblefish</dc:creator>
			<guid isPermaLink="false">27246@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;The widget fix didn't work. The box still doesn't appear.&#60;/p&#62;
&#60;p&#62;Also it's not a text widget that I have in there. It's any widget.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>rumblefish on "full width post"</title>
			<link>http://www.kriesi.at/support/topic/full-width-post#post-27244</link>
			<pubDate>Sun, 18 Sep 2011 08:02:36 +0000</pubDate>
			<dc:creator>rumblefish</dc:creator>
			<guid isPermaLink="false">27244@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Ok I will try that. Sorry I couldn't post the site - been having problems with the hosting, but I think now it's finally working.&#60;br /&#62;
Dudes code kind of worked (I can see all the content), but not in the right way. The content of the post appears underneath the white text box, before the image (the first element of the template) and has a transparent background. I'll post you a link once I've updated the online site, it's easier to understand! Thanks guys. I appreciate all your help.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Beard on "full width post"</title>
			<link>http://www.kriesi.at/support/topic/full-width-post#post-27206</link>
			<pubDate>Sat, 17 Sep 2011 17:12:47 +0000</pubDate>
			<dc:creator>Chris Beard</dc:creator>
			<guid isPermaLink="false">27206@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;The code Dude provided is to solve your first problem.&#60;/p&#62;
&#60;p&#62;To give your text widgets using the width of 66% a white background you can add&#60;br /&#62;
&#60;code&#62;.grid8 .widgettitle, .grid8 .textwidget{padding:10px; background:#fff}&#60;/code&#62;&#60;br /&#62;
 to the bottom of your style.css file.&#60;br /&#62;
It'd be nice to have a link to your site in action so we can provide more specific instructions.&#60;/p&#62;
&#60;p&#62;Hope this helps.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>rumblefish on "full width post"</title>
			<link>http://www.kriesi.at/support/topic/full-width-post#post-27152</link>
			<pubDate>Fri, 16 Sep 2011 08:13:51 +0000</pubDate>
			<dc:creator>rumblefish</dc:creator>
			<guid isPermaLink="false">27152@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks for the reply, but you didnt explain what it's for!&#60;/p&#62;
&#60;p&#62;I have two issues with the column feature in the Template Builder.&#60;/p&#62;
&#60;p&#62;1. I would like to be able to show complete posts (no &#34;Read more&#34; buttons&#34; appearing)&#60;/p&#62;
&#60;p&#62;2. If I add a widget area in one of the columns, the widget has no enclosing box (the regular widgets appear inside a sidebar box)&#60;/p&#62;
&#60;p&#62;I need fixes for those two things. I'm not sure what the code you posted above does?&#60;/p&#62;
&#60;p&#62;Thanks Dude
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "full width post"</title>
			<link>http://www.kriesi.at/support/topic/full-width-post#post-27119</link>
			<pubDate>Fri, 16 Sep 2011 05:42:32 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">27119@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;You could include another template. Open up  includes/helper-templates.php and replace:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;get_template_part( &#38;#39;includes/loop&#38;#39;, &#38;#39;index&#38;#39; );
		echo &#38;quot;&#38;lt;/div&#38;gt;&#38;quot;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;with:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;get_template_part( &#38;#39;includes/loop&#38;#39;, &#38;#39;index2&#38;#39; );
		echo &#38;quot;&#38;lt;/div&#38;gt;&#38;quot;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Then make a copy of includes/loop-index.php, call it loop-index2.php and replace:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;if(!is_single())
				{
					echo avia_excerpt($excerpt);
				}
				else
				{
					the_content();
				}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;with:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;the_content();&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>rumblefish on "full width post"</title>
			<link>http://www.kriesi.at/support/topic/full-width-post#post-27064</link>
			<pubDate>Thu, 15 Sep 2011 12:07:22 +0000</pubDate>
			<dc:creator>rumblefish</dc:creator>
			<guid isPermaLink="false">27064@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Any update on the template columns + widgets/truncated text issue? I need to solve this urgently for a job I'm doing.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>rumblefish on "full width post"</title>
			<link>http://www.kriesi.at/support/topic/full-width-post#post-26736</link>
			<pubDate>Sun, 11 Sep 2011 22:34:40 +0000</pubDate>
			<dc:creator>rumblefish</dc:creator>
			<guid isPermaLink="false">26736@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Following on from Suhpreme's questions, how do you stop the posts from truncating once you have them displayed via the template? I have a template showing a full width slider, and underneath it the text from a page. But I'd like the whole text to show, without the &#34;Read More&#34; buttons appearing.&#60;/p&#62;
&#60;p&#62;Widgets don't seem to behave correctly on the template. I created a 2 column layout 66% 33%. On the left the text from a page (which is truncated as above) and to the right a widget. The widget appears but it has no white background. It's as though the formatting has gone awry.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "full width post"</title>
			<link>http://www.kriesi.at/support/topic/full-width-post#post-26606</link>
			<pubDate>Fri, 09 Sep 2011 05:57:00 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">26606@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Yes of course - just add the &#34;Slideshow&#34; element before the &#34;Post/Page Content&#34; element :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>suhpreme on "full width post"</title>
			<link>http://www.kriesi.at/support/topic/full-width-post#post-26605</link>
			<pubDate>Fri, 09 Sep 2011 05:56:37 +0000</pubDate>
			<dc:creator>suhpreme</dc:creator>
			<guid isPermaLink="false">26605@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Forget it i got it! thank you once again.i had to add slider to dynamic template
&#60;/p&#62;</description>
		</item>
		<item>
			<title>suhpreme on "full width post"</title>
			<link>http://www.kriesi.at/support/topic/full-width-post#post-26602</link>
			<pubDate>Fri, 09 Sep 2011 05:51:22 +0000</pubDate>
			<dc:creator>suhpreme</dc:creator>
			<guid isPermaLink="false">26602@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;is there a way to have the full width page with the slider still above? because once i did that the slider went away.&#60;br /&#62;
thank you for the quick response!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "full width post"</title>
			<link>http://www.kriesi.at/support/topic/full-width-post#post-26599</link>
			<pubDate>Fri, 09 Sep 2011 05:48:53 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">26599@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
you can use the template builder (Shoutbox &#38;gt; Template Builder) to create fullwidth templates. Add the &#34;Post/Page&#34; element to a template and apply this template to your posts.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>suhpreme on "full width post"</title>
			<link>http://www.kriesi.at/support/topic/full-width-post#post-26593</link>
			<pubDate>Fri, 09 Sep 2011 05:37:10 +0000</pubDate>
			<dc:creator>suhpreme</dc:creator>
			<guid isPermaLink="false">26593@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
first off thank you for the great theme!&#60;br /&#62;
secondly- i wanted t know if there was a way to have full width blog posts as oppose to the half page.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
