I was modifying two files:
checkout/payment_method.tpl
checkout/shipping_method.tpl
It works with the following code.
Code: Select all
<textarea name="comment" rows="8" style="width: 98%;"><?php echo $comment; ?></textarea>
Code: Select all
<input type="text" name="comment" style="width: 98%;" value="<?php echo $comment; ?>" />
I don't understand why it doesn't work due to the difference between textarea and input type=text
Help me...