I imagine you figured it out by now, but for others- I took the simple approach thanks to my limited programming skills and blanked the define names in popup_print_invoice.php, making sure to leave ''. Example-
becamePHP Code:define('TABLE_HEADING_PRODUCTS_MODEL', 'Model');
Then for the values, I'll use my example where I didn't want the model number shown so I took line 141 from print_invoice.php-PHP Code:define('TABLE_HEADING_PRODUCTS_MODEL', '');
and deleted model leaving just ''PHP Code:<td class="dataTableContent" valign="top">' . $order->products[$i]['model'] . '</td>' . "\n";
I tried blocking out whole lines with <!-- //--> but it was taking a long time with trial and error and I realized the above satisfies my simple needs.PHP Code:<td class="dataTableContent" valign="top">' . $order->products[$i][''] . '</td>' . "\n";
Robbie



