We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
gw-modify-thousand-separator.php
1 parent 7a71370 commit 5e41cabCopy full SHA for 5e41cab
gravity-forms/gw-modify-thousand-separator.php
@@ -0,0 +1,16 @@
1
+<?php
2
+/**
3
+ * Gravity Wiz // Gravity Forms // Modify Thousandths Separator
4
+ * https://gravitywiz.com/
5
+ *
6
+ * Usage:
7
8
+ * 1. Modify `$separator` to your desired thousandths separator. This example _removes_ the thousandths separator.
9
+ * 2. Thats it.
10
+ */
11
+
12
+add_filter( 'gform_currencies', function( $currencies ) {
13
+ $separator = '';
14
+ $currencies['EUR']['thousand_separator'] = $separator;
15
+ return $currencies;
16
+} );
0 commit comments