Labels do not appear for printing
-
I have found a little glitch which is easy enough to fix that stops the labels appearing and makes the plugin useless…
in shipping_address_print.php on line 418 shippint_add_print is set to true:
$args = wp_parse_args( array( 'post'=>$post_id,'action'=>'edit','shippint_add_print' =>'true', 'print_url' => urlencode( $sendback ) ), $args );
and on line 142 shippint_add_print is confirmed to be 1 (not true):
if( isset( $_REQUEST['print_url'] ) && isset( $_REQUEST['shippint_add_print'] ) && $_REQUEST['shippint_add_print']==1 )
I updated line 418 to read:
$args = wp_parse_args( array( 'post'=>$post_id,'action'=>'edit','shippint_add_print' =>'1', 'print_url' => urlencode( $sendback ) ), $args );
and problem solved!
- The topic ‘Labels do not appear for printing’ is closed to new replies.