Jump to content

Customization Product - Textarea Max char?


Recommended Posts

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

×
×
  • Create New...