Place the euro symbol on the left side of the number
add_filter( ‘frm_currencies’, ‘my_custom_function’ ); function my_custom_function( $currencies ) { $currencies[‘EUR’][‘symbol_left’] = $currencies[‘EUR’][‘symbol_right’]; $currencies[‘EUR’][‘symbol_right’] = ”; return $currencies; }Continue reading