Print multiple times

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #16460
    Pascal
    Participant

      Hi,

      Is there any way I can make the order printed multiple times?

      For instance in my specific case I would like to have an order printed that is used for making the order and delivering the order.

      And we would like to have another copy for our own administration

      #16461
      Olly
      Admin & Mod
        This reply has been marked as private.
        #16462
        Olly
        Admin & Mod

          PS: at the moment i can only come up with running the thing 2x by adding the following to your functions php

          
          add_action( 'wppizza_on_order_executed', 'my_wppizza_google_cloudprint', 99);
          function my_wppizza_google_cloudprint($orderid){
          $wppizzaGCP=new WPPIZZA_GOOGLE_CLOUDPRINT();
          $wppizzaGCP->wppizza_google_cloudprint_order($orderid);
          return;
          }
          

          not tested, but will probably also slow down the last stage of actually submitting the order as it will be running 2x of course…

          or perhaps just adding

          
          add_action( 'wppizza_on_order_executed', 'wppizza_google_cloudprint_execute', 99);
          

          might also work

          #16533
          Olly
          Admin & Mod

            having had a rummage myself as to whether printing multiple copies with cloudprint is doable or reasonably simple to setup with printers – i actually could not find anything straight forward…

            therefore 3.5.1 added a multiple copies option (though this might still slow things down somewhat depending on the number of copies)

            maybe this helps someone…

            #16569
            Pascal
            Participant

              That would be great 🙂

              The Google Cloudprint plugin that I am using is 3.4.1 is the most current version 3.5.1?

              #16573
              Olly
              Admin & Mod
              Viewing 6 posts - 1 through 6 (of 6 total)
              • The topic ‘Print multiple times’ is closed to new replies.