<?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: FullWidth Portfolio Pages</title>
		<link>http://www.kriesi.at/support/topic/fullwidth-portfolio-pages</link>
		<description>Support Forum - Topic: FullWidth Portfolio Pages</description>
		<language>en-US</language>
		<pubDate>Fri, 24 May 2013 05:28:42 +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/fullwidth-portfolio-pages" rel="self" type="application/rss+xml" />

		<item>
			<title>Dude on "FullWidth Portfolio Pages"</title>
			<link>http://www.kriesi.at/support/topic/fullwidth-portfolio-pages#post-15712</link>
			<pubDate>Sat, 26 Mar 2011 17:39:48 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">15712@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Glad that I could help you :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>quinconce on "FullWidth Portfolio Pages"</title>
			<link>http://www.kriesi.at/support/topic/fullwidth-portfolio-pages#post-15669</link>
			<pubDate>Fri, 25 Mar 2011 15:40:01 +0000</pubDate>
			<dc:creator>quinconce</dc:creator>
			<guid isPermaLink="false">15669@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;GREAT TIPS !
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "FullWidth Portfolio Pages"</title>
			<link>http://www.kriesi.at/support/topic/fullwidth-portfolio-pages#post-10055</link>
			<pubDate>Fri, 10 Dec 2010 09:01:17 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">10055@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Glad that I could help you.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Fox Web Design on "FullWidth Portfolio Pages"</title>
			<link>http://www.kriesi.at/support/topic/fullwidth-portfolio-pages#post-10047</link>
			<pubDate>Fri, 10 Dec 2010 08:03:04 +0000</pubDate>
			<dc:creator>Fox Web Design</dc:creator>
			<guid isPermaLink="false">10047@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Why are you so good? haha.&#60;/p&#62;
&#60;p&#62;Many thanks, and i will definitely be hiring you when things come along. :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "FullWidth Portfolio Pages"</title>
			<link>http://www.kriesi.at/support/topic/fullwidth-portfolio-pages#post-10015</link>
			<pubDate>Thu, 09 Dec 2010 11:04:52 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">10015@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
1) you can use the &#34;Custom Post Template plugin&#34; to select individual templates for your posts/portfolio entries. You can download it here: &#60;a href=&#34;http://wordpress.org/extend/plugins/custom-post-template/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/custom-post-template/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Then you need to follow the instructions posted here:&#60;br /&#62;
&#60;a href=&#34;http://www.kriesi.at/support/topic/portfolio-fullwidth-but-blog-with-sidebar&#34; rel=&#34;nofollow&#34;&#62;http://www.kriesi.at/support/topic/portfolio-fullwidth-but-blog-with-sidebar&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;2) if you only want to use fullwidth portfolio items:&#60;/p&#62;
&#60;p&#62;Change following code in single.php:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;div class=&#38;quot;wrapper&#38;quot; id=&#38;#39;wrapper_main&#38;#39;&#38;gt;

	&#38;lt;div class=&#38;quot;center&#38;quot;&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;to&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php if( get_post_type() != &#38;#39;portfolio&#38;#39; ) {?&#38;gt;
&#38;lt;div class=&#38;quot;wrapper&#38;quot; id=&#38;#39;wrapper_main&#38;#39;&#38;gt;
	&#38;lt;div class=&#38;quot;center&#38;quot;&#38;gt;
&#38;lt;?php }else{ ?&#38;gt;
&#38;lt;div class=&#38;quot;wrapper fullwidth&#38;quot; id=&#38;#39;wrapper_main&#38;#39;&#38;gt;
	&#38;lt;div class=&#38;quot;center&#38;quot;&#38;gt;
&#38;lt;?php } ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
		$k_option[&#38;#39;showSidebar&#38;#39;] = &#38;#39;blog&#38;#39;;
		get_sidebar(); ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;to:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php if( get_post_type() != &#38;#39;portfolio&#38;#39; ) {

		$k_option[&#38;#39;showSidebar&#38;#39;] = &#38;#39;blog&#38;#39;;
		get_sidebar();
} ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You can contact me via email to &#60;a href=&#34;mailto:kriesi2000-dude@yahoo.com&#34;&#62;kriesi2000-dude@yahoo.com&#60;/a&#62; if you want to hire me for customization jobs.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Fox Web Design on "FullWidth Portfolio Pages"</title>
			<link>http://www.kriesi.at/support/topic/fullwidth-portfolio-pages#post-9990</link>
			<pubDate>Wed, 08 Dec 2010 23:17:40 +0000</pubDate>
			<dc:creator>Fox Web Design</dc:creator>
			<guid isPermaLink="false">9990@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Yeah maybe your right, i used the search bar at the top thinking it was going to stay within the Avisio area, opps.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.kriesi.at/support/topic/portfolio-items-width-and-sorting&#34; rel=&#34;nofollow&#34;&#62;http://www.kriesi.at/support/topic/portfolio-items-width-and-sorting&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thanks Dude - also how do i hire you for customisational jobs, coz i have some from time to time.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "FullWidth Portfolio Pages"</title>
			<link>http://www.kriesi.at/support/topic/fullwidth-portfolio-pages#post-9964</link>
			<pubDate>Wed, 08 Dec 2010 09:20:34 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">9964@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
can you post a link to the post here? I think you used Habitat code instead of Avisio code :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Fox Web Design on "FullWidth Portfolio Pages"</title>
			<link>http://www.kriesi.at/support/topic/fullwidth-portfolio-pages#post-9949</link>
			<pubDate>Wed, 08 Dec 2010 07:39:33 +0000</pubDate>
			<dc:creator>Fox Web Design</dc:creator>
			<guid isPermaLink="false">9949@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;I wanted to make the Portfolio pages full width.&#60;/p&#62;
&#60;p&#62;I followed the post regarding it step by step and it has come up with an error:&#60;/p&#62;
&#60;p&#62;-------------------&#60;br /&#62;
Fatal error: Call to undefined function display_featured_media() in /home/perthweb/public_html/three/wp-content/themes/avisio/single-portfolio.php on line 24&#60;br /&#62;
-------------------&#60;/p&#62;
&#60;p&#62;Please help.&#60;/p&#62;
&#60;p&#62;One example page is ... &#60;a href=&#34;http://foxwebdesign.com.au/three/?portfolio=karma-floral-design&#34; rel=&#34;nofollow&#34;&#62;http://foxwebdesign.com.au/three/?portfolio=karma-floral-design&#60;/a&#62;
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
