<?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>how to delete h1 automatic titles in blog&#039;s articles &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/how-to-delete-h1-automatic-titles-in-blogs-articles/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/how-to-delete-h1-automatic-titles-in-blogs-articles/feed/</link>
		<description></description>
		<lastBuildDate>Fri, 21 Nov 2025 01:21:55 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-delete-h1-automatic-titles-in-blogs-articles/#post-87493</guid>
					<title><![CDATA[how to delete h1 automatic titles in blog&#039;s articles]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-delete-h1-automatic-titles-in-blogs-articles/#post-87493</link>
					<pubDate>Tue, 19 Aug 2014 11:36:44 +0000</pubDate>
					<dc:creator>ANDREA V</dc:creator>

					<description>
						<![CDATA[
						<p>Hi,</p>
<p><a href="http://www.trueweb.ch/blog/creazione-siti-intenet" rel="nofollow">http://www.trueweb.ch/blog/creazione-siti-intenet</a></p>
<p>as you can see I hided the post title and the blog&#8217;s name from the articles page with your help by adding some css code in the customizer.</p>
<p>you can see in the source code of that link that even if titles are hided they remain as invisible h1 titles. So I have two h1: </p>
<p>First one: the blog title<br />
Second one: the article title</p>
<pre><code>&lt;h1 class=&quot;entry-title&quot;&gt;Creazione Siti Internet per Aziende Locali&lt;/h1&gt;
</code></pre>
<pre><code>&lt;div class=&quot;x-landmark&quot;&gt;

                      
              &lt;h1 class=&quot;h-landmark&quot;&gt;&lt;span&gt;TrueBlog&lt;/span&gt;&lt;/h1&gt;

                      
          &lt;/div&gt;</code></pre>
<p>I would like to automatically erase the h1 blog title and h1 article title that appears in every new article. Obviously for optimization purposes. Then I will add the h1 myself using short-codes&#8230;</p>
<p>thank you for your support</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-delete-h1-automatic-titles-in-blogs-articles/#post-87545</guid>
					<title><![CDATA[Reply To: how to delete h1 automatic titles in blog&#039;s articles]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-delete-h1-automatic-titles-in-blogs-articles/#post-87545</link>
					<pubDate>Tue, 19 Aug 2014 13:00:53 +0000</pubDate>
					<dc:creator>Kosher K</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Andrea, </p>
<p>First of all, I have couple of this want to mention</p>
<p>1. Please update your X theme and X shortcode, latest version is already 2.3.0 X theme and 2.3.4 X shortcode, you can follow the update guide from here -&gt; <a href="http://theme.co/x/member/kb/updating-your-theme-and-plugins/" rel="nofollow">http://theme.co/x/member/kb/updating-your-theme-and-plugins/</a></p>
<p>2. Please install X theme properly, I noticed it was set-up like this,</p>
<p><code>http://www.trueweb.ch/wp-content/themes/themeforest-5871901-x-the-theme-wordpress_theme/x/</code></p>
<p>it should be </p>
<p><code>http://www.trueweb.ch/wp-content/themes/x/</code></p>
<p>Please check out this video -&gt; <a href="http://theme.co/x/member/kb/theme-installation/" rel="nofollow">http://theme.co/x/member/kb/theme-installation/</a></p>
<p>Regarding about your issue, You need to set-up a child theme to do that,</p>
<p>You can follow this guide -&gt; <a href="http://theme.co/x/member/kb/how-to-setup-child-themes/" rel="nofollow">http://theme.co/x/member/kb/how-to-setup-child-themes/</a></p>
<p><strong>To Remove </strong><code>&lt;div class=&quot;x-landmark&quot;&gt;&lt;h1 class=&quot;h-landmark&quot;&gt;&lt;span&gt;TrueBlog&lt;/span&gt;&lt;/h1&gt;&lt;/div&gt;</code></p>
<p>1. Copy this file  <code>x/framework/views/renew/_landmark-header.php</code></p>
<p>and put it inside <code>x-child-renew/framework/views/renew/</code></p>
<p>2. Edit <code>x-child-renew/framework/views/renew/_landmark-header.php</code> line 46</p>
<p>You&#8217;ll see this <code>&lt;h1 class=&quot;h-landmark&quot;&gt;&lt;span&gt;&lt;?php echo x_get_option( &#039;x_renew_blog_title&#039; ); ?&gt;&lt;/span&gt;&lt;/h1&gt;</code></p>
<p>Just delete that line, or to be more precise, </p>
<p>you&#8217;ll see this code, from line 39 &#8211; 48, </p>
<pre><code> &lt;?php elseif ( is_home() || is_single() ) : ?&gt;
            &lt;?php if ( x_is_portfolio_item() ) : ?&gt;

              &lt;h1 class=&quot;h-landmark&quot;&gt;&lt;span&gt;&lt;?php echo x_get_parent_portfolio_title(); ?&gt;&lt;/span&gt;&lt;/h1&gt;

            &lt;?php else : ?&gt;

              &lt;h1 class=&quot;h-landmark&quot;&gt;&lt;span&gt;&lt;?php echo x_get_option( &#039;x_renew_blog_title&#039; ); ?&gt;&lt;/span&gt;&lt;/h1&gt;

            &lt;?php endif; ?&gt;</code></pre>
<p>Just delete <code>&lt;h1 class=&quot;h-landmark&quot;&gt;&lt;span&gt;&lt;?php echo x_get_option( &#039;x_renew_blog_title&#039; ); ?&gt;&lt;/span&gt;&lt;/h1&gt;</code></p>
<p><strong>To Remove </strong><code>&lt;h1 class=&quot;entry-title&quot;&gt;Creazione Siti Internet per Aziende Locali&lt;/h1&gt;</code></p>
<p>1. Copy this file  <code>x/framework/views/renew/_content-post-header.php</code></p>
<p>and put it inside <code>x-child-renew/framework/views/renew/</code></p>
<p>2. Edit <code>x-child-renew/framework/views/renew/_content-post-header.php</code> line 13</p>
<p>You can remove this line <code>&lt;h1 class=&quot;entry-title&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/h1&gt;</code></p>
<p>Hope that helps.</p>
<p>Cheers</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-delete-h1-automatic-titles-in-blogs-articles/#post-90103</guid>
					<title><![CDATA[Reply To: how to delete h1 automatic titles in blog&#039;s articles]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-delete-h1-automatic-titles-in-blogs-articles/#post-90103</link>
					<pubDate>Fri, 22 Aug 2014 13:42:02 +0000</pubDate>
					<dc:creator>ANDREA V</dc:creator>

					<description>
						<![CDATA[
						<p>thank you,</p>
<p>after your explanation I was able to set everything as wanted. now everything work perfectly. I installed also the renew child theme.</p>
<p>I would like to also to reduce the space between the &#8220;body&#8221; and the &#8220;header&#8221;. </p>
<p>Check the link: <a href="http://www.trueweb.ch/SEO-e-Motori-di-Ricerca" rel="nofollow">http://www.trueweb.ch/SEO-e-Motori-di-Ricerca</a></p>
<p>you see that there is a gap between the h2 title &#8220;Visibilità sui Motori di Ricerca &#8211;  SEO e Contenuti&#8221; and the header. In the WP editor I didn&#8217;t putted spaces or gaps between the one and the other. The title is as up as it can.<br />
I was not able to find the appropriate correction/file. Please can you resolve this issue?</p>
<p>thanks a lot!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-delete-h1-automatic-titles-in-blogs-articles/#post-90119</guid>
					<title><![CDATA[Reply To: how to delete h1 automatic titles in blog&#039;s articles]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-delete-h1-automatic-titles-in-blogs-articles/#post-90119</link>
					<pubDate>Fri, 22 Aug 2014 14:00:47 +0000</pubDate>
					<dc:creator>Mrinal</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Andrea, </p>
<p>Add the following CSS to hide the space: </p>
<pre><code>.single .entry-featured {
    display: none;
}</code></pre>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

