Hi

My payment gateway provider require me to state in the payment method selection section that the payment is processed by them and that their company name is printed on the credit card receipt/bank statement.

I have been trying to figure out how to do this but have not been able to do it. The thing is that I need to do this only for one payment provider, so it needs to have an if statement. I think this should be done in tpl_checkout_payment_default.php.

I vave tried this in the "for statement":

PHP Code:
if ($j == $n2) {
    
$provider $selection[$i]['fields'][$j]['tag'
and then this after that:

PHP Code:
if ($provider == "ABC"){
     print 
'<p>Please note that your payment is processed by ABC.</p>'
    } 
At the moment, all I am getting is an empty payment information section, so I had to comment out the code.

Can someone help please?


Thanks
Jeff