<?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>Full Content for Portfolio &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/full-content-for-portfolio/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/full-content-for-portfolio/feed/</link>
		<description></description>
		<lastBuildDate>Tue, 11 Nov 2025 18:01:32 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/full-content-for-portfolio/#post-146204</guid>
					<title><![CDATA[Full Content for Portfolio]]></title>
					<link>https://theme.co/archive/forums/topic/full-content-for-portfolio/#post-146204</link>
					<pubDate>Sun, 16 Nov 2014 17:56:33 +0000</pubDate>
					<dc:creator>Harry B</dc:creator>

					<description>
						<![CDATA[
						<p>Hello,</p>
<p>Can you please tell me how to display the full content of my portfolios on the index pages in multi-portfolio view? My site is currently displaying full content in my single-portfolio-item views &#8211; (just the way I wanted). I also need to know how to sort my portfolio items by alphabetically by title (A-Z). Thanks for your help. I am using integrity-light child theme.</p>
<p>Cheers,</p>
<p>Harry</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/full-content-for-portfolio/#post-146483</guid>
					<title><![CDATA[Reply To: Full Content for Portfolio]]></title>
					<link>https://theme.co/archive/forums/topic/full-content-for-portfolio/#post-146483</link>
					<pubDate>Mon, 17 Nov 2014 07:23:11 +0000</pubDate>
					<dc:creator>Paul R</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Harry,</p>
<p>Thanks for writing in! To assist you with this issue, we&#8217;ll first need you to provide us with your URL as stated on the forum entrance page. This is to ensure that we can provide you with a tailored answer to your situation. Once you have provided us with your URL, we will be happy to assist you with everything.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/full-content-for-portfolio/#post-146669</guid>
					<title><![CDATA[Reply To: Full Content for Portfolio]]></title>
					<link>https://theme.co/archive/forums/topic/full-content-for-portfolio/#post-146669</link>
					<pubDate>Mon, 17 Nov 2014 12:55:43 +0000</pubDate>
					<dc:creator>Harry B</dc:creator>

					<description>
						<![CDATA[
						<p>Hello,</p>
<p>Thanks for the reply. My URL is <a href="http://www.waterwaymagazine.com" rel="nofollow">http://www.waterwaymagazine.com</a>. The portfolio pages that I want to sort alphabetically and show full content are listed in the pull down menu under &#8220;DIRECTORY&#8221;. I am still entering the data so you can check the listings under &#8220;RESTAURANTS&#8221;. I appreciate your help.</p>
<p>Cheers,</p>
<p>Harry</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/full-content-for-portfolio/#post-146884</guid>
					<title><![CDATA[Reply To: Full Content for Portfolio]]></title>
					<link>https://theme.co/archive/forums/topic/full-content-for-portfolio/#post-146884</link>
					<pubDate>Mon, 17 Nov 2014 16:49:59 +0000</pubDate>
					<dc:creator>Kosher K</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Harry,</p>
<p>Thanks for providing URL of your site,</p>
<p>To customize the portfolio, you need to first install and activate a child theme,</p>
<p>You can download the child theme from here -&gt; <a href="http://theme.co/x/member/child-themes/" rel="nofollow">http://theme.co/x/member/child-themes/</a> then install the one that corresponds with your stack,</p>
<p>After installing a child theme, copy this file to your child theme directory,</p>
<p>&#8211; <strong>x/framework/views/global/_portfolio.php </strong><br />
&#8211; <strong>x/framework/views/[your-stack]/content-portfolio.php</strong></p>
<p>it should be here</p>
<p>&#8211; <strong>x-child-[your-stack]/framework/views/global/_portfolio.php </strong><br />
&#8211; <strong>x-child-[your-stack]/framework/views/[your-stack]/content-portfolio.php</strong></p>
<p><strong>#1.</strong> For showing full content on portfolio page that uses layout template portfolio, you need to edit <strong>content-portfolio.php</strong> that is located in your child theme, then search for this line,</p>
<p><code>&lt;?php if ( x_is_portfolio_item() ) : ?&gt;</code></p>
<p>replace it with this code below,</p>
<p><code>&lt;?php if ( x_is_portfolio_item() || is_post_type_archive(&#039;x-portfolio&#039;) ) : ?&gt;</code></p>
<p><strong>#2.</strong> For ordering the portfolio item alphabetically,  edit <strong>_portfolio.php</strong> that is located in your child theme. </p>
<p>Search for this code below,</p>
<pre><code>$args = array(
      &#039;post_type&#039;      =&gt; &#039;x-portfolio&#039;,
      &#039;posts_per_page&#039; =&gt; $count,
      &#039;paged&#039;          =&gt; $paged
    );</code></pre>
<p>then add <strong>orderby</strong> and <strong>order</strong> parameter,</p>
<p>the <strong>$arg</strong> variable should look something similar to this code below,</p>
<pre><code>$args = array(
      &#039;post_type&#039;      =&gt; &#039;x-portfolio&#039;,
      &#039;orderby&#039;        =&gt; &#039;title&#039;,
      &#039;order&#039;          =&gt; &#039;DESC&#039;,
      &#039;posts_per_page&#039; =&gt; $count,
      &#039;paged&#039;          =&gt; $paged
    );</code></pre>
<p>Hope this helps,</p>
<p>Have a great day</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/full-content-for-portfolio/#post-147159</guid>
					<title><![CDATA[Reply To: Full Content for Portfolio]]></title>
					<link>https://theme.co/archive/forums/topic/full-content-for-portfolio/#post-147159</link>
					<pubDate>Tue, 18 Nov 2014 00:33:35 +0000</pubDate>
					<dc:creator>Harry B</dc:creator>

					<description>
						<![CDATA[
						<p>Hello,</p>
<p>This code worked in ordering my portfolio items, and displaying full content, however now the links do not work, and there is no spacing after the title (before the content). Thanks so much for the code. I appreciate your help. </p>
<p>Cheers,</p>
<p>Harry</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/full-content-for-portfolio/#post-147488</guid>
					<title><![CDATA[Reply To: Full Content for Portfolio]]></title>
					<link>https://theme.co/archive/forums/topic/full-content-for-portfolio/#post-147488</link>
					<pubDate>Tue, 18 Nov 2014 12:56:29 +0000</pubDate>
					<dc:creator>Cousett</dc:creator>

					<description>
						<![CDATA[
						<p>In your – <strong>x-child-[your-stack]/framework/views/[your-stack]/content-portfolio.php</strong> replace the following. </p>
<p>Replace<br />
<code>&lt;h1 class=&quot;entry-title entry-title-portfolio&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/h1&gt;</code></p>
<p>With</p>
<p><code>&lt;a href=&quot;&lt;?php the_permalink(); ?&gt;&quot; title=&quot;&lt;?php echo esc_attr( sprintf( __( &#039;Permalink to: &quot;%s&quot;&#039;, &#039;__x__&#039; ), the_title_attribute( &#039;echo=0&#039; ) ) ); ?&gt;&quot;&gt;&lt;h1 class=&quot;entry-title entry-title-portfolio&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/h1&gt;&lt;/a&gt;</code></p>
<p>To add more space between the title and content try adding some CSS code under Appearance -&gt; Customize -&gt; Custom -&gt; CSS</p>
<pre><code>h1.entry-title.entry-title-portfolio {
padding-bottom: 10px;
}</code></pre>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/full-content-for-portfolio/#post-147543</guid>
					<title><![CDATA[Reply To: Full Content for Portfolio]]></title>
					<link>https://theme.co/archive/forums/topic/full-content-for-portfolio/#post-147543</link>
					<pubDate>Tue, 18 Nov 2014 13:45:52 +0000</pubDate>
					<dc:creator>Harry B</dc:creator>

					<description>
						<![CDATA[
						<p>Thanks a lot for the help. You guys are the best. Is there a way to make the portfolio items content be just one column instead of two? My posts look fine on a desktop, but not so good on my ipad. Th</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/full-content-for-portfolio/#post-147789</guid>
					<title><![CDATA[Reply To: Full Content for Portfolio]]></title>
					<link>https://theme.co/archive/forums/topic/full-content-for-portfolio/#post-147789</link>
					<pubDate>Tue, 18 Nov 2014 18:24:48 +0000</pubDate>
					<dc:creator>Cousett</dc:creator>

					<description>
						<![CDATA[
						<p>On the portfolio edit page you can change the number of columns that appear. </p>
<p><img decoding="async" src="http://i.imgur.com/6Zk8JdZ.png" alt="" /></p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/full-content-for-portfolio/#post-147930</guid>
					<title><![CDATA[Reply To: Full Content for Portfolio]]></title>
					<link>https://theme.co/archive/forums/topic/full-content-for-portfolio/#post-147930</link>
					<pubDate>Tue, 18 Nov 2014 21:42:00 +0000</pubDate>
					<dc:creator>Harry B</dc:creator>

					<description>
						<![CDATA[
						<p>I understand that, I am talking about the columns within the post itself. There is an extra items column that displays the meta, tags, project links and social icons. They are in a separate DIV.</p>
<p>This is causing my titles and content to be kind of squished on an ipad regardless of how many Masonry columns you have.</p>
<p>I would like the content for each portfolio item post to be one column with the &#8220;extra items&#8221; underneath. Thanks for all of your help. I am sorry about the confusion with the request!</p>
<p>Harry</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/full-content-for-portfolio/#post-148249</guid>
					<title><![CDATA[Reply To: Full Content for Portfolio]]></title>
					<link>https://theme.co/archive/forums/topic/full-content-for-portfolio/#post-148249</link>
					<pubDate>Wed, 19 Nov 2014 08:38:21 +0000</pubDate>
					<dc:creator>Paul R</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Harry,</p>
<p>To make it one column, you can add this under <strong>Custom &gt; CSS</strong> in the <strong>Customizer</strong>.</p>
<pre><code>
body.single-x-portfolio .x-portfolio .entry-info {
     float:none;
     width:100%;
     margin-bottom:30px;
}

body.single-x-portfolio .x-portfolio .entry-extra {
     float: none;
     width: 100%;
}
</code></pre>
<p>Hope that helps. 🙂</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

