<?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>Change Logo on each page &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/change-logo-on-each-page/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/change-logo-on-each-page/feed/</link>
		<description></description>
		<lastBuildDate>Sat, 18 Oct 2025 03:36:14 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/change-logo-on-each-page/#post-224614</guid>
					<title><![CDATA[Change Logo on each page]]></title>
					<link>https://theme.co/archive/forums/topic/change-logo-on-each-page/#post-224614</link>
					<pubDate>Tue, 10 Mar 2015 21:15:25 +0000</pubDate>
					<dc:creator>One In Ten Productions UK</dc:creator>

					<description>
						<![CDATA[
						<p>Is there a way to have a different logo on each page?<br />
We have a site that has a different colour logo for each part of the business, and struggling to make this feature work.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/change-logo-on-each-page/#post-224782</guid>
					<title><![CDATA[Reply To: Change Logo on each page]]></title>
					<link>https://theme.co/archive/forums/topic/change-logo-on-each-page/#post-224782</link>
					<pubDate>Wed, 11 Mar 2015 04:56:09 +0000</pubDate>
					<dc:creator>Christian</dc:creator>

					<description>
						<![CDATA[
						<p>Hey there,</p>
<p>That is technically possible however, that would require custom development which falls outside the scope of our support. Basically, you would need to modify <strong>_brand.php</strong> located in <strong>wp-content\themes\x\framework\views\global</strong>. To give you an idea, you need to wrap the code</p>
<pre><code>&lt;a href=&quot;&lt;?php echo home_url( &#039;/&#039; ); ?&gt;&quot; class=&quot;&lt;?php x_brand_class(); ?&gt;&quot; title=&quot;&lt;?php echo $site_description; ?&gt;&quot;&gt;
  &lt;?php echo ( $logo == &#039;&#039; ) ? $site_name : $site_logo; ?&gt;
&lt;/a&gt;
</code></pre>
<p>in a WordPress conditional tag like</p>
<pre><code>&lt;?php if ( is_page( 693 ) ) : ?&gt;
&lt;a href=&quot;&lt;?php echo home_url( &#039;/&#039; ); ?&gt;&quot; class=&quot;&lt;?php x_brand_class(); ?&gt;&quot; title=&quot;&lt;?php echo $site_description; ?&gt;&quot;&gt;
  &lt;img src=&quot;URL OF YOUR OTHER LOGO&quot;&gt;
&lt;/a&gt;
&lt;?php else : ?&gt;
&lt;a href=&quot;&lt;?php echo home_url( &#039;/&#039; ); ?&gt;&quot; class=&quot;&lt;?php x_brand_class(); ?&gt;&quot; title=&quot;&lt;?php echo $site_description; ?&gt;&quot;&gt;
  &lt;?php echo ( $logo == &#039;&#039; ) ? $site_name : $site_logo; ?&gt;
&lt;/a&gt;
&lt;?php endif; ?&gt;</code></pre>
<p>That code will output a different logo in page with ID of 693. If not, it&#8217;ll use the default image from the Customizer. The code is tested and working on my test install however, this should not be considered as complete or the only solution. </p>
<p>You might want to contact our trusted partners who caters X setup and customization needs. Please see <a href="https://theme.co/x/member/custom-development/" rel="nofollow">https://theme.co/x/member/custom-development/</a>.</p>
<p>Thanks.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/change-logo-on-each-page/#post-224916</guid>
					<title><![CDATA[Reply To: Change Logo on each page]]></title>
					<link>https://theme.co/archive/forums/topic/change-logo-on-each-page/#post-224916</link>
					<pubDate>Wed, 11 Mar 2015 09:31:39 +0000</pubDate>
					<dc:creator>One In Ten Productions UK</dc:creator>

					<description>
						<![CDATA[
						<p>Thank you! I may do this.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/change-logo-on-each-page/#post-224984</guid>
					<title><![CDATA[Reply To: Change Logo on each page]]></title>
					<link>https://theme.co/archive/forums/topic/change-logo-on-each-page/#post-224984</link>
					<pubDate>Wed, 11 Mar 2015 11:50:38 +0000</pubDate>
					<dc:creator>Darshana</dc:creator>

					<description>
						<![CDATA[
						<p>Let us know how it goes 🙂</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/change-logo-on-each-page/#post-226299</guid>
					<title><![CDATA[Reply To: Change Logo on each page]]></title>
					<link>https://theme.co/archive/forums/topic/change-logo-on-each-page/#post-226299</link>
					<pubDate>Thu, 12 Mar 2015 23:50:24 +0000</pubDate>
					<dc:creator>One In Ten Productions UK</dc:creator>

					<description>
						<![CDATA[
						<p>Hi!</p>
<p>Success! Thank you so much for that bit of code. I have to google how to have more than one condition, but I worked it out and&#8230; well, I&#8217;m very excited about it &#8211; probably more excited than a person should be.</p>
<p>The site isn&#8217;t live to the wide world yet, but I&#8217;ll post a link when it is!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/change-logo-on-each-page/#post-226436</guid>
					<title><![CDATA[Reply To: Change Logo on each page]]></title>
					<link>https://theme.co/archive/forums/topic/change-logo-on-each-page/#post-226436</link>
					<pubDate>Fri, 13 Mar 2015 04:11:52 +0000</pubDate>
					<dc:creator>Rad</dc:creator>

					<description>
						<![CDATA[
						<p>Congratulations! 😉 Glad we could help you!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/change-logo-on-each-page/#post-906557</guid>
					<title><![CDATA[Reply To: Change Logo on each page]]></title>
					<link>https://theme.co/archive/forums/topic/change-logo-on-each-page/#post-906557</link>
					<pubDate>Sat, 30 Apr 2016 05:28:33 +0000</pubDate>
					<dc:creator>blissmarketing</dc:creator>

					<description>
						<![CDATA[
						<p>Hello</p>
<p>Great post</p>
<p>I am currently looking to do this &#8211; keeping main logo same then we have 3 pages all with 3 different logos </p>
<p>Will this work with three or is this just to change one?</p>
<p>Jen xxxx</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/change-logo-on-each-page/#post-906577</guid>
					<title><![CDATA[Reply To: Change Logo on each page]]></title>
					<link>https://theme.co/archive/forums/topic/change-logo-on-each-page/#post-906577</link>
					<pubDate>Sat, 30 Apr 2016 05:46:29 +0000</pubDate>
					<dc:creator>blissmarketing</dc:creator>

					<description>
						<![CDATA[
						<p>it works perfectly for the one page &#8211; any updates on how you did it for the other pages &#8211; i have two more that need logos changing xxx</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/change-logo-on-each-page/#post-907339</guid>
					<title><![CDATA[Reply To: Change Logo on each page]]></title>
					<link>https://theme.co/archive/forums/topic/change-logo-on-each-page/#post-907339</link>
					<pubDate>Sun, 01 May 2016 00:11:25 +0000</pubDate>
					<dc:creator>Rue Nel</dc:creator>

					<description>
						<![CDATA[
						<p>Hello There,</p>
<p>Thanks for updating this thread! You can modify the code above using else if statement so that you can have a different logo in any page you want in your site. </p>
<pre><code>&lt;?php if (is_page(&#039;#&#039;) ) : ?&gt;
   // your logo here
&lt;?php elseif (is_page(&#039;#&#039;) ) : ?&gt;
   // your logo here
&lt;?php elseif (is_page(&#039;#&#039;) ) ?&gt;
   // your logo here
&lt;?php elseif (is_page(&#039;#&#039;) ) ?&gt;
   // your logo here
&lt;?php else : ?&gt;
   // your default logo here
&lt;?php endif; ?&gt;</code></pre>
<p>Hope this helps.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/change-logo-on-each-page/#post-910000</guid>
					<title><![CDATA[Reply To: Change Logo on each page]]></title>
					<link>https://theme.co/archive/forums/topic/change-logo-on-each-page/#post-910000</link>
					<pubDate>Tue, 03 May 2016 00:42:02 +0000</pubDate>
					<dc:creator>blissmarketing</dc:creator>

					<description>
						<![CDATA[
						<p>hey &#8211; thanks for your reply &#8211; i added it in but then the whole site went and it was just a gold background</p>
<p>How can I fix this 🙁 </p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

