Add custom info
-
Hi,
For my invoice I need to add additional information. The additional information is a personnal message the costumer can write.
It is visible in the product table (as you can see in the link in the red circle) but I don’t want it here : https://snipboard.io/8v7Ir6.jpg.
I don’t need to erase it from the product table I jsute need to add it somewere else in the doc.
I tried the code you give in your help guide to test it but it doesn’t work.
add_filter(‘wf_pklist_add_additional_info’, ‘wt_pklist_add_additional_data’, 10, 3);
function wt_pklist_add_additional_data($additional_info, $template_type, $order)
{
$additional_info.=’Additional text’;
return $additional_info;
}Can you help ?
Best regards.
- The topic ‘Add custom info’ is closed to new replies.