Hello Forum,
i need a plugin, which is able to process the order AFTER the payment has been successfully finished independent of the payment method. For Payment-Plugins, there is a trigger like "plgVmOnPaymentResponseReceived", but i don't need a payment plugin. My plugin should work with any payment option.
As far as i can see there is a trigger "plgVmConfirmedOrder", but it is called before the payment is done.
Is there another trigger?
function plgVmOnUpdateOrderPayment ($data,$old_order_status) {
if($data->order_status=='C'){
blah blah
}
}
It works! Thank you!
No, wait: When i use PayPal in sandbox-mode and abort the payment process the event is fired. When i finish the payment, the event is not fired.