Hi,
is there a possibility to extend the part where I see the name of a product in back office?
I have a lot of products with longer names, but I can't see the full entire name.
Thanks
if you do not plan to change product name from grid you can remove input in the file public_html/admin/controller/responses/listing_grid/product.php
just replace
Quote$this->html->buildInput(array(
'name' => 'product_description[' . $result[ 'product_id' ] . '][name]',
'value' => $result[ 'name' ],
))
by this
Quote$result[ 'name' ]