Last active
June 19, 2023 13:51
-
-
Save alanef/545a5a9a91b6ab367275f12ba5e85bf8 to your computer and use it in GitHub Desktop.
Adjust Currenct Symbol
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
* Plugin Name: Adjust Currency for Display Eventbrite | |
*/ | |
add_filter('wfea_currency_symbols', function ($currency_symbols) { | |
$currency_symbols['CAD'] = 'CAD$'; | |
return $currency_symbols; | |
} | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment