Advertisement
eventsmanager

Swiss frank Custom Currency

Mar 16th, 2020
880
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.70 KB | None | 0 0
  1. <?php
  2. /*
  3. This function will add South African Rand to the list of available currencies for your events.
  4. Edit accordingly for other currencies.
  5.  
  6. For information on how to paste/implement this snippet, see here - http://wp-events-plugin.com/tutorials/how-to-safely-add-php-code-to-wordpress/
  7. */
  8. function my_em_add_currencies_CHF($currencies){
  9.     $currencies->names['CHF'] = 'CHF - Swiss franc'; //textual representation of the currency
  10.     $currencies->symbols['CHF'] = 'CHF'; //If the symbol requires an entity, like for € it's &euro;
  11.     $currencies->true_symbols['CHF'] = 'CHF'; //The actual symbol used, e.g. for Euros it's €
  12.     return $currencies;
  13. }
  14. add_filter('em_get_currencies','my_em_add_currencies_CHF');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement