Created
August 8, 2016 13:58
-
-
Save travislima/5b3662a8c347cca15963faaf1abaafc9 to your computer and use it in GitHub Desktop.
Move the JPN Yen currency to the left in PMPro
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 | |
/* Move the Japanese Yen currency to the left | |
Add to your PMPro Customizations plugin */ | |
function custom_yen($pmpro_currencies) { | |
$pmpro_currencies['JPY']['position'] = 'left'; | |
return $pmpro_currencies; | |
} | |
add_filter( 'pmpro_currencies', 'custom_yen' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment