<?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 translate footer content in customizer? &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/how-to-translate-footer-content-in-customizer/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/how-to-translate-footer-content-in-customizer/feed/</link>
		<description></description>
		<lastBuildDate>Sat, 11 Oct 2025 12:12:39 +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-translate-footer-content-in-customizer/#post-62194</guid>
					<title><![CDATA[How to translate footer content in customizer?]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-translate-footer-content-in-customizer/#post-62194</link>
					<pubDate>Fri, 27 Jun 2014 20:27:03 +0000</pubDate>
					<dc:creator>Stefan T</dc:creator>

					<description>
						<![CDATA[
						<p>Hi,</p>
<p>I&#8217;ve searched through the forum and others as well and I haven&#8217;t found a solution yet. I&#8217;ve even tried to alter the footer.php file in multiple ways.</p>
<p>I have a <a href="http://www.dolcevita-online.com/icephonenew/" title="http://www.dolcevita-online.com/icephonenew/" target="_blank" rel="nofollow">website</a> and it´s in two languages. I can´t manage to translate the text in the footer content so that I can have it in two languages. Is there any way to do that?</p>
<p>Thanks!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-translate-footer-content-in-customizer/#post-62545</guid>
					<title><![CDATA[Reply To: How to translate footer content in customizer?]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-translate-footer-content-in-customizer/#post-62545</link>
					<pubDate>Sun, 29 Jun 2014 00:45:38 +0000</pubDate>
					<dc:creator>Rad</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Stefan,</p>
<p>Thank you for writing in!</p>
<p>You will have to add translation function manually at wp-footer.php</p>
<p>1. Copy <strong>wp-footer.php</strong> from /x/framework/views/integrity/ to /x-child-integrity-light/framework/views/integrity/<br />
2. Edit your copied <strong>wp-footer.php</strong> and find this line  of code :</p>
<p><code>&lt;?php echo get_theme_mod( &#039;x_footer_content&#039; ); ?&gt;</code></p>
<p>and change it into :</p>
<p><code>&lt;?php echo pll__(get_theme_mod( &#039;x_footer_content&#039; )); ?&gt;</code></p>
<p>3. Add this code at your child theme&#8217;s functions.php</p>
<p><code>pll_register_string(&#039;Footer Translation&#039;, get_theme_mod( &#039;x_footer_content&#039; ) , true);</code></p>
<p>4. Save and upload.</p>
<p>5. Go to Polylang string translation and translate it.</p>
<p>Hope this helps.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-translate-footer-content-in-customizer/#post-62728</guid>
					<title><![CDATA[Reply To: How to translate footer content in customizer?]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-translate-footer-content-in-customizer/#post-62728</link>
					<pubDate>Sun, 29 Jun 2014 18:47:13 +0000</pubDate>
					<dc:creator>Stefan T</dc:creator>

					<description>
						<![CDATA[
						<p>Thank you so much for the help!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-translate-footer-content-in-customizer/#post-62942</guid>
					<title><![CDATA[Reply To: How to translate footer content in customizer?]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-translate-footer-content-in-customizer/#post-62942</link>
					<pubDate>Mon, 30 Jun 2014 06:09:26 +0000</pubDate>
					<dc:creator>Christian</dc:creator>

					<description>
						<![CDATA[
						<p>You&#8217;re welcome Stefan.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-translate-footer-content-in-customizer/#post-295224</guid>
					<title><![CDATA[Reply To: How to translate footer content in customizer?]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-translate-footer-content-in-customizer/#post-295224</link>
					<pubDate>Sun, 07 Jun 2015 22:08:21 +0000</pubDate>
					<dc:creator>b_freund</dc:creator>

					<description>
						<![CDATA[
						<p>Hi,</p>
<p>can you please help me to implement the solution given in this thread with the current versions of X (4.0.1) and polylang? Here is what i tried:</p>
<p>Since I couldn&#8217;t find &#8220;get_theme_mod&#8221; in the wp-footer.php, I figured the function has been replaced by &#8220;x_get_option&#8221;. So I modified the wp-footer.php of the child theme as suggested above, but with &#8220;x_get_option&#8221; instead of &#8220;get_theme_mod&#8221;.</p>
<p>I then took it from the polylang documentation that &#8220;pll_register_string&#8221; now has an additional (third) parameter. So I added the following line to the functions.php of the child theme:</p>
<p><code>pll_register_string(&#039;Footer Translation&#039;, x_get_option( &#039;x_footer_content&#039; ) , &#039;polylang&#039;, true);</code></p>
<p>However, this breaks the whole site. I may add that I have put some HTML-code in the Footer Content (basically, &lt;b&gt; and a link), but I believe that this should not be a problem, or am I wrong?</p>
<p>Kind regards</p>
<p>Bernhard</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-translate-footer-content-in-customizer/#post-295498</guid>
					<title><![CDATA[Reply To: How to translate footer content in customizer?]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-translate-footer-content-in-customizer/#post-295498</link>
					<pubDate>Mon, 08 Jun 2015 07:09:07 +0000</pubDate>
					<dc:creator>Rue Nel</dc:creator>

					<description>
						<![CDATA[
						<p>Hello There,</p>
<p>Thanks for updating this thread! <code>get_theme_mod</code> is a WordPress function. You can check it here: <a href="https://codex.wordpress.org/Function_Reference/get_theme_mod" rel="nofollow">https://codex.wordpress.org/Function_Reference/get_theme_mod</a></p>
<p>Can you please post the contents of your <code>wp-footer.php</code> file? Just place it using the code tag. The footer content with html tags may be one of the reason why your site is broken. We&#8217;ll be happy to provide you with a response once we have a better understanding of the situation.</p>
<p>Please let us know.</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

