<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Gravity Support Forums Topic: Add custom currency</title>
		<link>https://legacy.forums.gravityhelp.com/topic/add-custom-currency</link>
		<description>Gravity Support Forums Topic: Add custom currency</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 10:06:20 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>https://legacy.forums.gravityhelp.com/search.php</link>
		</textInput>
		<atom:link href="https://legacy.forums.gravityhelp.com/rss/topic/add-custom-currency" rel="self" type="application/rss+xml" />

		<item>
			<title>AlikA on "Add custom currency"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/add-custom-currency#post-196928</link>
			<pubDate>Thu, 04 Apr 2013 18:44:52 +0000</pubDate>
			<dc:creator>AlikA</dc:creator>
			<guid isPermaLink="false">196928@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;For fellow South Africans who want to add the Rand&#60;/p&#62;
&#60;p&#62;You can modify the currencies.php in gravity froms by adding this code: (not suggested)&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;quot;ZAR&#38;quot; =&#38;gt; array(&#38;quot;name&#38;quot; =&#38;gt; __(&#38;quot;Rand&#38;quot;, &#38;quot;gravityforms&#38;quot;), &#38;quot;symbol_left&#38;quot; =&#38;gt; &#38;#39;R&#38;#39;, &#38;quot;symbol_right&#38;quot; =&#38;gt; &#38;quot;&#38;quot;, &#38;quot;symbol_padding&#38;quot; =&#38;gt;  &#38;quot;&#38;quot;, &#38;quot;thousand_separator&#38;quot; =&#38;gt; &#38;#39;,&#38;#39;, &#38;quot;decimal_separator&#38;quot; =&#38;gt; &#38;#39;&#38;#39;, &#38;quot;decimals&#38;quot; =&#38;gt; 0)&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;or add the following code to your functions.php theme file (suggested):&#60;/p&#62;
&#60;p&#62;&#38;lt;?php&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;add_filter(&#38;quot;gform_currencies&#38;quot;, &#38;quot;update_currency&#38;quot;);
function update_currency($currencies) {
    $currencies[&#38;#39;ZAR&#38;#39;] = array(
        &#38;quot;name&#38;quot; =&#38;gt; __(&#38;quot;Rand&#38;quot;, &#38;quot;gravityforms&#38;quot;),
        &#38;quot;symbol_left&#38;quot; =&#38;gt; &#38;#39;&#38;#39;,
        &#38;quot;symbol_right&#38;quot; =&#38;gt; &#38;quot;R&#38;quot;,
        &#38;quot;symbol_padding&#38;quot; =&#38;gt; &#38;quot; &#38;quot;,
        &#38;quot;thousand_separator&#38;quot; =&#38;gt; &#38;#39;,&#38;#39;,
        &#38;quot;decimal_separator&#38;quot; =&#38;gt; &#38;#39;&#38;#39;,
        &#38;quot;decimals&#38;quot; =&#38;gt; 0);

    return $currencies;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;?&#38;gt;&#60;/p&#62;
&#60;p&#62;I think that should be right... if i'm wrong correct me please.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>AlikA on "Add custom currency"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/add-custom-currency#post-196918</link>
			<pubDate>Thu, 04 Apr 2013 18:29:38 +0000</pubDate>
			<dc:creator>AlikA</dc:creator>
			<guid isPermaLink="false">196918@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I am also from South Africa and am interested in ZAR or Rand.&#60;/p&#62;
&#60;p&#62;Is it not possible to have; lets say, a Divider of currencies supported by PayPal and the ones that are not?&#60;/p&#62;
&#60;p&#62;eg of the drop down list.&#60;br /&#62;
$ USD&#60;br /&#62;
£ GBP&#60;br /&#62;
 -- not supported by PayPal --&#60;br /&#62;
R ZAR
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Add custom currency"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/add-custom-currency#post-41746</link>
			<pubDate>Mon, 21 Nov 2011 16:04:49 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">41746@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You shouldn't make the change in the currency.php file.&#60;/p&#62;
&#60;p&#62;You should never edit the core Gravity Forms files.  These files get overwritten when Gravity Forms releases an update.&#60;/p&#62;
&#60;p&#62;All hooks and filters should be used by placing custom code in either your theme's functions.php file, or by creating a custom plugin of your own that you then activate.&#60;/p&#62;
&#60;p&#62;So the issue isn't the hooks/filter usage, the issue is you are placing them in the wrong location.  The typical location for custom code is going to be your theme's functions.php file.  If you want your custom code to also be &#34;theme proof&#34; then you need to create your own little plugin and install and activate it.&#60;/p&#62;
&#60;p&#62;The currency built into Gravity Forms was specifically designed to work with the PayPal Add-On and the South African Rand is not supported by the PayPal standard API which is why it was not included.  All other currencies can be added via the hooks/filters that are provided.  In the future we will expand on this and allow you to change this from within Gravity Forms.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>freedomstudios on "Add custom currency"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/add-custom-currency#post-41713</link>
			<pubDate>Mon, 21 Nov 2011 08:48:12 +0000</pubDate>
			<dc:creator>freedomstudios</dc:creator>
			<guid isPermaLink="false">41713@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I was also wondering about this. We are a South African based business with the majority of our clients being South African and our currency is the South African Rand (ZAR). A while back I made the manual change in the currency.php file as David suggested above, however when you update to the latest version of Gravity Forms this file gets replaced.&#60;/p&#62;
&#60;p&#62;Is there not a better way to do this, or at least have all currencies committed to the core files by the Gravity Forms developers?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David Smith on "Add custom currency"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/add-custom-currency#post-39101</link>
			<pubDate>Thu, 27 Oct 2011 11:11:51 +0000</pubDate>
			<dc:creator>David Smith</dc:creator>
			<guid isPermaLink="false">39101@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;This should help. :)&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gravityhelp.com/documentation/page/Gform_currencies&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/documentation/page/Gform_currencies&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Roman_E on "Add custom currency"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/add-custom-currency#post-39078</link>
			<pubDate>Thu, 27 Oct 2011 06:33:25 +0000</pubDate>
			<dc:creator>Roman_E</dc:creator>
			<guid isPermaLink="false">39078@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Is it possible to change the currency sign from € to €/qm? Or add a custom currency to the list in settings?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
