Skip to content

Instantly share code, notes, and snippets.

@alanef
Last active June 19, 2023 13:51
Show Gist options
  • Save alanef/545a5a9a91b6ab367275f12ba5e85bf8 to your computer and use it in GitHub Desktop.
Save alanef/545a5a9a91b6ab367275f12ba5e85bf8 to your computer and use it in GitHub Desktop.
Adjust Currenct Symbol
<?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