Hi Victor,
i add the following code to funktion.php
_____
add_filter(‘gettext’, ‘translate_text’);
add_filter(‘ngettext’, ‘translate_text’);
function translate_text($translated) {
$translated = str_ireplace(‘.00 €’, ‘,00 €’, $translated);
return $translated;}
_____
In the moment we only sell tickets with ,00 prices so i found another way – i changed the currency-symbol to ,00 €. It works but i thinks this is not the way it should word 😉
Stephan