Remove Prices and total costing from delivery note
-
Hi
I want to remove the pricing from the delivery note but keep it on the invoice, is this possible?
Also when i submit a manual order, the purchase order doesn’t show on the invoice, however when a customer places a order i have added a hook to make it show, how can i make this show for manual orders?
Here is the purchase order plugin i am using: https://woocommerce.com/products/woocommerce-gateway-purchase-order/
This is the code used to add the purchase order feild:
function example_custom_order_fields( $fields, $order ) {
$new_fields = array();if( get_post_meta( $order->id, ‘_po_number’, true ) ) {
$new_fields[‘_po_number’] = array(
‘label’ => ‘Customer PO Number’,
‘value’ => get_post_meta( $order->id, ‘_po_number’, true )
);
}Thanks
Tom
- The topic ‘Remove Prices and total costing from delivery note’ is closed to new replies.