Move Currency Symbol from the Right to the Left (i.e. “0,00 €” to “€ 0,00”)
Read the WalkthroughCode
Filename: gw-currency-symbol-right-to-left.php
<?php
/**
* Graivty Wiz // Gravity Forms // Move Currency Symbol from the Right to the Left (i.e. "0,00 €" to "€ 0,00")
* https://gravitywiz.com/how-do-i-move-the-currency-symbol-from-the-right-to-the-left-for-gravity-forms/
*/
add_filter( 'gform_currencies', function( $currencies ) {
$currencies['EUR']['symbol_left'] = '€';
$currencies['EUR']['symbol_right'] = '';
return $currencies;
} );