Jump to content

Add Product Date Added on Prestashop Back Office


Recommended Posts

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

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

×
×
  • Create New...