Skip to content

Instantly share code, notes, and snippets.

@travislima
Created August 8, 2016 13:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save travislima/5b3662a8c347cca15963faaf1abaafc9 to your computer and use it in GitHub Desktop.
Save travislima/5b3662a8c347cca15963faaf1abaafc9 to your computer and use it in GitHub Desktop.
Move the JPN Yen currency to the left in PMPro
<?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