Skip to content
Advertisement

woocommerce order notes in order preview

I am trying to add all manual admin notes from order on order preview. I want to make it with their date & time bellow, with small text and sort by same way as backend.

Code i writed is:

JavaScript

But seems this method for data {{ data.data.field_id }} it’s not working for it. If i try global post or $order in function, preview doesnt open. Any suggestions?

enter image description here

Screenshot for goal: enter image description here

Advertisement

Answer

There is no no arguments for woocommerce_admin_order_preview_end action hook. so first you have use woocommerce_admin_order_preview_get_order_details action hook where you can access $order object

For order notes you can use wc_get_order_notes function you can use check their parameter here.

JavaScript

Tested and works.

enter image description here

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement