Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save bappi-d-great/3fc5edc8cd9f16b4068a to your computer and use it in GitHub Desktop.
Save bappi-d-great/3fc5edc8cd9f16b4068a to your computer and use it in GitHub Desktop.
Add more currency in WPMU membership plugin
<?php
add_filter( 'ms_model_settings_get_currencies', 'membership_available_currencies_cb' );
function membership_available_currencies_cb( $arr ){
$arr['SYMBOL'] = 'SYMBOL - YOUR CURRENCY NAME';
return $arr;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment