I need add a new text field below "Special Instructions or Comments About Your Order" field on the check out page. So I add
in shop\includes\templates\custom\templates\tpl_checkout_shipping_default.phpCode:<fieldset class="shipping" id="partydate"> <legend><?php echo TABLE_HEADING_PARTYDATE; ?></legend> <?php echo zen_draw_textarea_field('partydate', '45', '1'); ?> </fieldset>
and
in shop\includes\languages\english\custom\checkout_shipping.phpCode:define('TABLE_HEADING_PARTYDATE', 'Please Tell Us the Date(s) of Your Birthday Party');
also I add a text data field "partydate" into database table "orders_status_history" .
I would like to know anything else I need to modify to catch the data customer input into the text field I just added.
Thanks in advance!



