Hello and thanks for your answer!
In my shop the Prod. description is very important.
I have it on file (order.order_print.php and etc.) have made
Here the code for order.order_print.php
$query = 'select product_desc from jos_vm_product where product_id = '.$dbt->f('product_id');
$result = mysql_query($query);
$row = mysql_fetch_assoc($result);
echo "<span style=\"font-size: smaller;\">" . $row['product_desc']. "</span>";
Here the code for order.order_printdetails.php
$query = 'select product_desc from jos_vm_product where product_id = '. intval($dbcart->f("product_id"));
$result = mysql_query($query);
$row = mysql_fetch_assoc($result);
echo "<font size=\"-2\">" . $row['product_desc'] . "</font>";
I'll be very grateful if you tell me exactly where I paste the code and and..
thanks!