<?xml version="1.0" encoding="UTF-8"?>
	<rss version="2.0"
		xmlns:content="http://purl.org/rss/1.0/modules/content/"
		xmlns:wfw="http://wellformedweb.org/CommentAPI/"
		xmlns:dc="http://purl.org/dc/elements/1.1/"
		xmlns:atom="http://www.w3.org/2005/Atom"

			>

	<channel>

		<title>Portfolio Item page layout problem &#8211; no fullwidth band possible? &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/portfolio-item-page-layout-problem-no-fullwidth-band-possible/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/portfolio-item-page-layout-problem-no-fullwidth-band-possible/feed/</link>
		<description></description>
		<lastBuildDate>Mon, 20 Oct 2025 05:45:06 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/portfolio-item-page-layout-problem-no-fullwidth-band-possible/#post-37100</guid>
					<title><![CDATA[Portfolio Item page layout problem &#8211; no fullwidth band possible?]]></title>
					<link>https://theme.co/archive/forums/topic/portfolio-item-page-layout-problem-no-fullwidth-band-possible/#post-37100</link>
					<pubDate>Fri, 25 Apr 2014 10:46:45 +0000</pubDate>
					<dc:creator>Chris M</dc:creator>

					<description>
						<![CDATA[
						<p>Hello,<br />
How did I change the portfolio item (.php) with CSS to act like a page ?<br />
Second: Iin the the portfolio item background is set to grey, I cant change that.</p>
<p>Please help.<br />
thanks</p>
<p>Screenshots<br />
<a href="http://www.evernote.com/shard/s1/sh/2af4ed9e-75a1-45a5-b6dc-5ae8bfca3439/3e75917fec6bf5c6e7bfa6c07b22c0b6" rel="nofollow">http://www.evernote.com/shard/s1/sh/2af4ed9e-75a1-45a5-b6dc-5ae8bfca3439/3e75917fec6bf5c6e7bfa6c07b22c0b6</a></p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/portfolio-item-page-layout-problem-no-fullwidth-band-possible/#post-37259</guid>
					<title><![CDATA[Reply To: Portfolio Item page layout problem &#8211; no fullwidth band possible?]]></title>
					<link>https://theme.co/archive/forums/topic/portfolio-item-page-layout-problem-no-fullwidth-band-possible/#post-37259</link>
					<pubDate>Fri, 25 Apr 2014 20:34:56 +0000</pubDate>
					<dc:creator>Alexander</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Chris,</p>
<p>I&#8217;m sorry, the portfolio items can&#8217;t be given page templates and made full width. You can however, create separate pages for each item.</p>
<p>In your portfolio items, you can set a &#8220;Project Link&#8221; and place a link to the page you created. This is usually meant for linking to an external source</p>
<p>Next, add this to the functions.php of your <a href="http://theme.co/x/member/kb/how-to-setup-child-themes/" title="Child Themes" target="_blank" rel="nofollow">child theme</a>.</p>
<p>This code will make that portfolio item directly link to the &#8220;Project Link&#8221; instead of the portfolio item page.</p>
<pre><code>add_filter( &#039;post_type_link&#039;, &#039;x_remap_portfolio_permalink_to_project_link&#039;, 10, 4);

function x_remap_portfolio_permalink_to_project_link($post_link, $post, $leavename, $sample) {

    if (&#039;x-portfolio&#039; == $post-&gt;post_type) {
        $custom = get_post_custom($post-&gt;id);

        if (isset($custom[&#039;_x_portfolio_project_link&#039;]) &amp;&amp; $custom[&#039;_x_portfolio_project_link&#039;][0]!=&#039;&#039;)
            return $custom[&#039;_x_portfolio_project_link&#039;][0];
    }

    return $post_link;
}</code></pre>
<p>EDIT: I&#8217;d like to add a bit more info here, as this workaround has been referred to in other topics.</p>
<p>The code above will change the link of the portfolio items. So when you click an item from the portfolio page, it will send you directly to the custom link. This helps if you want a more unique layout that can only be created using a page, or if you want an external link directly.</p>
<p>After adding the code, you should do this:</p>
<p>1. Create your portfolio items.<br />
2. For each portfolio item, create a new page to present the unique layout you would like.<br />
3. After creating a page, view it, and copy the link<br />
3. Edit the portfolio item, and paste the link into the &#8220;Custom URL&#8221; field.</p>
<p>Now when you view the portfolio page, clicking an item will send you directly to the set URL.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/portfolio-item-page-layout-problem-no-fullwidth-band-possible/#post-44353</guid>
					<title><![CDATA[Reply To: Portfolio Item page layout problem &#8211; no fullwidth band possible?]]></title>
					<link>https://theme.co/archive/forums/topic/portfolio-item-page-layout-problem-no-fullwidth-band-possible/#post-44353</link>
					<pubDate>Wed, 14 May 2014 16:40:26 +0000</pubDate>
					<dc:creator>Chris M</dc:creator>

					<description>
						<![CDATA[
						<p>It´s working, thanks. But the breadcrumbs are not functioning properly then.<br />
But I don´t know, if it fits my demands. I gonna try different things.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/portfolio-item-page-layout-problem-no-fullwidth-band-possible/#post-44623</guid>
					<title><![CDATA[Reply To: Portfolio Item page layout problem &#8211; no fullwidth band possible?]]></title>
					<link>https://theme.co/archive/forums/topic/portfolio-item-page-layout-problem-no-fullwidth-band-possible/#post-44623</link>
					<pubDate>Thu, 15 May 2014 06:23:41 +0000</pubDate>
					<dc:creator>Christian</dc:creator>

					<description>
						<![CDATA[
						<p>You&#8217;re welcome Chris.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/portfolio-item-page-layout-problem-no-fullwidth-band-possible/#post-66859</guid>
					<title><![CDATA[Reply To: Portfolio Item page layout problem &#8211; no fullwidth band possible?]]></title>
					<link>https://theme.co/archive/forums/topic/portfolio-item-page-layout-problem-no-fullwidth-band-possible/#post-66859</link>
					<pubDate>Wed, 09 Jul 2014 22:20:44 +0000</pubDate>
					<dc:creator>ryan b</dc:creator>

					<description>
						<![CDATA[
						<p>Hi,<br />
This code works great but is there a way to add target_blank so that it opens in a new tab?</p>
<p>Cheers</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/portfolio-item-page-layout-problem-no-fullwidth-band-possible/#post-67277</guid>
					<title><![CDATA[Reply To: Portfolio Item page layout problem &#8211; no fullwidth band possible?]]></title>
					<link>https://theme.co/archive/forums/topic/portfolio-item-page-layout-problem-no-fullwidth-band-possible/#post-67277</link>
					<pubDate>Thu, 10 Jul 2014 21:48:05 +0000</pubDate>
					<dc:creator>Rad</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Ryan,</p>
<p>Sure, just add this code at your customizer&#8217;s custom javascript.</p>
<p><code>jQuery(function($){ $(&#039;.page-template-template-layout-portfolio-php .x-portfolio a&#039;).attr(&#039;target&#039;,&#039;_blank&#039;) });</code></p>
<p>Cheers.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/portfolio-item-page-layout-problem-no-fullwidth-band-possible/#post-67286</guid>
					<title><![CDATA[Reply To: Portfolio Item page layout problem &#8211; no fullwidth band possible?]]></title>
					<link>https://theme.co/archive/forums/topic/portfolio-item-page-layout-problem-no-fullwidth-band-possible/#post-67286</link>
					<pubDate>Thu, 10 Jul 2014 22:09:21 +0000</pubDate>
					<dc:creator>ryan b</dc:creator>

					<description>
						<![CDATA[
						<p>Awesome, thanks!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/portfolio-item-page-layout-problem-no-fullwidth-band-possible/#post-67687</guid>
					<title><![CDATA[Reply To: Portfolio Item page layout problem &#8211; no fullwidth band possible?]]></title>
					<link>https://theme.co/archive/forums/topic/portfolio-item-page-layout-problem-no-fullwidth-band-possible/#post-67687</link>
					<pubDate>Sat, 12 Jul 2014 00:58:09 +0000</pubDate>
					<dc:creator>Rad</dc:creator>

					<description>
						<![CDATA[
						<p>You&#8217;re welcome Ryan!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/portfolio-item-page-layout-problem-no-fullwidth-band-possible/#post-215364</guid>
					<title><![CDATA[Reply To: Portfolio Item page layout problem &#8211; no fullwidth band possible?]]></title>
					<link>https://theme.co/archive/forums/topic/portfolio-item-page-layout-problem-no-fullwidth-band-possible/#post-215364</link>
					<pubDate>Wed, 25 Feb 2015 23:38:59 +0000</pubDate>
					<dc:creator>honestycompany</dc:creator>

					<description>
						<![CDATA[
						<p>You guys are amazing! Just want to remind you that your help is greatly appreciated.</p>
<p>&#8212;&#8212;Hail X Support Team!&#8212;&#8212;</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/portfolio-item-page-layout-problem-no-fullwidth-band-possible/#post-215559</guid>
					<title><![CDATA[Reply To: Portfolio Item page layout problem &#8211; no fullwidth band possible?]]></title>
					<link>https://theme.co/archive/forums/topic/portfolio-item-page-layout-problem-no-fullwidth-band-possible/#post-215559</link>
					<pubDate>Thu, 26 Feb 2015 05:24:38 +0000</pubDate>
					<dc:creator>Christian</dc:creator>

					<description>
						<![CDATA[
						<p>You&#8217;re welcome. Glad we could help and thank you for your kind words.</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

