Hi Norisknofun,
If you are referring to the customer note, we can include the WooCommerce customer note in the invoice.
However, if you have implemented additional functionality through code or a plugin to allow add notes to individual products, please provide more information about those settings.
This will help us to insert individual product notes into the invoice.
Regards,
Nikhil.
Hi Nikhil,
thank you for your reply!
I use the “food store” plugin https://ww.wp.xz.cn/plugins/food-store/ and for each item I can enter a note which I then see in the order (see attached).
Thanks again and … have a nice day!
https://prnt.sc/ba9lzI30d5tp
Hi Norisknofun,
Here’s a filter that can show the Special notes in product meta data. Add this code snippet in functions.php file of your currently active theme.
/**
* Add this code snippet in the functions.php file of your currently active theme.
* An special note in product metadata.
*/
function add_special_note_meta_field( $fields ) {
// Check if the specific meta field exists
if ( isset( $fields['_special_note'] ) ) {
echo '<ul>';
echo '<li><strong>Special Note:</strong> ' . esc_html( $fields['_special_note'] ) . '</li>';
echo '</ul>';
}
return $fields;
}
add_filter( 'wcdn_product_meta_data', 'add_special_note_meta_field' );
Screenshot for your reference: https://prnt.sc/T2Ne2_YQQkCb
Please let us know if the given solution is working.
Regards,
Nikhil.
Thank you Nikhil for the valuable support!
I want to remind everyone that you can send a small contribution via https://www.paypal.com/paypalme/TycheSoftwares
and write a review on plugin’s https://ww.wp.xz.cn/support/plugin/woocommerce-delivery-notes/reviews/#new-post review page.