Hi,
I am trying to add the total shipping weight to our merchant confirmations and not having any luck.
What I have below is showing as "0 lbs." on all the orders.
I can confirm the weights are filled in assigned to the products.
I have added the custom field "total_weight" with the Type set as "order"
The "total_weight" is assigned to the merchant confirmation page.
<mvt:item name="customfields" param="Read_Order( l.settings:order:id, 'total_weight', g.total_order_weight )" />
<mvt:if expr="g.total_order_weight LT 1">
<mvt:item name="customfields" param="Read_Basket( 'total_weight', g.total_order_weight )" />
</mvt:if>
Total Shipping Weight: <mvt:eval expr="g.total_order_weight/16" /> lbs.<br />
Thanks,
Mike
I am trying to add the total shipping weight to our merchant confirmations and not having any luck.
What I have below is showing as "0 lbs." on all the orders.
I can confirm the weights are filled in assigned to the products.
I have added the custom field "total_weight" with the Type set as "order"
The "total_weight" is assigned to the merchant confirmation page.
<mvt:item name="customfields" param="Read_Order( l.settings:order:id, 'total_weight', g.total_order_weight )" />
<mvt:if expr="g.total_order_weight LT 1">
<mvt:item name="customfields" param="Read_Basket( 'total_weight', g.total_order_weight )" />
</mvt:if>
Total Shipping Weight: <mvt:eval expr="g.total_order_weight/16" /> lbs.<br />
Thanks,
Mike
Comment