• Hello,
    we need to round the value of “Order Line Total (include tax)” row with only 2 decimal value. For example on Woocommerce shop the product cost is 16 € in the export we have 15.995455
    The slug of the field is line_total_plus_tax
    Can you please help us to solve?

Viewing 1 replies (of 1 total)
  • Plugin Author algol.plus

    (@algolplus)

    Hello

    you can open “Misc Settings” and just mark “Format numbers”

    or add this code to section “Misc Settings”.

    add_filter('woe_get_order_product_value_line_total_plus_tax', function ($value, $order, $item, $product,$item_meta) {
    	return round($value,2);
    }, 10, 5);

    thanks, Alex

Viewing 1 replies (of 1 total)

The topic ‘Round up decimal values’ is closed to new replies.