Ubercart and uc_vat modules.

Im in a hurry and no time to research on this. One quick solution I believe.

I just need the VAT in review order page to be above total. It currently looks like this:
Subtotal:
Delivery:
Total:
incl. VAT:

However I want it to be like this:
Subtotal:
Delivery:
incl. VAT:
Total:

PM or post the solution here then let me know your bounty and paypal. I will send the bounty to the first working solution. Thanks.

Comments

naurisr’s picture

You can alter weights of line items by adding function CUSTOM_line_item_data_alter in your custom module.
CUSTOM is the module name

naurisr’s picture

I suggest to set the 'total' line weight to some maximum (like 100), so that it is the last

function custom_line_item_data_alter(&$items) {
  foreach($items as $key => $value) {
    if ($value['id'] == 'total') {
      $items[$key]['weight'] = 100;
    }
  }
}