Es Club Shop Posted August 11, 2017 Share Posted August 11, 2017 Hello, I want to make Product name longer than 128 chars. I did many things as changed varchar to 255 in table ps_product_lang and changed this code product.name|truncate:180 in file product-list.tpl (truncate was 45). But doesn't work. How can I do it? Link to comment Share on other sites More sharing options...
Es Club Shop Posted August 11, 2017 Author Share Posted August 11, 2017 I did it as in file Product.php changed the line 'name' => array('type' => self::TYPE_STRING, 'lang' => true, 'validate' => 'isCatalogName', 'required' => true, 'size' => 128) to 'name' => array('type' => self::TYPE_STRING, 'lang' => true, 'validate' => 'isCatalogName', 'required' => true, 'size' => 255) Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now