Page 1 of 1
nVelocity Payment Method
Posted: Fri Dec 18, 2009 12:39 pm
by igavemybest
What should I use in nVelocity for payment method? ie, VISA, Paypal, etc. I am looking for some way to show an image for both that and for the shipment method, instead of text. Any suggestions?
Re: nVelocity Payment Method
Posted: Sat Dec 19, 2009 12:47 am
by mazhar
For payment it could be something like
Code: Select all
#if($payment.PaymentMethodName == "name here")
//put image here
#end
and shipment it could be something like
Code: Select all
#if($shipment.ShipMethodName == "name here")
//put image here
#end
Re: nVelocity Payment Method
Posted: Sun Dec 20, 2009 4:05 pm
by igavemybest
mazhar, thanks, thats exactly what I needed