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

    (@pomegranate)

    Hello Greg,
    You can do this by adding the following filter to your theme’s functions.php:

    add_filter( 'wpo_wcpdf_woocommerce_totals', 'wpo_wcpdf_shipping_totals_label' );
    function wpo_wcpdf_shipping_totals_label ( $totals ) {
    	if ( isset($totals['shipping'])) {
    		$totals['shipping']['label'] = 'Postage';
    	};
    	return $totals;
    }

    Hope that helps!

    Ewout

    Thread Starter greg288

    (@greg288)

    Thank you, that worked brilliantly.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change "Shippping" to "Postage" on invoice.’ is closed to new replies.