View difference between Paste ID: 5WbV7XE6 and cRqwTVXD
SHOW: | | - or go back to the newest paste.
1
<?php
2
/*
3-
This function will add South African Rand to the list of available currencies for your events.
3+
This function will add GH₵ 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($currencies){
9-
	$currencies->names['ZAR'] = 'ZAR - South African Rand'; //textual representation of the currency
9+
	$currencies->names['GHS'] = 'GH₵ - Ghanaian Cedi'; //textual representation of the currency
10-
	$currencies->symbols['ZAR'] = 'ZAR'; //If the symbol requires an entity, like for € it's &euro;
10+
	$currencies->symbols['GHS'] = 'GH&#8373;'; //If the symbol requires an entity, like for € it's &euro;
11-
	$currencies->true_symbols['ZAR'] = 'R'; //The actual symbol used, e.g. for Euros it's €
11+
	$currencies->true_symbols['GHS'] = 'GH₵'; //The actual symbol used, e.g. for Euros it's €
12
	return $currencies;
13
}
14
add_filter('em_get_currencies','my_em_add_currencies');