Adding Tax Line in Order Items Totals
-
I’m trying to add a line for Tax in the Order Items section of the order details in the wc-order-totals table. I’m doing Tax Calculation on a separate site and feeding that over in a variable. I’m able to insert shipping and the grand total using “set_total()” function but when i do it for tax like “set_total($taxVariable, ‘tax’); it doesn’t display inline with the “shipping” and “order total”.
Orders are being added using wc_create_order() and I can get everything else I need in there EXCEPT the tax. I don’t want to use the calculate_totals or the built in tax options because all these totals are calculated else where. I just need to write them into the admin. Here’s what I have…
//Push shipping, tax and Grand Total into WooCommerce...
$BlehGrandTotal = $BlehSubTotal + $BlehTaxTotal + $BlehShippingTotal;
$BlehOrder->set_total($BlehTaxTotal, 'tax');
$BlehOrder->set_total($BlehShippingTotal, 'shipping');
$BlehOrder->set_total($BlehGrandTotal, 'total');
//echo the values just to see them...
echo '<p>'.$BlehSubTotal.' + '.$BlehTaxTotal.' + '.$BlehShippingTotal .' = '.
$BlehGrandTotal.'</p>';
Screenshot of what’s going in so far – https://drive.google.com/a/i-parcel.com/file/d/0B55MMYrrZjV5MHlFSnd6OEpnaUk/view – its like 90% there. Not sure what I’m missing. Any help?
- The topic ‘Adding Tax Line in Order Items Totals’ is closed to new replies.