Welcome, guest! Login / Register - Why register?
Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)

Paste

Pasted as PHP by Rupiah ( 2 years ago )
/**
 * Add a new currency symbol
 * 
 * @link https://wpforms.com/developers/how-to-create-a-new-currency-symbol-for-wpforms/
 */
 
function wpf_dev_currencies( $currencies ) {
 
    $currencies['LRA'] = array(
        'name'                => esc_html__( 'Lira', 'wpforms' ),
        'symbol'              => '₤',
        'symbol_pos'          => 'right', // enter left or right to position the symbol
        'thousands_separator' => ',',
        'decimal_separator'   => '.',
        'decimals'            => 2,
    );
 
  return $currencies;
 
}
 
add_filter( 'wpforms_currencies', 'wpf_dev_currencies', 10, 1 );

 

Revise this Paste

Parent: 122017
Your Name: Code Language: