Hi there,
I am trying to hide the product-id from my backoffice product page.
By removing
$this->fields_list['id_product'] = array(
'title' => $this->l('ID'),
'align' => 'center',
'class' => 'fixed-width-xs',
'type' => 'int'
);
from my AdminProductsController.php I get a fatal error as the id is needed for further processes.
That's why I want to hide the ID but I couldn't figure out how to do it.
Does anybody have an idea how this can be achieved?
Thanks a lot!