I almost got it, just one problem:
i found this in tpl_checkout_payment_default:
PHP Code:
<label for="pmt-<?php echo $selection[$i]['id']; ?>" class="radioButtonLabel"><?php echo $selection[$i]['module']; ?></label>
and added this below:
PHP Code:
<?php
$testss = strtoupper('MODULE_PAYMENT_' . $selection[$i]['id'] . '_TEXT_DESCRIPTION');
echo $testss;
?>
The problem now is that the result is MODULE_PAYMENT_CC_TEXT_DESCRIPTION in plain text instead of the value of it
but if i type this code it does display the text.
PHP Code:
echo MODULE_PAYMENT_CC_TEXT_DESCRIPTION
any suggestions?