Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

wptechno

Archived
  • Posts

    12
  • Joined

  • Last visited

Everything posted by wptechno

  1. Does anyone know how to implement this contrib with Simple template system (sts) contrib?
  2. Vger - Thanks! That did it: If anyone is having problems with the authorize net AIM module working with the latest CCGV module, here's the Fix: In checkout_process.php change this code around line 55-65: // load the before_process function from the payment modules $payment_modules->before_process(); require(DIR_WS_CLASSES . 'order_total.php'); $order_total_modules = new order_total; $order_totals = $order_total_modules->process(); To this: require(DIR_WS_CLASSES . 'order_total.php'); $order_total_modules = new order_total; $order_totals = $order_total_modules->process(); // load the before_process function from the payment modules $payment_modules->before_process(); Note: Because of my custom ccgv mod, some people might not have the above code i provided. So, here's the fix with the standard code: In checkout_process.php change this code around line 55-65: // load the before_process function from the payment modules $payment_modules->before_process(); $order_totals = $order_total_modules->process(); To this: $order_totals = $order_total_modules->process(); // load the before_process function from the payment modules $payment_modules->before_process();
  3. I have pretty much just exhausted all of my options in the forums and contrib section to get this contrib to work. Basically, Everything is working perfectly cosmetically, and deducts fine but there is an issue in the backend that is not working. it's just not sending the deducted amount to my authorizenet gateway and the gv_redeem_code isn't being passed to checkout_confirmation.php. I just need that little bit of extra help to get this working. Thanks Ben
  4. I'm having a problem with this contribution. using 5.16. WHen they apply the discount it works fine, but when they go to continue to checkout_confirmation.php it brings them back to the checkout_payment.php page with the same info and they're stuck. Let me know if anyone has any info or insight on this problem. I've found similar issues in the forum but nothing exactly like this problem. Thanks, ben
  5. I have a client that has two merchant accounts. One is for non profit items sold on his shopping cart i.e donations etc. The second merchant account is for profit. But he wants to use both merchant accounts on the same cart. Is there a way to setup a payment module per product. i.e. each product you would have the ability to choose in admin which payment module it will use at checkout. If anyone knows of a contribution or hack for this, let me know. I'd be very grateful! Thanks, Ben
×
×
  • Create New...