Jump to content

Edit History

Mario Evangelista

Mario Evangelista

Hello, I just managed to solve it, there was just one more step left, here's a tip for anyone who needs it:

1. You need to modify in db, pss5_product_lang, increase length of the "name" to xxxx

2. prestashop\src\Core\Domain\Product\ProductSettings.php

public const MAX_NAME_LENGTH = xxxx;

3. prestashop\src\PrestaShopBundle\Form\Admin\Product\ProductInformation.php

new Assert\Length(['min' => 3, 'max' => xxxx]),

 

And its Done!

Thanks a Lot!

Mario Evangelista

Mario Evangelista

Hello, I just managed to solve it, there was just one more step left, here's a tip for anyone who needs it:

1. You need to modify in db, ps_product_lang, increase length of the "name" to xxxx

2. prestashop\src\Core\Domain\Product\ProductSettings.php

public const MAX_NAME_LENGTH = xxxx;

3. prestashop\src\PrestaShopBundle\Form\Admin\Product\ProductInformation.php

new Assert\Length(['min' => 3, 'max' => xxxx]),

 

And its Done!

Thanks a Lot!

Mario Evangelista

Mario Evangelista

Hello, I just managed to solve it, there was just one more step left, here's a tip for anyone who needs it:

1. You need to modify in db, ps_product_lang, increase length of the "name" to xxxx

2. prestashop\src\Core\Domain\Product\ProductSettings.php

public const MAX_NAME_LENGTH = 192;

3. prestashop\src\PrestaShopBundle\Form\Admin\Product\ProductInformation.php

new Assert\Length(['min' => 3, 'max' => 192]),

 

And its Done!

Thanks a Lot!

×
×
  • Create New...