@cgabelli
It seems to be possible to get the shipping total, and shipping tax directly from the WooCommerce order object, so you can add the following two lines to the star_cloudprnt_print_order_summary
function in order-handler.php
. These can be added just above or below the line of code used to print the current total.
$printer->add_text_line("Shipping Total: ".star_cloudprnt_get_codepage_currency_symbol().$order->get_shipping_total());
$printer->add_text_line("Shipping Tax: ".star_cloudprnt_get_codepage_currency_symbol().$order->get_shipping_tax());