If I have an attribute as multiple rows of text for customer input, it displays a funky looking box with the number of characters allowed. I do not want this showing, I just want the text box only.
How do I get rid of that?
Thanks!
If I have an attribute as multiple rows of text for customer input, it displays a funky looking box with the number of characters allowed. I do not want this showing, I just want the text box only.
How do I get rid of that?
Thanks!
Hi Look in the attruibites file
/includes/attributes.php
at line 402 ish
$tmp_html = ' <input disabled="disabled" type="text" name="remaining' . TEXT_PREFIX . $products_options_names->fields['products_options_id'] . '" size="3" maxlength="3" value="' . $products_options_names->fields['products_options_length'] . '" /> ' . TEXT_MAXIMUM_CHARACTERS_ALLOWED . '<br />';
Just comment out this and the box dissapears.
IT STILL WORKS THOUGH so make sure you set your max lenght to some thing big if you want to allow war and peace in there!