New Zenner
- Join Date:
- Dec 2006
- Posts:
- 12
- Plugin Contributions:
- 0
modification of checkout_shipping
I need add a new text field below "Special Instructions or Comments About Your Order" field on the check out page. So I add
<fieldset class="shipping" id="partydate">
<legend><?php echo TABLE_HEADING_PARTYDATE; ?></legend>
<?php echo zen_draw_textarea_field('partydate', '45', '1'); ?>
</fieldset>
```in **shop\includes\templates\custom\templates\tpl_checkout_shipping_default.php**
and
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!