GGWH-James Posted December 29, 2010 Share Posted December 29, 2010 (edited) There is not really much to say in way of a description. This addon is fairly self-explanatory and intuitive. We do have some further plans for it, and as always, are open to suggestions from our users as well. This addon will automagically cancel pending orders which remain unpaid for X number of days past their due date. As everything that this addon does is via hooks/tasks, there is not much to see in way of an interface/screenshots. However, there are a couple of preview images available on-site. Further details can be found at the - LINK REMOVED - We currently have our New Year's Blowout going on which encompasses almost every product/service that we offer; this product being no exception. Promotional codes may be found on the product page itself. Edited April 27, 2013 by Infopro Killed bad link 0 Quote Link to comment Share on other sites More sharing options...
alesf77 Posted December 29, 2010 Share Posted December 29, 2010 I'm intersted in your addon. However i need a solution that among the cancel pending orders also send email to client (from email templates) x days prior order cancelation. Do you have any plant to add this in you addon? 0 Quote Link to comment Share on other sites More sharing options...
GGWH-James Posted December 29, 2010 Author Share Posted December 29, 2010 (edited) I'm intersted in your addon. However i need a solution that among the cancel pending orders also send email to client (from email templates) x days prior order cancelation. Do you have any plant to add this in you addon? WHMCS has built-in support for reminding clients of due invoices, both pre and post due date. You could include the appropriate verbage in said e-mail reminders to indicate cancellation if not paid; also, include such a note with the original order notification e-mail as well. Something could be added for this in a future release, but WHMCS already has options to send out numerous payment reminders for unpaid invoices though. Edited December 29, 2010 by GGWH-James 0 Quote Link to comment Share on other sites More sharing options...
GGWH-James Posted April 2, 2011 Author Share Posted April 2, 2011 17% off of Owned licenses until 2011-04-24T23:59:59+0200; use promotional code "e2011_SW-17". 0 Quote Link to comment Share on other sites More sharing options...
GGWH-James Posted July 12, 2011 Author Share Posted July 12, 2011 (edited) It's Christmas in July; save 18-22% (recurring) off Leased licenses and 40% off Owned licenses! Offer ends 2011-07-31T23:59:59+0200; details on-site. Edited July 12, 2011 by GGWH-James 0 Quote Link to comment Share on other sites More sharing options...
No-Server Posted July 21, 2011 Share Posted July 21, 2011 GG-Webhosting is a horrible company, with horrible service and horrible customer treatment. Please think twice before you place a order with them. They want you to sign stuff for a 5€ product. Refunds are generally not possible and support tickets stay unanswered, all you get is automatic replies. Don't buy their ****. Rather pay someone else to code this for less money and without paying monthly. That's what we did. We hope you enjoy the money James, you must really need it. 0 Quote Link to comment Share on other sites More sharing options...
Ashley.S. Posted July 21, 2011 Share Posted July 21, 2011 My tickets have always been answered within reasonable time and no sign of automated replies (except for their closure one) heck I've even hounded their Development Department and Rebecca has always been helpful and friendly towards me. I don't have this product because I don't have a need for it, but I still can't fault their service unless it varies depending on which product you order... 0 Quote Link to comment Share on other sites More sharing options...
No-Server Posted July 21, 2011 Share Posted July 21, 2011 As I said. Never got a reply to it, except automatic ones. Then after some days the Ticket got auto-closed. Too bad we couldn't chargeback the money. 0 Quote Link to comment Share on other sites More sharing options...
NowakFilip Posted August 2, 2011 Share Posted August 2, 2011 Will this also cancel the due invoice or just the order from pending to cancelled? 0 Quote Link to comment Share on other sites More sharing options...
GGWH-James Posted August 2, 2011 Author Share Posted August 2, 2011 It doesn't just change the status of the order. It does the same as if you were to click the 'Cancel Order' button manually while viewing an order. 0 Quote Link to comment Share on other sites More sharing options...
drew13 Posted February 5, 2012 Share Posted February 5, 2012 Here is sample hook which cancel or delete unpaid orders (more than 10 days) function cancel_order() { $orderid=array(); $query = "SELECT tblorders.id AS orderid, tblinvoices.status, tblorders.date FROM tblorders, tblinvoices WHERE tblinvoices.id=tblorders.invoiceid AND tblinvoices.status="Unpaid" AND DATEDIFF(NOW(),tblorders.date)>10"; $result = full_query( $query ); while ( $data = mysql_fetch_array( $result ) ) { $orderid[]=$data['orderid']; } for($i=0;$i<sizeof($orderid);$i++){ changeOrderStatus( $orderid[$i], "Cancelled" ); // CANCEL ORDER // deleteOrder( $orderid[$i] ); // UNCOMMENT THIS IF YOU WANT TO DELETE ORDER; } } add_hook("DailyCronJob",1,"cancel_order"); 0 Quote Link to comment Share on other sites More sharing options...
laszlof Posted February 6, 2012 Share Posted February 6, 2012 The for loop in that code is not needed, move the changeOverStatus() and deleteOrder() functions into the while loop. 0 Quote Link to comment Share on other sites More sharing options...
neobug103 Posted February 8, 2012 Share Posted February 8, 2012 We are currently doing the following manually, which helps to increase the amount of clients who actually come back and pay the order: Client signs up but doesn't paySend out a "Please pay for your order" email giving them instructions on how to login and pay within 24 hours of their order Send out another "Please pay for your order" email a day later If they still haven't paid, we cancel the order and send out an "Order Declined" email, also giving them the option to contact us later if they wish to re-order. Then the order is canceled This would be nice if you could add that kind of email functionality to your script where we can specify: When cron runs, it sends out a specified email that we can choose how many times to send it out but then canceling the order and then sending out another email that we can setup. Additionally noting a post above the "overdue invoices" email is not enough. We created a specified email giving clients clearer instructions on how to complete their order, not pay the invoice. It gives more detailed information and is sent out as soon as possible. I have found that this method of using a custom please pay for your order email has resulted in a few customers actually completing their order whereas before when we didn't have this, didn't have a single customer who completed their order if it was originally left unpaid. Additionally on 2 occasions so far I have noted clients who came back to us by submitting a ticket a week later after sending out the "order declined" email which gave them specific instructions on what to do if they wanted to reactivate their order, we then activated their order and they paid even after it was originally canceled. Communication is key to a successful business and if you can do the above Frank I think it will add an unparallel amount of value to your product and I will most certainly pay for it. 0 Quote Link to comment Share on other sites More sharing options...
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.