Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /*
- This function will add South African Rand to the list of available currencies for your events.
- Edit accordingly for other currencies.
- 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/
- */
- function my_em_add_currencies($currencies){
- $currencies->names['ZAR'] = 'ZAR - South African Rand'; //textual representation of the currency
- $currencies->symbols['ZAR'] = 'ZAR'; //If the symbol requires an entity, like for € it's €
- $currencies->true_symbols['ZAR'] = 'R'; //The actual symbol used, e.g. for Euros it's €
- return $currencies;
- }
- add_filter('em_get_currencies','my_em_add_currencies');
Add Comment
Please, Sign In to add comment