envy Posted August 23, 2005 Share Posted August 23, 2005 Once I am in OS administration ...Catalogue......Catagories/Products You view products by Catagory/Product....it's status and action... Is it possible to also add Item number? One of my manufactures sends me invoices with just item numbers without description...so it is impossible going through each and every item looking for those numbers to change the inventory. I would love to see that item number there too...anyone know how? Thanks in advanced!!! Elaine Link to comment Share on other sites More sharing options...
user99999999 Posted August 24, 2005 Share Posted August 24, 2005 Hmm I posted an answer but it seems to have disapeared. Here is goes again Around line 834 in catalog/admin.categories.php Change This: <td class="dataTableContent"><?php echo '<a href="' . tep_href_link(FILENAME_CATEGORIES, 'cPath=' . $cPath . '&pID=' . $products['products_id'] . '&action=new_product_preview&read=only') . '">' . tep_image(DIR_WS_ICONS . 'preview.gif', ICON_PREVIEW) . '</a> ' . $products['products_name']; ?></td> To This: <td class="dataTableContent"><?php echo '<a href="' . tep_href_link(FILENAME_CATEGORIES, 'cPath=' . $cPath . '&pID=' . $products['products_id'] . '&action=new_product_preview&read=only') . '">' . tep_image(DIR_WS_ICONS . 'preview.gif', ICON_PREVIEW) . '</a> ' . '[' . $products['products_model'] . ']' . $products['products_name']; ?></td> It will look like this [ACME1000] ACME Super Duper Looper Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.