<?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>Removing or disabling title on Portfolio page &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/removing-or-disabling-title-on-portfolio-page/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/removing-or-disabling-title-on-portfolio-page/feed/</link>
		<description></description>
		<lastBuildDate>Fri, 17 Oct 2025 03:32:50 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/removing-or-disabling-title-on-portfolio-page/#post-64509</guid>
					<title><![CDATA[Removing or disabling title on Portfolio page]]></title>
					<link>https://theme.co/archive/forums/topic/removing-or-disabling-title-on-portfolio-page/#post-64509</link>
					<pubDate>Thu, 03 Jul 2014 12:49:32 +0000</pubDate>
					<dc:creator>Sohrab G</dc:creator>

					<description>
						<![CDATA[
						<p>Hi,</p>
<p>I am trying to remove the main Portfolio page title that shows at the top of the page.</p>
<p>I cant seem to find an option to disable or remove the title even though I ticked the DISABLE option on the page option.</p>
<p>I have tried removing the H1 from the portfolio layout template but it is still there.</p>
<p>content-portfolio.php =&gt;<br />
&lt;h1 class=&#8221;entry-title entry-title-portfolio&#8221;&gt;&lt;?php the_title(); ?&gt;&lt;/h1&gt;</p>
<p>I am probably editing the wrong file.</p>
<p>Please let me know how to remove or disable it.</p>
<p>Cheers</p>
<p>S</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/removing-or-disabling-title-on-portfolio-page/#post-64847</guid>
					<title><![CDATA[Reply To: Removing or disabling title on Portfolio page]]></title>
					<link>https://theme.co/archive/forums/topic/removing-or-disabling-title-on-portfolio-page/#post-64847</link>
					<pubDate>Fri, 04 Jul 2014 04:31:51 +0000</pubDate>
					<dc:creator>Rad</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Sohrab,</p>
<p>Thank you for writing in but I&#8217;m not really sure what causing it. Would you mind providing url address and admin login in private?</p>
<p>Thank you.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/removing-or-disabling-title-on-portfolio-page/#post-65117</guid>
					<title><![CDATA[Reply To: Removing or disabling title on Portfolio page]]></title>
					<link>https://theme.co/archive/forums/topic/removing-or-disabling-title-on-portfolio-page/#post-65117</link>
					<pubDate>Fri, 04 Jul 2014 23:08:41 +0000</pubDate>
					<dc:creator>Sohrab G</dc:creator>

					<description>
						<![CDATA[
						This reply has been marked as private.						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/removing-or-disabling-title-on-portfolio-page/#post-65390</guid>
					<title><![CDATA[Reply To: Removing or disabling title on Portfolio page]]></title>
					<link>https://theme.co/archive/forums/topic/removing-or-disabling-title-on-portfolio-page/#post-65390</link>
					<pubDate>Sun, 06 Jul 2014 02:10:36 +0000</pubDate>
					<dc:creator>Christian</dc:creator>

					<description>
						<![CDATA[
						<p>Hey Sohrab,</p>
<p>Please try replacing the content-portfolio.php with the code below</p>
<pre><code>&lt;?php

// =============================================================================
// VIEWS/INTEGRITY/CONTENT-PORTFOLIO.PHP
// -----------------------------------------------------------------------------
// Portfolio post output for Integrity.
// =============================================================================

$archive_share = x_get_option( &#039;x_integrity_portfolio_archive_post_sharing_enable&#039; );

?&gt;

&lt;article id=&quot;post-&lt;?php the_ID(); ?&gt;&quot; &lt;?php post_class(); ?&gt;&gt;
  &lt;div class=&quot;entry-featured&quot;&gt;
    &lt;?php x_portfolio_item_featured_content(); ?&gt;
  &lt;/div&gt;
  &lt;div class=&quot;entry-wrap cf&quot;&gt;

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

      &lt;div class=&quot;entry-info&quot;&gt;
        &lt;header class=&quot;entry-header&quot;&gt;
          &lt;!-- &lt;h1 class=&quot;entry-title entry-title-portfolio&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/h1&gt; --&gt;
          &lt;?php x_integrity_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 else : ?&gt;

      &lt;header class=&quot;entry-header&quot;&gt;
        &lt;h2 class=&quot;entry-title entry-title-portfolio&quot;&gt;
          &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;?php x_the_alternate_title(); ?&gt;&lt;/a&gt;
        &lt;/h2&gt;
        &lt;?php if ( $archive_share == 1 ) : ?&gt;
          &lt;?php x_portfolio_item_social(); ?&gt;
        &lt;?php endif; ?&gt;
      &lt;/header&gt;

    &lt;?php endif; ?&gt;

  &lt;/div&gt;
  &lt;?php x_google_authorship_meta(); ?&gt;
&lt;/article&gt;</code></pre>
<p>If that doesn&#8217;t help, please give us the URL of the page your trying to remove the title.</p>
<p>Thanks.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/removing-or-disabling-title-on-portfolio-page/#post-65500</guid>
					<title><![CDATA[Reply To: Removing or disabling title on Portfolio page]]></title>
					<link>https://theme.co/archive/forums/topic/removing-or-disabling-title-on-portfolio-page/#post-65500</link>
					<pubDate>Sun, 06 Jul 2014 11:00:07 +0000</pubDate>
					<dc:creator>Sohrab G</dc:creator>

					<description>
						<![CDATA[
						<p>Hi,</p>
<p>The home page I trying to remove the title &#8211; <a href="http://williamhillthefacts.com/" rel="nofollow">http://williamhillthefacts.com/</a> </p>
<p>PAGE: Home</p>
<p>I have tried the code you provided above but it still doesn&#8217;t work.</p>
<p>By the way commenting H1 out doesn&#8217;t work with PHP. PHP still reads that.</p>
<p>I removed the whole line out as you can see in the code I provided above but the page title still shows up. I am puzzled.</p>
<p>Is there another file in the theme that porfolio template use? </p>
<p>I have no option of setting the font size for the search form as well??</p>
<p>Please let me know how I can resolve that.</p>
<p>Cheers.</p>
<p>S</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/removing-or-disabling-title-on-portfolio-page/#post-65553</guid>
					<title><![CDATA[Reply To: Removing or disabling title on Portfolio page]]></title>
					<link>https://theme.co/archive/forums/topic/removing-or-disabling-title-on-portfolio-page/#post-65553</link>
					<pubDate>Sun, 06 Jul 2014 14:56:54 +0000</pubDate>
					<dc:creator>Sohrab G</dc:creator>

					<description>
						<![CDATA[
						<p>Hi,</p>
<p>It is actually the page title that I want to remove and not the post title.</p>
<p>Cheers</p>
<p>S</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/removing-or-disabling-title-on-portfolio-page/#post-65709</guid>
					<title><![CDATA[Reply To: Removing or disabling title on Portfolio page]]></title>
					<link>https://theme.co/archive/forums/topic/removing-or-disabling-title-on-portfolio-page/#post-65709</link>
					<pubDate>Mon, 07 Jul 2014 01:48:51 +0000</pubDate>
					<dc:creator>Christian</dc:creator>

					<description>
						<![CDATA[
						<p>Hey Sohrab,</p>
<p>Please modify <strong>_landmark-header.php</strong> located in <strong>framework\views\integrity</strong>. The code you&#8217;ll want to modify is </p>
<pre><code>&lt;header class=&quot;x-header-landmark x-container-fluid max width&quot;&gt;
    &lt;h1 class=&quot;h-landmark&quot;&gt;&lt;span&gt;&lt;?php echo get_theme_mod( &#039;x_integrity_blog_title&#039; ); ?&gt;&lt;/span&gt;&lt;/h1&gt;
    &lt;p class=&quot;p-landmark-sub&quot;&gt;&lt;span&gt;&lt;?php echo get_theme_mod( &#039;x_integrity_blog_subtitle&#039; ); ?&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/header&gt;</code></pre>
<p>For the search, the code you&#8217;ll modify</p>
<pre><code>&lt;header class=&quot;x-header-landmark x-container-fluid max width&quot;&gt;
    &lt;h1 class=&quot;h-landmark&quot;&gt;&lt;span&gt;&lt;?php _e( &#039;Search Results&#039;, &#039;__x__&#039; ); ?&gt;&lt;/span&gt;&lt;/h1&gt;
    &lt;p class=&quot;p-landmark-sub&quot;&gt;&lt;span&gt;&lt;?php _e( &quot;Below you&#039;ll see everything we could locate for your search of &quot;, &#039;__x__&#039; ); echo &#039;&lt;strong&gt;&amp;ldquo;&#039;; the_search_query(); echo &#039;&amp;rdquo;&lt;/strong&gt;&#039;; ?&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/header&gt;</code></pre>
<p>Hope that helps. 🙂</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/removing-or-disabling-title-on-portfolio-page/#post-182565</guid>
					<title><![CDATA[Reply To: Removing or disabling title on Portfolio page]]></title>
					<link>https://theme.co/archive/forums/topic/removing-or-disabling-title-on-portfolio-page/#post-182565</link>
					<pubDate>Wed, 14 Jan 2015 09:47:52 +0000</pubDate>
					<dc:creator>pfavre</dc:creator>

					<description>
						<![CDATA[
						<p>Hello Sohrab</p>
<p>I also am looking at removing the &#8220;Portfolio&#8221; title (span) and did not get a resolution from above. I have dug a bit further and have seemed to get a solution. Support please confirm.</p>
<p>Navigate to your theme, www\wordpress\wp-content\themes\x\framework\views\integrity<br />
Edit _landmark-header.php</p>
<p>As you will see the structure is a sequence of IF statements. Search for line 120. You will notice the IF statement is x_is_portfolio</p>
<p>Delete line 122<br />
&lt;h1 class=&#8221;h-landmark&#8221;&gt;&lt;span&gt;&lt;?php the_title(); ?&gt;&lt;/span&gt;&lt;/h1&gt;</p>
<p>Hope this helps</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/removing-or-disabling-title-on-portfolio-page/#post-182987</guid>
					<title><![CDATA[Reply To: Removing or disabling title on Portfolio page]]></title>
					<link>https://theme.co/archive/forums/topic/removing-or-disabling-title-on-portfolio-page/#post-182987</link>
					<pubDate>Wed, 14 Jan 2015 18:18:47 +0000</pubDate>
					<dc:creator>Zeshan</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Pfavre,</p>
<p>Thank you for helping other users! 🙂</p>
<p>Yes, removing this line of code should remove the portfolio page title.</p>
<p>Cheers!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/removing-or-disabling-title-on-portfolio-page/#post-562632</guid>
					<title><![CDATA[Reply To: Removing or disabling title on Portfolio page]]></title>
					<link>https://theme.co/archive/forums/topic/removing-or-disabling-title-on-portfolio-page/#post-562632</link>
					<pubDate>Fri, 25 Sep 2015 19:02:58 +0000</pubDate>
					<dc:creator>jessica</dc:creator>

					<description>
						<![CDATA[
						<p>I&#8217;ve deleted line 122 in _landmark-header.php, but the title is still showing up on my portfolio items. See <a href="http://goodvibesbranding.com/portfolio/yogi-kids/" rel="nofollow">http://goodvibesbranding.com/portfolio/yogi-kids/</a> Please help.</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

