New Zenner
- Join Date:
- Jun 2013
- Posts:
- 47
- Plugin Contributions:
- 0
Add a tex field to checkout_payment page
i successfully added a text field to checkout_shipping page with the code below
checkout_shipping/header_php.php
if (isset($_SESSION['my_message'])) {
$my_message = $_SESSION['my_message'];
}
if (zen_not_null($_POST['my_message'])) {
$_SESSION['my_message'] = zen_db_prepare_input($_POST['my_message']);
}
$my_message = $_SESSION['my_message'];
tpl_checkout_shipping_default.php
<?php echo zen_draw_textarea_field('my_message', '45', '3'); ?>
but i want to add the text field to checkout_payment page,
anyone could help?