WPPizza – A Restaurant Plugin for WordPress › Support › General Support › wppizza_on_order_execute
- AuthorPosts
- 27 February, 2018 at 4:00 pm #35354
Dear Olly
I have a serious problem with (wppizza_on_order_execute) which try to deal whit it couple of months and I can not find out what the problem is?
When my customer use gateway in checkout and pay the amount the customer details in $order_details array becomes empty.
I also use the 3rd party WPPizza – iBacsTel extension for print orders, that plugin also use (wppizza_on_order_execute) action and the same problem there.
I am sure that I don’t use any filter.
Cloud you please kindly check it and let me know if I need to do any changes.
Thanks27 February, 2018 at 4:18 pm #35356got a link ?
27 February, 2018 at 4:26 pm #35358This reply has been marked as private.27 February, 2018 at 5:29 pm #35361i need to re-activate my epay.dk account until i can check things
i sent them an email , but dont know when they will reply27 February, 2018 at 6:06 pm #35362Ok Thanks
Hope to hear from you soon 🙂27 February, 2018 at 7:36 pm #35363PS: if you dont want to wait you can also send me your *test* merchant key and md5key (if any) (if you do, mark the reply as private here)
and the currency you are using
27 February, 2018 at 9:39 pm #35373This reply has been marked as private.27 February, 2018 at 10:24 pm #35374This reply has been marked as private.27 February, 2018 at 10:39 pm #35377This reply has been marked as private.28 February, 2018 at 5:44 pm #35397This reply has been marked as private.28 February, 2018 at 6:57 pm #35398This reply has been marked as private.28 February, 2018 at 7:03 pm #35399This reply has been marked as private.28 February, 2018 at 7:23 pm #35400This reply has been marked as private.28 February, 2018 at 7:31 pm #35401This reply has been marked as private.28 February, 2018 at 7:33 pm #35402>What if I downgread to wppizza v2?
unless you have a backup from before you upgraded to v3, you cant
as is clearly stated
https://docs.wp-pizza.com/getting-started/?section=upgrade-v2-x-v3-x28 February, 2018 at 7:37 pm #35403So I will wait for your responce
thanks6 March, 2018 at 10:35 am #35634Hi Olly
Any update yet about the issue?
I checked the action in order executed class.
As I undrestand if this acction apply the order details fetch from the wppizza order table when order status is ‘COMPLETED’ so it should not be related to Epay because when the status is Completed we have customer_ini in ordertable.6 March, 2018 at 1:16 pm #35638>Any update yet about the issue?
no, becuase epay.dk have not replied to my re-activation of my test account nor have they setup a new test account i applied for (yet, on both counts)re class: correct
have you tried a simple
file_put_contents('path/to/some/file.log', print_r($details_completed, true));
right after
function my_order_app($order_id, $details_completed) {
and had a look at that file
7 March, 2018 at 6:22 pm #35685This reply has been marked as private.7 March, 2018 at 6:38 pm #35686that’s got nothing to do with anything
again, what do you get when you add
file_put_contents(‘path/to/some/file.log’, print_r($details_completed, true));
directly at the top of your function you are calling with the on_order_Execute hooki.e
add_action( 'wppizza_on_order_execute', 'my_order_app', 10, 3); function my_order_app($order_id, $details_completed, $tid) { file_put_contents('path/to/some/file.log', print_r($details_completed, true)); }
post the whole data that you receive in this file
- AuthorPosts
- The topic ‘wppizza_on_order_execute’ is closed to new replies.