Thread: template blues
View Single Post
  #4  
Old 12-11-2011, 12:58 PM
  totaltec's Avatar 
totaltec totaltec is offline
 

X-Guru
  
Join Date: Jan 2007
Location: Louisville, KY USA
Posts: 5,823
 

Default Re: template blues

I haven't tested this, but it looks like you need to change:
/common_files/customer/main/register_additional_info.tpl
Code:
{if $v.type eq 'T'} <input type="text" name="additional_values[{$v.fieldid}]" id="additional_values_{$v.fieldid}" size="32" value="{$v.value|escape}" />
to something like:
Code:
{if $v.type eq 'T'} <textarea rows="2" cols="20" name="additional_values[{$v.fieldid}]" id="additional_values_{$v.fieldid}"> {$v.value|escape} </textarea>

I have no idea if this works, or if it has any ill effects otherwise.

Hope that helps,

-Mike
__________________
Mike White - Now Accepting new clients and projects! Work with the best, get a US based development team for just $125 an hour. Call 1-502-773-6454, email mike at babymonkeystudios.com, or skype b8bym0nkey

XcartGuru
X-cart Tutorials | X-cart 5 Tutorials

Check out the responsive template for X-cart.
Reply With Quote