wppizza_on_order_execute

Viewing 20 posts - 1 through 20 (of 37 total)
  • Author
    Posts
  • #35354
    faezehzar
    Participant

      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.
      Thanks

      #35356
      Olly
      Admin & Mod

        got a link ?

        #35358
        faezehzar
        Participant
          This reply has been marked as private.
          #35361
          Olly
          Admin & Mod

            i need to re-activate my epay.dk account until i can check things
            i sent them an email , but dont know when they will reply

            #35362
            faezehzar
            Participant

              Ok Thanks
              Hope to hear from you soon 🙂

              #35363
              Olly
              Admin & Mod

                PS: 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

                #35373
                faezehzar
                Participant
                  This reply has been marked as private.
                  #35374
                  Olly
                  Admin & Mod
                    This reply has been marked as private.
                    #35377
                    faezehzar
                    Participant
                      This reply has been marked as private.
                      #35397
                      faezehzar
                      Participant
                        This reply has been marked as private.
                        #35398
                        Olly
                        Admin & Mod
                          This reply has been marked as private.
                          #35399
                          faezehzar
                          Participant
                            This reply has been marked as private.
                            #35400
                            Olly
                            Admin & Mod
                              This reply has been marked as private.
                              #35401
                              faezehzar
                              Participant
                                This reply has been marked as private.
                                #35402
                                Olly
                                Admin & Mod

                                  >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-x

                                  #35403
                                  faezehzar
                                  Participant

                                    So I will wait for your responce
                                    thanks

                                    #35634
                                    faezehzar
                                    Participant

                                      Hi 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.

                                      #35638
                                      Olly
                                      Admin & Mod

                                        >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

                                        #35685
                                        faezehzar
                                        Participant
                                          This reply has been marked as private.
                                          #35686
                                          Olly
                                          Admin & Mod

                                            that’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 hook

                                            i.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

                                          Viewing 20 posts - 1 through 20 (of 37 total)
                                          • The topic ‘wppizza_on_order_execute’ is closed to new replies.