<?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 &quot;Read More&quot; button &#8211; blog post &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/how-to-translate-read-more-button-blog-post/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/how-to-translate-read-more-button-blog-post/feed/</link>
		<description></description>
		<lastBuildDate>Fri, 17 Oct 2025 05:07:32 +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-read-more-button-blog-post/#post-236557</guid>
					<title><![CDATA[How to translate &quot;Read More&quot; button &#8211; blog post]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-translate-read-more-button-blog-post/#post-236557</link>
					<pubDate>Fri, 27 Mar 2015 16:35:25 +0000</pubDate>
					<dc:creator>Pavle L</dc:creator>

					<description>
						<![CDATA[
						<p>Hi support,</p>
<p>Please could you help me how to translate Read More button, it seems that wmpl doesnt gives me that string translation. (is it posible not to be hardcoded)</p>
<p>Here is what <a href="http://svetalata.com" rel="nofollow">http://svetalata.com</a></p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-translate-read-more-button-blog-post/#post-236758</guid>
					<title><![CDATA[Reply To: How to translate &quot;Read More&quot; button &#8211; blog post]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-translate-read-more-button-blog-post/#post-236758</link>
					<pubDate>Fri, 27 Mar 2015 23:07:33 +0000</pubDate>
					<dc:creator>Darshana</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there, </p>
<p>Thanks for writing in! 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>Then add the following code into your child theme’s <strong>functions.php</strong> file and translate the &#8220;Read More&#8221; wording.</p>
<pre><code>
function x_excerpt_string( $more ) {
    
$stack = x_get_stack();

  if ( $stack == &#039;integrity&#039; ) {
    return &#039; ... &lt;div&gt;&lt;a href=&quot;&#039; . get_permalink() . &#039;&quot; class=&quot;more-link&quot;&gt;&#039; . __( &#039;Read More&#039;, &#039;__x__&#039; ) . &#039;&lt;/a&gt;&lt;/div&gt;&#039;;
  } else if ( $stack == &#039;renew&#039; ) {
    return &#039; ... &lt;a href=&quot;&#039; . get_permalink() . &#039;&quot; class=&quot;more-link&quot;&gt;&#039; . __( &#039;Read More&#039;, &#039;__x__&#039; ) . &#039;&lt;/a&gt;&#039;;
  } else if ( $stack == &#039;icon&#039; ) {
    return &#039; ...&#039;;
  } else if ( $stack == &#039;ethos&#039; ) {
    return &#039; ...&#039;;
  }
  
}
add_filter( &#039;excerpt_more&#039;, &#039;x_excerpt_string&#039; );
</code></pre>
<p>Hope that helps.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-translate-read-more-button-blog-post/#post-250178</guid>
					<title><![CDATA[Reply To: How to translate &quot;Read More&quot; button &#8211; blog post]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-translate-read-more-button-blog-post/#post-250178</link>
					<pubDate>Wed, 15 Apr 2015 12:46:55 +0000</pubDate>
					<dc:creator>wordpressmarco</dc:creator>

					<description>
						<![CDATA[
						<p>Thanks! I had the same issue and the solution helps!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-translate-read-more-button-blog-post/#post-250190</guid>
					<title><![CDATA[Reply To: How to translate &quot;Read More&quot; button &#8211; blog post]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-translate-read-more-button-blog-post/#post-250190</link>
					<pubDate>Wed, 15 Apr 2015 12:59:39 +0000</pubDate>
					<dc:creator>Darshana</dc:creator>

					<description>
						<![CDATA[
						<p>Glad we were able to help 🙂</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-translate-read-more-button-blog-post/#post-309112</guid>
					<title><![CDATA[Reply To: How to translate &quot;Read More&quot; button &#8211; blog post]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-translate-read-more-button-blog-post/#post-309112</link>
					<pubDate>Mon, 22 Jun 2015 08:34:22 +0000</pubDate>
					<dc:creator>bvganev</dc:creator>

					<description>
						<![CDATA[
						<p>Hello,</p>
<p>I did the exact same procedure, but I keep on getting an error. Do you think the problem might stem from the fact that I translate from Latin letters to Cyrillic ones?</p>
<p>Read more -&gt; Прочети повече</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-translate-read-more-button-blog-post/#post-309124</guid>
					<title><![CDATA[Reply To: How to translate &quot;Read More&quot; button &#8211; blog post]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-translate-read-more-button-blog-post/#post-309124</link>
					<pubDate>Mon, 22 Jun 2015 08:45:25 +0000</pubDate>
					<dc:creator>Christopher</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>Would you clarify what error you get exactly?<br />
Please provide us with URL as well.</p>
<p>Thanks.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-translate-read-more-button-blog-post/#post-309465</guid>
					<title><![CDATA[Reply To: How to translate &quot;Read More&quot; button &#8211; blog post]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-translate-read-more-button-blog-post/#post-309465</link>
					<pubDate>Mon, 22 Jun 2015 15:23:28 +0000</pubDate>
					<dc:creator>bvganev</dc:creator>

					<description>
						<![CDATA[
						<p>Parse error: syntax error, unexpected T_STRING on line 78</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-translate-read-more-button-blog-post/#post-309550</guid>
					<title><![CDATA[Reply To: How to translate &quot;Read More&quot; button &#8211; blog post]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-translate-read-more-button-blog-post/#post-309550</link>
					<pubDate>Mon, 22 Jun 2015 17:15:13 +0000</pubDate>
					<dc:creator>Thai</dc:creator>

					<description>
						<![CDATA[
						<p>Hi <a href="https://theme.co/archive/users/bvganev/" class="bbp-user-mention bbp-user-id-32747"> @bvganev</a>,</p>
<p>Please create a new ticket, then provide us with login credentials so we can take a closer look? To do this, you can make a post with the following info:</p>
<p>– Link to your site<br />
– WordPress Admin username / Password<br />
– FTP Account</p>
<p><strong>Don’t forget to select Set as a private reply. This ensures your information is only visible to our staff.</strong></p>
<p>Thanks.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-translate-read-more-button-blog-post/#post-322271</guid>
					<title><![CDATA[Reply To: How to translate &quot;Read More&quot; button &#8211; blog post]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-translate-read-more-button-blog-post/#post-322271</link>
					<pubDate>Mon, 06 Jul 2015 14:51:02 +0000</pubDate>
					<dc:creator>bvganev</dc:creator>

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

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-translate-read-more-button-blog-post/#post-322344</guid>
					<title><![CDATA[Reply To: How to translate &quot;Read More&quot; button &#8211; blog post]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-translate-read-more-button-blog-post/#post-322344</link>
					<pubDate>Mon, 06 Jul 2015 16:10:03 +0000</pubDate>
					<dc:creator>Zeshan</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>Thanks for writing in!</p>
<p>Upon checking, I&#8217;m not seeing a child theme installed in your website. Can you please install it as per the instructions given in our earlier reply and try the following code again:</p>
<pre><code>function x_excerpt_string( $more ) {
    
  $stack = x_get_stack();

  if ( $stack == &#039;integrity&#039; ) {
    return &#039; ... &lt;div&gt;&lt;a href=&quot;&#039; . get_permalink() . &#039;&quot; class=&quot;more-link&quot;&gt;&#039; . __( &#039;Прочети повече&#039;, &#039;__x__&#039; ) . &#039;&lt;/a&gt;&lt;/div&gt;&#039;;
  } else if ( $stack == &#039;renew&#039; ) {
    return &#039; ... &lt;a href=&quot;&#039; . get_permalink() . &#039;&quot; class=&quot;more-link&quot;&gt;&#039; . __( &#039;Прочети повече&#039;, &#039;__x__&#039; ) . &#039;&lt;/a&gt;&#039;;
  } else if ( $stack == &#039;icon&#039; ) {
    return &#039; ...&#039;;
  } else if ( $stack == &#039;ethos&#039; ) {
    return &#039; ...&#039;;
  }
  
}
add_filter( &#039;excerpt_more&#039;, &#039;x_excerpt_string&#039; );
</code></pre>
<p>Let us know how it goes.</p>
<p>Thanks!</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

