• 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!

    • This topic was modified 8 years, 1 month ago by Ben Konyn.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Labels do not appear for printing’ is closed to new replies.