It would be helpful to have more information for someone to re-write this ...
What payment module(s) ...
What Order Status do you want when over $50.00 etc.
It would be helpful to have more information for someone to re-write this ...
What payment module(s) ...
What Order Status do you want when over $50.00 etc.
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Signup for our Announcements Forums to stay up to date on important changes and updates!
Thanks so much!!
It is the PayPal IPN - Website Payments Standard module.
If an order comes in for $50 or more, I still want them to be returned to the store site, but I want to put a new page instead of the download page that explains that there order will be held until proof of payment (I can do that part, as long as I know what to call the file and where to put it). So I guess it would be Order Pending or something along those lines for the Order Status.
If you need more info, just let me know, k?
Thanks!
Joanne
.
Zen Cart - putting the dream of business ownership within reach of anyone!
Donate to: DrByte directly or to the Zen Cart team as a whole
Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.
That would work if they didn't get returned right to the download page as soon as they pay at Paypal![]()
I was specifically answering the part about the "new page".
.
Zen Cart - putting the dream of business ownership within reach of anyone!
Donate to: DrByte directly or to the Zen Cart team as a whole
Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.
OK, thanks
For PayPal IPN (Standard), you would need to customize the Payment Module file:
/includes/payment/paypal.php
and change this section of code to be:
Code:$this->enabled = ((MODULE_PAYMENT_PAYPAL_STATUS == 'True') ? true : false); // bof: custom code for order status if ($order->info['total'] <= 50.00) { // set to normal setting for orders less than or equal to $50 $this->order_status = MODULE_PAYMENT_PAYPAL_ORDER_STATUS_ID; } else { // set to pending for orders over $50 $this->order_status = 1; } // eof: custom code for order status if (is_object($order)) $this->update_status();
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Signup for our Announcements Forums to stay up to date on important changes and updates!