Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Contributor Ewout

    (@pomegranate)

    Hi! You can do this by filtering the totals, add the following code to your theme functions / functions.php (read this if you haven’t edited that file before).

    add_filter( 'wpo_wcpdf_woocommerce_totals', 'wpo_wcpdf_total_label' );
    function wpo_wcpdf_total_label ( $totals ) {
        if ( isset($totals['order_total'])) {
            $totals['order_total']['label'] = $totals['order_total']['label'] . ' Including Tax';
        };
        return $totals;
    }

    Hope that helps 🙂

    Thread Starter anown2

    (@anown2)

    Thank you Ewout it works! Thanks once again!

    Plugin Contributor Ewout

    (@pomegranate)

    You’re welcome! If you can spare a minute or so, I’d really appreciate a review. Thanks in advance and have a fantastic weekend!

    Ewout

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Add string after the 'total' label in invoice’ is closed to new replies.