AbanteCart Community

Shopping Cart Operations => Support => Topic started by: darstris on May 18, 2015, 05:33:13 AM

Title: Product name in backoffice
Post by: darstris on May 18, 2015, 05:33:13 AM
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
Title: Re: Product name in backoffice
Post by: abolabo on May 18, 2015, 02:06:44 PM
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' ]