Hi Xavier,
I have added the following lines in both order/show and order/invoice
<span class="hikashop_product_code_order"><?php echo $product->order_product_code; ?></span>
/* NEW LINES ADDED BELOW */
<?php $class=hikashop_get('class.product');
$prod = $class->get($product->product_id);
echo $prod->fundstocharity;
?>
where "fundstocharity" is my column name in my table product. (text field) also I have enabled backend listing but I still can't see it when I click on existing orders or when I click on the invoice button.. and I even created a new order worrying that maybe it dodn't fix it to existing ones. Thoughts? My PHP skills are less-than-standard.
THANKS!