|
My cart is customized so that right above the “Place Order” button there are instructions for paying for the order. I have customers who follow these instructions and send payment, but forget to then click “Place Order.”
Is there a way to have my IPN listener programmatically “Place” the order when it sees payment has arrived? I have the quoteID and can get the order like this:
$order = Mage::getModel('sales/order')->load($quoteId, 'quote_id');
but then what?
|