Hi MiikkaP,
To change the position of the Euro, you’ll have to create custom templates for the pages and e-mails in your current theme. We have an article in our docs explaining how to do this: https://www.paidmembershipspro.com/documentation/advanced-techniques/templates/.
Basically you want to look for any lines that contain something similar to this: <?php echo $pmpro_currency_symbol?><?php echo $level->initial_payment?>
and reverse the output of those to this: <?php echo $level->initial_payment?><?php echo $pmpro_currency_symbol?>
.
Keep in mind that not all of the output will look like above, but any line that has $pmpro_currency_symbol
in it is one that you’ll probably want to adjust.
Hope this helps!
Thanks