<?xml version="1.0" encoding="UTF-8"?>        <rss version="2.0"
             xmlns:atom="http://www.w3.org/2005/Atom"
             xmlns:dc="http://purl.org/dc/elements/1.1/"
             xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
             xmlns:admin="http://webns.net/mvcb/"
             xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
             xmlns:content="http://purl.org/rss/1.0/modules/content/">
        <channel>
            <title>
									Thousands separator - How-to and Troubleshooting - wpForo 2.0				            </title>
            <link>https://wpforo.com/community/how-to-and-troubleshooting-2/thousands-separator/</link>
            <description>Discussion Board</description>
            <language>en-US</language>
            <lastBuildDate>Fri, 14 Aug 2026 10:19:42 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>RE: Thousands separator</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/thousands-separator/#post-124816</link>
                        <pubDate>Thu, 15 May 2025 14:20:11 +0000</pubDate>
                        <description><![CDATA[@malouk in pretty much all of Europe and many other countries around the world :)
So it would be great to have the choice as a wpForo setting.]]></description>
                        <content:encoded><![CDATA[<p>@malouk in pretty much all of Europe and many other countries around the world :)</p>
<p>So it would be great to have the choice as a wpForo setting.</p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>golabs</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/thousands-separator/#post-124816</guid>
                    </item>
				                    <item>
                        <title>RE: Thousands separator</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/thousands-separator/#post-124799</link>
                        <pubDate>Tue, 13 May 2025 15:21:57 +0000</pubDate>
                        <description><![CDATA[Hello,The problem stems from the fact that WordPress uses the PHP number_format function instead of the WordPress number_format_i18n function (in the functions.php file).
function wpforo_pr...]]></description>
                        <content:encoded><![CDATA[<p>Hello,<br /><br />The problem stems from the fact that WordPress uses the PHP number_format function instead of the WordPress number_format_i18n function (in the functions.php file).</p>
<pre contenteditable="false">function wpforo_print_number( $n, $echo = false ) {
	$x      = str_replace( ",", "", $n );
	$x      = intval( $x );
	$n      = 0 + $x;
	$number = 0;
	if( ! is_numeric( $n ) ) return false;
	if( $n &gt; 1000000000000 ) {
		$number = round( ( $n / 1000000000000 ), 1 ) . ' ' . str_replace( '{number}', '', wpforo_phrase( '{number}T', false ) );
	} else if( $n &gt; 1000000000 ) {
		$number = round( ( $n / 1000000000 ), 1 ) . ' ' . str_replace( '{number}', '', wpforo_phrase( '{number}B', false ) );
	} else if( $n &gt; 1000000 ) {
		$number = round( ( $n / 1000000 ), 1 ) . ' ' . str_replace( '{number}', '', wpforo_phrase( '{number}M', false ) );
	} else if( $n &gt; 10000 ) $number = round( ( $n / 1000 ), 1 ) . ' ' . str_replace( '{number}', '', wpforo_phrase( '{number}K', false ) );
	
	$number = ( $number ) ? $number : number_format( $n );
	
	if( $echo ) {
		echo $number;
	} else {
		return $number;
	}
}</pre>
<p>this should be</p>
<pre contenteditable="false">function wpforo_print_number( $n, $echo = false ) {
	$x      = str_replace( ",", "", $n );
	$x      = intval( $x );
	$n      = 0 + $x;
	$number = 0;
	if( ! is_numeric( $n ) ) return false;
	if( $n &gt; 1000000000000 ) {
		$number = round( ( $n / 1000000000000 ), 1 ) . ' ' . str_replace( '{number}', '', wpforo_phrase( '{number}T', false ) );
	} else if( $n &gt; 1000000000 ) {
		$number = round( ( $n / 1000000000 ), 1 ) . ' ' . str_replace( '{number}', '', wpforo_phrase( '{number}B', false ) );
	} else if( $n &gt; 1000000 ) {
		$number = round( ( $n / 1000000 ), 1 ) . ' ' . str_replace( '{number}', '', wpforo_phrase( '{number}M', false ) );
	} else if( $n &gt; 10000 ) $number = round( ( $n / 1000 ), 1 ) . ' ' . str_replace( '{number}', '', wpforo_phrase( '{number}K', false ) );
	
	$number = ( $number ) ? $number : number_format_i18n( $n );
	
	if( $echo ) {
		echo $number;
	} else {
		return $number;
	}
}</pre>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>Malouk</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/thousands-separator/#post-124799</guid>
                    </item>
				                    <item>
                        <title>RE: Thousands separator</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/thousands-separator/#post-124746</link>
                        <pubDate>Fri, 09 May 2025 09:23:59 +0000</pubDate>
                        <description><![CDATA[@malouk 
You can customize the wpForo theme files.
Please read attentively this doc:  You&#039;ll find more information about wpForo theme files here
For an update-safe way of customization, p...]]></description>
                        <content:encoded><![CDATA[<p>@malouk </p>
<p>You can customize the wpForo theme files.</p>
<p>Please read attentively this doc:<span> </span><a class="wpforo-auto-embeded-link" href="https://wpforo.com/docs/wpforo-v2/forum-themes/theme-files/" target="_blank" rel="noopener"><span> </span>https://wpforo.com/docs/wpforo-v2/forum-themes/theme-files/<span> </span></a><span> </span>You'll find more information about wpForo theme files here</p>
<p>For an update-safe way of customization, please refer to this documentation:<span> </span><a class="wpforo-auto-embeded-link" href="https://wpforo.com/docs/wpforo-v2/forum-themes/theme-customization/" target="_blank" rel="noopener"><span> </span>https://wpforo.com/docs/wpforo-v2/forum-themes/theme-customization/</a></p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>Sofy</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/thousands-separator/#post-124746</guid>
                    </item>
				                    <item>
                        <title>RE: Thousands separator</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/thousands-separator/#post-124697</link>
                        <pubDate>Tue, 06 May 2025 12:57:17 +0000</pubDate>
                        <description><![CDATA[Hello,In the French, Belgian, and Swiss systems, the decimal separator is represented by a comma and the thousands separator by a space.
&nbsp;Capture.png]]></description>
                        <content:encoded><![CDATA[<p>Hello,<br /><br />In the French, Belgian, and Swiss systems, the decimal separator is represented by a comma and the thousands separator by a space.</p>
<div id="wpfa-0" class="wpforo-attached-file"><a class="wpforo-default-attachment" href="//wpforo.com/wp-content/uploads/wpforo/default_attachments/1746536237-Capture.png" target="_blank" title="Capture.png"><i class="fas fa-paperclip"></i>&nbsp;Capture.png</a></div>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>Malouk</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/thousands-separator/#post-124697</guid>
                    </item>
				                    <item>
                        <title>RE: Thousands separator</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/thousands-separator/#post-124674</link>
                        <pubDate>Mon, 05 May 2025 09:42:34 +0000</pubDate>
                        <description><![CDATA[Hi,
Could you please provide us with a full-page screenshot to help us better understand the issue?]]></description>
                        <content:encoded><![CDATA[<p>Hi,</p>
<p>Could you please provide us with a full-page screenshot to help us better understand the issue?</p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>Sofy</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/thousands-separator/#post-124674</guid>
                    </item>
				                    <item>
                        <title>Thousands separator</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/thousands-separator/#post-124658</link>
                        <pubDate>Sat, 03 May 2025 12:17:29 +0000</pubDate>
                        <description><![CDATA[Hello,Is it possible to change the thousands separator ?
By a space or a punt ?
Tanks
&nbsp;Capture.png]]></description>
                        <content:encoded><![CDATA[<p>Hello,<br /><br />Is it possible to change the thousands separator ?</p>
<p>By a space or a punt ?</p>
<p>Tanks</p>
<div id="wpfa-0" class="wpforo-attached-file"><a class="wpforo-default-attachment" href="//wpforo.com/wp-content/uploads/wpforo/default_attachments/1746274649-Capture.png" target="_blank" title="Capture.png"><i class="fas fa-paperclip"></i>&nbsp;Capture.png</a></div>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>Malouk</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/thousands-separator/#post-124658</guid>
                    </item>
							        </channel>
        </rss>
		