Skip to content

Instantly share code, notes, and snippets.

@panoslyrakis
Created June 12, 2017 14:44
Show Gist options
  • Save panoslyrakis/89cfcaac8a03c0a5c8f64c74532cef2f to your computer and use it in GitHub Desktop.
Save panoslyrakis/89cfcaac8a03c0a5c8f64c74532cef2f to your computer and use it in GitHub Desktop.
To change the currency output, eg to display currency symbol
add_filter( 'ms_model_settings__get', function( $value, $property, $obj ){
if( $property == 'currency' ){
$value = '£';
}
return $value;
}, 10 , 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment