<?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: remove sidebar - Recent Posts</title>
		<link>http://www.kriesi.at/support/tags/remove-sidebar</link>
		<description>Support Forum - Tag: remove sidebar - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Sat, 25 May 2013 13:36:32 +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/remove-sidebar" rel="self" type="application/rss+xml" />

		<item>
			<title>nicholastys on "Removal of Sidebar"</title>
			<link>http://www.kriesi.at/support/topic/removal-of-sidebar#post-110411</link>
			<pubDate>Fri, 10 May 2013 17:09:34 +0000</pubDate>
			<dc:creator>nicholastys</dc:creator>
			<guid isPermaLink="false">110411@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Ismael,&#60;/p&#62;
&#60;p&#62;That worked perfectly.&#60;/p&#62;
&#60;p&#62;Thank you.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Removal of Sidebar"</title>
			<link>http://www.kriesi.at/support/topic/removal-of-sidebar#post-110184</link>
			<pubDate>Thu, 09 May 2013 23:55:49 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">110184@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;You can add this on your custom.css&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;.archive.tax-product_cat .sidebar {
display: none;
}

.archive.tax-product_cat .template-shop.content {
width: 930px;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>nicholastys on "Removal of Sidebar"</title>
			<link>http://www.kriesi.at/support/topic/removal-of-sidebar#post-110112</link>
			<pubDate>Thu, 09 May 2013 17:19:31 +0000</pubDate>
			<dc:creator>nicholastys</dc:creator>
			<guid isPermaLink="false">110112@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I'm trying to remove the sidebar on all category pages. &#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://omni-demo-825.com/product-category/unique-girl-gifts&#34; rel=&#34;nofollow&#34;&#62;http://omni-demo-825.com/product-category/unique-girl-gifts&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Any advice?&#60;/p&#62;
&#60;p&#62;Thank you.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Blog tuning"</title>
			<link>http://www.kriesi.at/support/topic/blog-tuning#post-99228</link>
			<pubDate>Sun, 03 Mar 2013 08:10:52 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">99228@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey! &#60;/p&#62;
&#60;p&#62; Glad that we solved the issue eventually :) &#60;/p&#62;
&#60;p&#62; Regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>suderDesign on "Blog tuning"</title>
			<link>http://www.kriesi.at/support/topic/blog-tuning#post-99142</link>
			<pubDate>Sat, 02 Mar 2013 15:24:27 +0000</pubDate>
			<dc:creator>suderDesign</dc:creator>
			<guid isPermaLink="false">99142@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thank you.&#60;br /&#62;
For other user: you should place your mo &#38;amp; po files into the main theme directory (/wp-content/themes/brightbox/ ).
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Blog tuning"</title>
			<link>http://www.kriesi.at/support/topic/blog-tuning#post-98633</link>
			<pubDate>Wed, 27 Feb 2013 06:57:06 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">98633@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Make sure that you're using the latest version of the theme, this sentence should be translatable. If it doesn't work in you case you can try to translate it by modifying the php file directly. Open up wp-content\themes\brightbox\framework\php\function-set-avia-frontend.php and search for following code:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;if(!empty($wp_query-&#38;gt;found_posts))
			{
				if($wp_query-&#38;gt;found_posts &#38;gt; 1)
				{
					$output =  $wp_query-&#38;gt;found_posts .&#38;quot; &#38;quot;. __(&#38;#39;search results for: &#38;#39;,&#38;#39;avia_framework&#38;#39;).esc_attr($_GET[&#38;#39;s&#38;#39;]);
				}
				else
				{
					$output =  $wp_query-&#38;gt;found_posts .&#38;quot; &#38;quot;. __(&#38;#39;search result for: &#38;#39;,&#38;#39;avia_framework&#38;#39;).esc_attr($_GET[&#38;#39;s&#38;#39;]);
				}
			}
			else
			{
				$output = __(&#38;#39;Search results for: &#38;#39;,&#38;#39;avia_framework&#38;#39;).esc_attr($_GET[&#38;#39;s&#38;#39;]);
			}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Then replace &#34;search result for&#34; with your custom text.&#60;/p&#62;
&#60;p&#62;Brightbox does not support the breadcrumbs at the moment.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>suderDesign on "Blog tuning"</title>
			<link>http://www.kriesi.at/support/topic/blog-tuning#post-98508</link>
			<pubDate>Tue, 26 Feb 2013 10:00:46 +0000</pubDate>
			<dc:creator>suderDesign</dc:creator>
			<guid isPermaLink="false">98508@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Half-translate files po/mo added to the wp-content\themes\brightbox\lang\ folder but it isn't still in PL. &#60;a href=&#34;http://www.pawelsuder.pl/?s=mievbynh?&#34; rel=&#34;nofollow&#34;&#62;http://www.pawelsuder.pl/?s=mievbynh?&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>suderDesign on "Blog tuning"</title>
			<link>http://www.kriesi.at/support/topic/blog-tuning#post-98507</link>
			<pubDate>Tue, 26 Feb 2013 09:48:41 +0000</pubDate>
			<dc:creator>suderDesign</dc:creator>
			<guid isPermaLink="false">98507@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Dude, does Brightbox have native breadcrumbs? In po/mo files which you upload are something like &#34;You are here&#34; what look like that!&#60;/p&#62;
&#60;p&#62;---&#60;br /&#62;
We talking about it here: &#60;a href=&#34;http://www.kriesi.at/support/topic/breadcrumbs-in-brightbox-one-more-time&#34; rel=&#34;nofollow&#34;&#62;http://www.kriesi.at/support/topic/breadcrumbs-in-brightbox-one-more-time&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;And adding to this one +1 &#60;a href=&#34;http://www.kriesi.at/support/topic/breadcrumbs-on-portfolio-pages-not-working-right&#34; rel=&#34;nofollow&#34;&#62;http://www.kriesi.at/support/topic/breadcrumbs-on-portfolio-pages-not-working-right&#60;/a&#62;&#60;br /&#62;
Highly recommended to add the breadcrumbs functionality to Avia Framework by Kriesi !!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Blog tuning"</title>
			<link>http://www.kriesi.at/support/topic/blog-tuning#post-98498</link>
			<pubDate>Tue, 26 Feb 2013 07:53:43 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">98498@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;1) Download the theme translation files from here: &#60;a href=&#34;http://www.kriesi.at/support/topic/brightbox-translation-files&#34; rel=&#34;nofollow&#34;&#62;http://www.kriesi.at/support/topic/brightbox-translation-files&#60;/a&#62;&#60;br /&#62;
2) Then translate the file with Poedit, save the result as pl_PL.po and pl_PL.mo&#60;br /&#62;
3) Upload both files into the wp-content\themes\brightbox\lang\ folder.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>suderDesign on "Blog tuning"</title>
			<link>http://www.kriesi.at/support/topic/blog-tuning#post-98442</link>
			<pubDate>Mon, 25 Feb 2013 23:34:23 +0000</pubDate>
			<dc:creator>suderDesign</dc:creator>
			<guid isPermaLink="false">98442@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Where can I translate &#34;Search results for...&#34; &#60;a href=&#34;http://www.pawelsuder.pl/?s=mievbynh?&#34; rel=&#34;nofollow&#34;&#62;http://www.pawelsuder.pl/?s=mievbynh?&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>suderDesign on "Blog tuning"</title>
			<link>http://www.kriesi.at/support/topic/blog-tuning#post-98435</link>
			<pubDate>Mon, 25 Feb 2013 23:10:21 +0000</pubDate>
			<dc:creator>suderDesign</dc:creator>
			<guid isPermaLink="false">98435@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thank you Nick and Devin. (I wasn't online view days)&#60;br /&#62;
I made it finally by fullwidth dynamic template :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Blog tuning"</title>
			<link>http://www.kriesi.at/support/topic/blog-tuning#post-96770</link>
			<pubDate>Thu, 14 Feb 2013 15:04:55 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">96770@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey suderDesign,&#60;/p&#62;
&#60;p&#62;Not sure if you already figured it out but you canuse a dynamic template set to fullwidth and add that template to each post.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>suderDesign on "Blog tuning"</title>
			<link>http://www.kriesi.at/support/topic/blog-tuning#post-96699</link>
			<pubDate>Thu, 14 Feb 2013 08:06:09 +0000</pubDate>
			<dc:creator>suderDesign</dc:creator>
			<guid isPermaLink="false">96699@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;/to delete/
&#60;/p&#62;</description>
		</item>
		<item>
			<title>suderDesign on "Blog tuning"</title>
			<link>http://www.kriesi.at/support/topic/blog-tuning#post-96670</link>
			<pubDate>Thu, 14 Feb 2013 06:59:12 +0000</pubDate>
			<dc:creator>suderDesign</dc:creator>
			<guid isPermaLink="false">96670@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks, so how can I make single post as full width? &#60;a href=&#34;http://www.pawelsuder.pl/2012/09/03/warsaw-design-apartments/&#34; rel=&#34;nofollow&#34;&#62;http://www.pawelsuder.pl/2012/09/03/warsaw-design-apartments/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Blog tuning"</title>
			<link>http://www.kriesi.at/support/topic/blog-tuning#post-96626</link>
			<pubDate>Wed, 13 Feb 2013 22:58:29 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">96626@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Please try this&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#top.archive .firstheading.border-bottom.cufon_headings {
display: none;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>suderDesign on "Blog tuning"</title>
			<link>http://www.kriesi.at/support/topic/blog-tuning#post-96491</link>
			<pubDate>Wed, 13 Feb 2013 09:37:52 +0000</pubDate>
			<dc:creator>suderDesign</dc:creator>
			<guid isPermaLink="false">96491@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;The last thing I want to do now is blog tuning.&#60;br /&#62;
1. How can I remove &#34;Archive...&#34; box and the line below? &#60;a href=&#34;http://awesomescreenshot.com/04dx8n7d1&#34; rel=&#34;nofollow&#34;&#62;http://awesomescreenshot.com/04dx8n7d1&#60;/a&#62;&#60;br /&#62;
2. Please let me know how can I remove sidebar (done) and increased width of .content CSS.&#60;br /&#62;
I died here because I need this only for single posts, no also on blog archive ;)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "NewsCast Sidebars/footer showing when logged out and change front page problem"</title>
			<link>http://www.kriesi.at/support/topic/newscast-sidebarsfooter-showing-when-logged-out-and-change-front-page-problem#post-83974</link>
			<pubDate>Wed, 14 Nov 2012 19:59:03 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">83974@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;You would be removing everything inside the content div that starts on line 77. Then adding in your own bit of code to get the page data based on its ID. Here is an example from the codex: &#60;a href=&#34;http://codex.wordpress.org/Function_Reference/get_page#Examples&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Function_Reference/get_page#Examples&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>bbrunningNN on "NewsCast Sidebars/footer showing when logged out and change front page problem"</title>
			<link>http://www.kriesi.at/support/topic/newscast-sidebarsfooter-showing-when-logged-out-and-change-front-page-problem#post-83895</link>
			<pubDate>Wed, 14 Nov 2012 14:55:08 +0000</pubDate>
			<dc:creator>bbrunningNN</dc:creator>
			<guid isPermaLink="false">83895@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I'm not very web dev savvy, I'm not sure what code calls the blog posts. I assume it's around div id main within the full sized and small sized posts sections. Would I just comment out all that code and call a page in it's place? How do I just call a page?&#60;/p&#62;
&#60;p&#62;I read the page about the loop but it's above my skills. Also, if it's easier, could the slider be shown on all pages?&#60;/p&#62;
&#60;p&#62;Sorry for the inconvenience.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "NewsCast Sidebars/footer showing when logged out and change front page problem"</title>
			<link>http://www.kriesi.at/support/topic/newscast-sidebarsfooter-showing-when-logged-out-and-change-front-page-problem#post-83740</link>
			<pubDate>Tue, 13 Nov 2012 20:47:52 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">83740@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi bbrunningNN,&#60;/p&#62;
&#60;p&#62;With that kind of customization you would be better off, and may have to, modify the index.php within the theme files. You can remove the get_sidebar and get rid of the code in the content area that calls all the blog posts.&#60;/p&#62;
&#60;p&#62;Then include a specific other page or put in the content yourself manually.&#60;/p&#62;
&#60;p&#62;For a broad overview see: &#60;a href=&#34;http://codex.wordpress.org/The_Loop_in_Action&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/The_Loop_in_Action&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>bbrunningNN on "NewsCast Sidebars/footer showing when logged out and change front page problem"</title>
			<link>http://www.kriesi.at/support/topic/newscast-sidebarsfooter-showing-when-logged-out-and-change-front-page-problem#post-83675</link>
			<pubDate>Tue, 13 Nov 2012 16:34:05 +0000</pubDate>
			<dc:creator>bbrunningNN</dc:creator>
			<guid isPermaLink="false">83675@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I'm attempting to remove the sidebars/footers from the theme. When I deselect them within the newscast options, they go away while I'm logged in. If I log back out, they come back. Any idea what's causing this?&#60;br /&#62;
&#60;a href=&#34;http://iftnew.iftflorida.org&#34; rel=&#34;nofollow&#34;&#62;http://iftnew.iftflorida.org&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Second question&#60;br /&#62;
I'm trying to keep the accordian slider but I want the front page to just have text from the about page or another page. Is there a way to do that instead of having the posts from the slider show up?&#60;/p&#62;
&#60;p&#62;Thanks in advance
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
