<?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>Renew stack: Modify portfolio page &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/renew-stack-modify-portfolio-page/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/renew-stack-modify-portfolio-page/feed/</link>
		<description></description>
		<lastBuildDate>Mon, 10 Nov 2025 05:54:00 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/renew-stack-modify-portfolio-page/#post-152443</guid>
					<title><![CDATA[Renew stack: Modify portfolio page]]></title>
					<link>https://theme.co/archive/forums/topic/renew-stack-modify-portfolio-page/#post-152443</link>
					<pubDate>Tue, 25 Nov 2014 13:53:09 +0000</pubDate>
					<dc:creator>eiriktrials</dc:creator>

					<description>
						<![CDATA[
						<p>I want to do some modifications to my portfolio page (<a href="http://eiriktrials.com/press-page" rel="nofollow">http://eiriktrials.com/press-page</a>), and would like to get some help with it.</p>
<p>1. The text I write at Pages &gt; Portfolio does not show up at the Portfolio page. I would like to have a short intro above the portfolio content.</p>
<p>2. Each portfolio item has a post type tag when you hover (Image/Gallery/Video). Is it possible to change that to the portfolio category?</p>
<p>3. When you hover the different portfolio items (anywhere but on the text), random links appear from other items. I would like to make the complete thumbnail of each portfolio item clickable.</p>
<p>4. Is it possible to make the thumbnails always display the top of the image, and only cutting off from the bottom of the image?</p>
<p>Thanks for the help!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/renew-stack-modify-portfolio-page/#post-152589</guid>
					<title><![CDATA[Reply To: Renew stack: Modify portfolio page]]></title>
					<link>https://theme.co/archive/forums/topic/renew-stack-modify-portfolio-page/#post-152589</link>
					<pubDate>Tue, 25 Nov 2014 16:28:27 +0000</pubDate>
					<dc:creator>Christopher</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>#1 By default you can not add any description in portfolio page.<br />
Because this requires a template change, I&#8217;d advise that you setup a <a href="http://theme.co/x/member/kb/how-to-setup-child-themes/" title="Child Themes" target="_blank" rel="nofollow">child theme</a>. This allows you to make code changes that won&#8217;t be overwritten when an <strong>X</strong> update is released. After your child theme is setup, please review how we recommend making template changes in <a href="http://theme.co/x/member/kb/customization-best-practices/" rel="nofollow">Customization Best Practices</a>.</p>
<p>Create <strong>template-layout-portfolio.php</strong> file insde <strong>YOUR CHILD THEME -&gt; framework -&gt; views -&gt; renew</strong> and add this code in there:</p>
<pre><code>&lt;?php

// =============================================================================
// VIEWS/RENEW/TEMPLATE-LAYOUT-PORTFOLIO.PHP
// -----------------------------------------------------------------------------
// Portfolio page output for Renew.
// =============================================================================

?&gt;

&lt;?php get_header(); ?&gt;

  &lt;div class=&quot;x-container-fluid max width offset cf&quot;&gt;
    &lt;div class=&quot;&lt;?php x_main_content_class(); ?&gt;&quot; role=&quot;main&quot;&gt;
    &lt;div class=&quot;custome-description&quot;&gt;Add Some Description Here&lt;/div&gt;

      &lt;?php x_get_view( &#039;global&#039;, &#039;_portfolio&#039; ); ?&gt;

    &lt;/div&gt;

    &lt;?php get_sidebar(); ?&gt;

  &lt;/div&gt;

&lt;?php get_footer(); ?&gt;</code></pre>
<p>Instead of &#8216;Add Some Description Here&#8217; add your text.</p>
<p>#2 Regretfully this isn&#8217;t a feature offered by X. It could be possible with custom development, but this would be outside the scope of support we can offer.</p>
<p>#3 Need more information on this ,i don&#8217;t see random link,would you provide some screen shot.</p>
<p>#4 WordPress resize images in proportion and we can not decide to cut it off only from bottom.</p>
<p>Hope it helps.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/renew-stack-modify-portfolio-page/#post-153172</guid>
					<title><![CDATA[Reply To: Renew stack: Modify portfolio page]]></title>
					<link>https://theme.co/archive/forums/topic/renew-stack-modify-portfolio-page/#post-153172</link>
					<pubDate>Wed, 26 Nov 2014 13:24:19 +0000</pubDate>
					<dc:creator>eiriktrials</dc:creator>

					<description>
						<![CDATA[
						<p>Thanks for the help. Regarding #2, is it possible to remove the whole &#8216;IMAGE&#8217; text when hover the image?</p>
<p>And #3, the most important part is to make the whole thumbnail an active link (same as the text in the thumbnail. Is that possible?</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/renew-stack-modify-portfolio-page/#post-153443</guid>
					<title><![CDATA[Reply To: Renew stack: Modify portfolio page]]></title>
					<link>https://theme.co/archive/forums/topic/renew-stack-modify-portfolio-page/#post-153443</link>
					<pubDate>Wed, 26 Nov 2014 19:52:09 +0000</pubDate>
					<dc:creator>John Ezra</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there!</p>
<p><strong>For #2:</strong></p>
<p>You can add this under <strong>Custom &gt; CSS</strong> in the <strong>Customizer</strong> or within your child theme&#8217;s style.css.</p>
<pre><code>.entry-cover-content span:first-child {
display: none;
}</code></pre>
<p>Note this will only get rid of &#8220;IMAGE&#8221; Text, if you wanted to remove the date as well &#8211; just remove the :first-child</p>
<p><strong>For #3:</strong></p>
<p>Because this requires a template change, I&#8217;d advise that you setup a <a href="http://theme.co/x/member/kb/how-to-setup-child-themes/" title="Child Themes" target="_blank" rel="nofollow">child theme</a>. This allows you to make code changes that won&#8217;t be overwritten when an <strong>X</strong> update is released. After your child theme is setup, please review how we recommend making template changes in <a href="http://theme.co/x/member/kb/customization-best-practices/" rel="nofollow">Customization Best Practices</a>.</p>
<p>Once you have that you will need to locate and copy the content-portfolio.php file from:<br />
<strong>/wp-content/themes/x/framework/views/renew/content-portfolio.php</strong></p>
<p>Then you would paste that into your child theme in the exact location, like so:<br />
<strong>/wp-content/themes/x-child-renew/framework/views/renew/content-portfolio.php</strong></p>
<p>Then you would need to replace the content of the content-portfolio.php with the code below:</p>
<pre><code>&lt;?php

// =============================================================================
// VIEWS/RENEW/CONTENT-PORTFOLIO.PHP
// -----------------------------------------------------------------------------
// Portfolio post output for Renew.
// =============================================================================

?&gt;

&lt;article id=&quot;post-&lt;?php the_ID(); ?&gt;&quot; &lt;?php post_class(); ?&gt;&gt;

  &lt;?php if ( ! x_is_portfolio_item() ) : ?&gt;

    &lt;div class=&quot;entry-featured&quot;&gt;
      &lt;?php x_portfolio_item_featured_content(); ?&gt;
      &lt;a href=&quot;#&quot;&gt;&lt;div class=&quot;entry-cover&quot;&gt;
          &lt;div class=&quot;entry-cover-content&quot;&gt;
            &lt;span&gt;&lt;?php echo get_post_meta( get_the_ID(), &#039;_x_portfolio_media&#039;, true ); ?&gt;&lt;/span&gt;
            &lt;h2 class=&quot;entry-title entry-title-portfolio&quot;&gt;
              &lt;?php x_the_alternate_title(); ?&gt;
            &lt;/h2&gt;
            &lt;span&gt;&lt;?php echo get_the_date( &#039;m.d.y&#039; ); ?&gt;&lt;/span&gt;
          &lt;/div&gt;
        &lt;/div&gt;
            &lt;/div&gt;&lt;/a&gt;

  &lt;?php endif; ?&gt;

  &lt;div class=&quot;entry-wrap cf&quot;&gt;

    &lt;?php if ( is_singular() ) : ?&gt;

      &lt;div class=&quot;entry-info&quot;&gt;
        &lt;div class=&quot;entry-featured&quot;&gt;
          &lt;?php x_featured_portfolio( &#039;cropped&#039; ); ?&gt;
        &lt;/div&gt;
        &lt;/div&gt;
        &lt;div class=&quot;entry-text-content&quot;&gt;
          &lt;header class=&quot;entry-header&quot;&gt;
          &lt;h1 class=&quot;entry-title entry-title-portfolio&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/h1&gt;
          &lt;?php x_renew_entry_meta(); ?&gt;
        &lt;/header&gt;
        &lt;?php x_get_view( &#039;global&#039;, &#039;_content&#039;, &#039;the-content&#039; ); ?&gt;
        &lt;/div&gt;
      &lt;div class=&quot;entry-extra&quot;&gt;
        &lt;?php x_portfolio_item_tags(); ?&gt;
        &lt;?php x_portfolio_item_project_link(); ?&gt;
        &lt;?php x_portfolio_item_social(); ?&gt;
      &lt;/div&gt;

    &lt;?php endif; ?&gt;

  &lt;/div&gt;
&lt;/article&gt;</code></pre>
<p>Explanation: the code change involves removing the anchor tag around the title and then putting it around the entire entry cover content div (the hover overlay) so the entire div is clickable.</p>
<p>Note: The above will work already, but you will run into an issue with items that have a gallery (forwards backwards buttons) as the overlay will now be under such items. To fix this we again use CSS, so add the following rule to your style.css</p>
<pre><code>.entry-cover {
z-index: 10;
}</code></pre>
<p>You only need a z-index of 2 actually to get the overlay above the thumbnail. but to get it above the scroll buttons you need 10. so change this according to preference.</p>
<p>Hope this helps!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/renew-stack-modify-portfolio-page/#post-154027</guid>
					<title><![CDATA[Reply To: Renew stack: Modify portfolio page]]></title>
					<link>https://theme.co/archive/forums/topic/renew-stack-modify-portfolio-page/#post-154027</link>
					<pubDate>Thu, 27 Nov 2014 15:02:26 +0000</pubDate>
					<dc:creator>eiriktrials</dc:creator>

					<description>
						<![CDATA[
						<p>Thanks again. Now it&#8217;s looking much better.</p>
<p>There was some issues with the modification you provided though.</p>
<p>1. The link on each thumbnail was set to #. I managed to fix it myself.</p>
<p>2. The design on a single portfolio page is messed up. The box with share this/read more/tags jumped down below the image. Ex: <a href="http://eiriktrials.com/press-item/dt-no/" rel="nofollow">http://eiriktrials.com/press-item/dt-no/</a></p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/renew-stack-modify-portfolio-page/#post-154383</guid>
					<title><![CDATA[Reply To: Renew stack: Modify portfolio page]]></title>
					<link>https://theme.co/archive/forums/topic/renew-stack-modify-portfolio-page/#post-154383</link>
					<pubDate>Fri, 28 Nov 2014 11:06:36 +0000</pubDate>
					<dc:creator>Zeshan</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>Thank you for posting in!</p>
<p><strong>#1:</strong> Glad to hear you&#8217;re able to fix it 🙂</p>
<p><strong>#2:</strong> Please replace the above given code with following:</p>
<pre><code>&lt;?php

// =============================================================================
// VIEWS/RENEW/CONTENT-PORTFOLIO.PHP
// -----------------------------------------------------------------------------
// Portfolio post output for Renew.
// =============================================================================

?&gt;

&lt;article id=&quot;post-&lt;?php the_ID(); ?&gt;&quot; &lt;?php post_class(); ?&gt;&gt;

  &lt;?php if ( ! x_is_portfolio_item() ) : ?&gt;

    &lt;div class=&quot;entry-featured&quot;&gt;
      &lt;?php x_portfolio_item_featured_content(); ?&gt;
      &lt;a href=&quot;#&quot;&gt;&lt;div class=&quot;entry-cover&quot;&gt;
          &lt;div class=&quot;entry-cover-content&quot;&gt;
            &lt;span&gt;&lt;?php echo get_post_meta( get_the_ID(), &#039;_x_portfolio_media&#039;, true ); ?&gt;&lt;/span&gt;
            &lt;h2 class=&quot;entry-title entry-title-portfolio&quot;&gt;
              &lt;?php x_the_alternate_title(); ?&gt;
            &lt;/h2&gt;
            &lt;span&gt;&lt;?php echo get_the_date( &#039;m.d.y&#039; ); ?&gt;&lt;/span&gt;
          &lt;/div&gt;
        &lt;/div&gt;
            &lt;/div&gt;&lt;/a&gt;

  &lt;?php endif; ?&gt;

  &lt;div class=&quot;entry-wrap cf&quot;&gt;

    &lt;?php if ( is_singular() ) : ?&gt;

      &lt;div class=&quot;entry-info&quot;&gt;
        &lt;div class=&quot;entry-featured&quot;&gt;
          &lt;?php x_featured_portfolio( &#039;cropped&#039; ); ?&gt;
        &lt;/div&gt;
      &lt;/div&gt;
      &lt;div class=&quot;entry-extra&quot;&gt;
        &lt;?php x_portfolio_item_tags(); ?&gt;
        &lt;?php x_portfolio_item_project_link(); ?&gt;
        &lt;?php x_portfolio_item_social(); ?&gt;
      &lt;/div&gt;
      &lt;div class=&quot;entry-text-content&quot;&gt;
        &lt;header class=&quot;entry-header&quot;&gt;
        &lt;h1 class=&quot;entry-title entry-title-portfolio&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/h1&gt;
        &lt;?php x_renew_entry_meta(); ?&gt;
      &lt;/header&gt;
      &lt;?php x_get_view( &#039;global&#039;, &#039;_content&#039;, &#039;the-content&#039; ); ?&gt;
      &lt;/div&gt;

    &lt;?php endif; ?&gt;

  &lt;/div&gt;
&lt;/article&gt;
</code></pre>
<p>Hope this helps. 🙂</p>
<p>Thank you.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/renew-stack-modify-portfolio-page/#post-155170</guid>
					<title><![CDATA[Reply To: Renew stack: Modify portfolio page]]></title>
					<link>https://theme.co/archive/forums/topic/renew-stack-modify-portfolio-page/#post-155170</link>
					<pubDate>Sun, 30 Nov 2014 04:54:02 +0000</pubDate>
					<dc:creator>inactive111</dc:creator>

					<description>
						<![CDATA[
						<p>Hi support, can you provide some additional information regarding how to stop the date displaying per above:</p>
<p>&#8220;For #2:</p>
<p>You can add this under Custom &gt; CSS in the Customizer or within your child theme’s style.css.</p>
<p>.entry-cover-content span:first-child {<br />
display: none;<br />
}<br />
Note this will only get rid of “IMAGE” Text, if you wanted to remove the date as well – just remove the :first-child&#8221;</p>
<p>I don&#8217;t understand what you mean when you say &#8220;just remove the :first-child&#8221; </p>
<p>Thanks</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/renew-stack-modify-portfolio-page/#post-155173</guid>
					<title><![CDATA[Reply To: Renew stack: Modify portfolio page]]></title>
					<link>https://theme.co/archive/forums/topic/renew-stack-modify-portfolio-page/#post-155173</link>
					<pubDate>Sun, 30 Nov 2014 05:15:53 +0000</pubDate>
					<dc:creator>inactive111</dc:creator>

					<description>
						<![CDATA[
						<p>Sorry ignore my last question, I figured out what you meant.</p>
<p>Is there a way to make the entire image of a portfolio clickable instead of just the name?</p>
<p>Thanks</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/renew-stack-modify-portfolio-page/#post-155264</guid>
					<title><![CDATA[Reply To: Renew stack: Modify portfolio page]]></title>
					<link>https://theme.co/archive/forums/topic/renew-stack-modify-portfolio-page/#post-155264</link>
					<pubDate>Sun, 30 Nov 2014 11:53:56 +0000</pubDate>
					<dc:creator>inactive111</dc:creator>

					<description>
						<![CDATA[
						<p>Hi, I managed to make the whole thumbnail clickable but ran into the same issue that eiriktrials above had with the thumbnails links all set to: #.</p>
<p>I previously used another post (<a href="https://theme.co/x/member/forums/topic/directing-an-item-in-portfolio-to-a-page/#post-36075" rel="nofollow">https://theme.co/x/member/forums/topic/directing-an-item-in-portfolio-to-a-page/#post-36075</a>) to set-up specific links for each thumbnail but this appears to be overwritten now and the thumbnails are going to #.</p>
<p>Please advise, thanks.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/renew-stack-modify-portfolio-page/#post-155341</guid>
					<title><![CDATA[Reply To: Renew stack: Modify portfolio page]]></title>
					<link>https://theme.co/archive/forums/topic/renew-stack-modify-portfolio-page/#post-155341</link>
					<pubDate>Sun, 30 Nov 2014 16:34:51 +0000</pubDate>
					<dc:creator>Christopher</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>#2 Do you want to hide date in portfolio items?if so add this under Customize -&gt; CSS</p>
<pre><code>.p-meta span:nth-child(2) {
display: none;
}</code></pre>
<p>Regarding to last question please provide us with URL .</p>
<p>Thank you.</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

