hello my problem is
<?php echo $this->orderDetails['paymentName'] ?>
results in a html formatted string named: <span class="vmpayment_name">Rechnung</span><br />
what is needed is just "Rechnung". do you know how to strip the html off of <span class="vmpayment_name">Rechnung</span><br /> ?
https://stackoverflow.com/questions/15309077/php-removing-html-tags-from-string
Yeah this works! I give you +1 reputation.
Thanks!!