carelessoul Posted December 14, 2012 Share Posted December 14, 2012 Does anyone know how to add the Product Date Added to the Product Catalog List in the Admin Back Office? As of the moment there is only Product ID, Name, Reference, etc. I was wondering if there was a way to display also the date when the product was added to this product list. Link to comment Share on other sites More sharing options...
sddqshahid Posted December 18, 2012 Share Posted December 18, 2012 if u just want a log of when the product was added then u have 1 in database ps_product which u can access if u have admin rights Link to comment Share on other sites More sharing options...
carelessoul Posted December 19, 2012 Author Share Posted December 19, 2012 I've resolved this issue while poking through the files in Prestashop. I added this code on line 197 to the AdminProductsController.php file: $this->fields_list['date_add'] = array( 'title' => $this->l('Date Added'), 'align' => 'left', 'width' => 80 ); That resolved my issue of showing the Date Added in the Admin Back Office Product Catalog. Link to comment Share on other sites More sharing options...
sddqshahid Posted December 19, 2012 Share Posted December 19, 2012 Good solution but should be allowed only for SuperAdmin Link to comment Share on other sites More sharing options...
Recommended Posts