compwhizmm90 Posted January 30, 2006 Posted January 30, 2006 I am using the following paypal ipn contribution http://www.oscommerce.com/community/contri...,all/search,ipn and ccgv 1.51a. When I enter a coupon code it passes the original amount to paypal not the discounted amount. I have looked on the forums and cannot find a solution. Please help thanks Quote
Guest Posted April 8, 2006 Posted April 8, 2006 I am using the following paypal ipn contribution http://www.oscommerce.com/community/contri...,all/search,ipnand ccgv 1.51a. When I enter a coupon code it passes the original amount to paypal not the discounted amount. I have looked on the forums and cannot find a solution. Please help thanks I too had the same problem. Could not figure out how to pass the discount field onto PayPal. I just gave up & AGREGATED my payment instead of listing my items. If anyone figures out, please post. Thanks Quote
Guest Posted April 15, 2006 Posted April 15, 2006 (edited) same here I too had the same problem. Could not figure out how to pass the discount field onto PayPal. I just gave up & AGREGATED my payment instead of listing my items. If anyone figures out, please post. Thanks Ravish Kumar Edited April 16, 2006 by The_Bear Quote
compwhizmm90 Posted April 16, 2006 Author Posted April 16, 2006 (edited) same here Ravish Kumar I originally had this problem a long time ago. I started this thread. I fixed this by changing the ipn contribution to this one http://www.oscommerce.com/community/contri...,all/search,ipn I actually like it a lot better anyway Edited May 15, 2006 by 241 Quote
web-project Posted May 25, 2009 Posted May 25, 2009 I have modified the PayPal IPN module and developed new one: PayPal IPN for CCGV at: http://addons.oscommerce.com/info/6775 Quote Please read this line: Do you want to find all the answers to your questions? click here. As for contribution database it's located here! 8 people out of 10 don't bother to read installation manuals. I can recommend: if you can't read the installation manual, don't bother to install any contribution yourself. Before installing contribution or editing/updating/deleting any files, do the full backup, it will save to you & everyone here on the forum time to fix your issues. Any issues with oscommerce, I am here to help you.
Guest Posted September 23, 2009 Posted September 23, 2009 I have modified the PayPal IPN module and developed new one: PayPal IPN for CCGV at:http://addons.oscommerce.com/info/6775 does it work? i have installed it, but no changes. coupons aren't subtracted. any idea? witch version of ccgv do you use? thank you for help Quote
goring_gap Posted December 3, 2009 Posted December 3, 2009 does it work? i have installed it, but no changes. coupons aren't subtracted. any idea? witch version of ccgv do you use? thank you for help You could try: //fix for coupon deduction not showing at paypal $coupon = '0'; $gv = '0'; if($order_total['ot_coupon']) $coupon = $order_total['ot_coupon']; if($order_total['ot_gv']) $gv = $order_total['ot_gv']; $subtotal = $order_total['ot_subtotal'] - $coupon - $gv; // end - fix for coupon deduction not showing at paypal //$subtotal = $order_total['ot_subtotal']; instead of : $subtotal = $order_total['ot_subtotal']; in /includes/modules/payment/paypal_ipn.php Quote
EricK Posted January 14, 2010 Posted January 14, 2010 You could try: //fix for coupon deduction not showing at paypal $coupon = '0'; $gv = '0'; if($order_total['ot_coupon']) $coupon = $order_total['ot_coupon']; if($order_total['ot_gv']) $gv = $order_total['ot_gv']; $subtotal = $order_total['ot_subtotal'] - $coupon - $gv; // end - fix for coupon deduction not showing at paypal //$subtotal = $order_total['ot_subtotal']; instead of : $subtotal = $order_total['ot_subtotal']; in /includes/modules/payment/paypal_ipn.php Thanks Simon, that worked for me! Regards, Eric_K Quote
harleyreb Posted February 5, 2010 Posted February 5, 2010 I have Paypal IPN 2.3.3 installed, and the latest CCGV. The correct totals are passed to Paypal, and everything seems to work ok except when the user returns to the store. The Coupon code is still showing in the Shopping cart. Can someone tell me how/where this gets reset? Quote
harleyreb Posted February 21, 2010 Posted February 21, 2010 (edited) Is anyone reading this thread? I need to know what changes are needed to Paypal IPN 2.3.3 with CCGV 5.21 installed. I have tried to merge the checkout_process CCGV changes into my Paypal IPN files, and have failed. Can anyone help ? Edited February 21, 2010 by harleyreb Quote
harleyreb Posted February 22, 2010 Posted February 22, 2010 The only problem I am having is that the coupon code is not adjusted as one being used after it has been used. Where should this be done if using Paypal IPN?? Is it the $order_total_modules->apply_credit(); function that I see in checkout_process? If so, where should this be done if using Paypal IPN.....??????? Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.