Gravity Form Currency location

Move Currency Symbol from the Right to the Left

PHP:

				
					if (function_exists('is_plugin_active')) {
    if (is_plugin_active('gravityforms/gravityforms.php')) {
        add_filter('gform_currencies', function ($currencies) {
            $currencies['EUR'] = array(
                'name' => esc_html__('Euro', 'gravityforms'),
                'symbol_left' => '€',
                'symbol_right' => '',
                'symbol_padding' => ' ',
                'thousand_separator' => '.',
                'decimal_separator' => ',',
                'decimals' => 2,
                'code' =>'EUR'
            );
            return $currencies;
        });
    }
}
				
			

JS:

				
					
				
			

CSS