How to show your shipping rate in virtuemart during paypal checkout
The tutorial explain how to fix an error during checkout using Paypal as your payment gateway and Standard shipping gateway in VirtueMart 1.1.2 in Joomla 1.0.15. During a paypal transaction on your site the received amount didn’t match the order total in your order information email.
Here’s the Fix :
1. Login in your admin -> Component–> Virtuemart–> Store–>List of Payment Methods–>Paypal –>Configuration
look for:
"amount" => round( $db->f("order_subtotal")+$tax_total-$discount_total, 2),
replace by:
"amount" => round( $db->f("order_total")-$discount_total, 2),




















Did not work
Comment by D King — October 13, 2009 @ 11:16 am