@sbeton さん
0円表記だとご都合が悪いということですよね。
プラグイン説明の以下フィルターで出来るはずです。
ですが、私も実行してみましたがうまくいきませんでした。確認いたしますのでお時間ください。
出力 html の変更
add_filter(
'invoice_japan_order_generate_html',
function ( $html, $id, $store_info_arr, $info_arr, $items, $total_taxs, $discount_arr, $fee_arr $flag ) {
$invoicejapan = new InvoiceJapan(); /* 必須 */
$invoicejapan_set = get_option( 'invoicejapan' ); /* 必須 */
$html = '<h1>' . $info_arr['title_text'] . '</h1>';
$html .= '<div>' . $info_arr['order_refund_num_text'] . '</div>';
$html .= '<div>登録番号:' . $store_info_arr['number'] . '</div>';
$html .= $invoicejapan->address_html( $invoicejapan_set['address_position'], $info_arr, 'top' ); /* 必須(請求先?配送先住所) */
/* Your code */
$html .= $invoicejapan->address_html( $invoicejapan_set['address_position'], $info_arr, 'bottom' ); /* 必須(請求先?配送先住所) */
$html .= $invoicejapan->remarks_html( $info_arr['remark'] ); /* 必須(備考) */
/* Your code */
return $html;
},
10,
9
);