WPPizza – A Restaurant Plugin for WordPress › Support › Add-Ons › Extensions › Google Cloudprint › General Support › Print multiple times
- AuthorPosts
- 8 March, 2016 at 1:52 pm #16460
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
8 March, 2016 at 2:46 pm #16461This reply has been marked as private.8 March, 2016 at 3:12 pm #16462PS: 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
12 March, 2016 at 8:10 pm #16533having 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…
15 March, 2016 at 3:34 pm #16569That would be great 🙂
The Google Cloudprint plugin that I am using is 3.4.1 is the most current version 3.5.1?
15 March, 2016 at 5:16 pm #16573see the changelog.
it will tell youhttps://www.wp-pizza.com/downloads/wppizza-google-cloudprint/
- AuthorPosts
- The topic ‘Print multiple times’ is closed to new replies.