Ok, i have found the problem in file /wp-content/themes/woodmart/inc/integrations/woocommerce/modules/shipping-progress-bar/class-main.php on line 201. It uses taxes from shipping cost.
I have replaced this line:
$total = WC()->cart->get_subtotal() + WC()->cart->get_total_tax();
With this line which also will work without taxes.
$total = ( ‘incl’ == WC()->cart->get_tax_price_display_mode() ) ? WC()->cart->get_subtotal() + WC()->cart->get_subtotal_tax() : WC()->cart->get_subtotal();
Brgds
Rune