LockerAgencia Posted November 10, 2014 Share Posted November 10, 2014 Hi, i just add a customization text area to my product, but the prestashop only save 275 chars, is there any way to increase that size??? I tried by adding at the textearea field with a maxlength="1020" but do not, work after i save the custom changes to 275 chars. Anyone? Please. <li class="customizationUploadLine{if $field.required} required{/if}"> <label for ="textField{$customizationField}"> {assign var='key' value='textFields_'|cat:$product->id|cat:'_'|cat:$field.id_customization_field} {if !empty($field.name)} {$field.name} {/if} {if $field.required}<sup>*</sup>{/if} </label> <textarea name="textField{$field.id_customization_field}" class="form-control customization_block_input" id="textField{$customizationField}" rows="3" cols="20" maxlength="1020">{strip} {if isset($textFields.$key)} {$textFields.$key|stripslashes} {/if} {/strip}</textarea> </li> Link to comment Share on other sites More sharing options...
tuk66 Posted November 11, 2014 Share Posted November 11, 2014 Do you mean 255 characters? Look at ps_customized_data table, value field. It is varchar(255). Link to comment Share on other sites More sharing options...
Recommended Posts