Hi Olly,
Ok thank you, I will test it.
(But for the moment I have a size problem on the second printer.
The order is printed too small, impossible to read…)
But to summarize, I had to put that in the funcions.php
and replace “$printerid” by the real printer id ?
function myprefix_wppizza_gcp_filter_copies( $printerid, $cp ) {
if($cp == 1){
return ‘some other printer id’;
}else{
return $printerid;
}
}
add_filter( ‘wppizza_gcp_filter_copies’, ‘myprefix_wppizza_gcp_filter_copies’. 10, 2 );