Guest Posted May 21, 2004 Share Posted May 21, 2004 How would I set it so that the Payment information box is pulled up with every payment option, not just check/money order. I need this because I am using the checkout confirmation contrib to post a warning that we log all ip addresses with every order etc. I can only seem to get it to pull up when you choose pay by check/M.O. Or. Maybe someone knows where I can put the code in the checkout_confirmation.php file so that this box will pull up with every order method. I moved it around a bit, but everytime I did it screwed up the layout of the site........ :blink: Here is the code <tr> ? ? ? ?<td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '20'); ?></td> ? ? ?</tr> ? ? ?<tr> ? ? ? ?<td class="main"><b><?php echo HEADING_ORDER_AGREE_INFORMATION; ?></b></td> ? ? ?</tr> ? ? ?<tr> ? ? ? ?<td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '5'); ?></td> ? ? ?</tr> <?php ? ? ? $text_query = tep_db_query("SELECT * FROM " . orderagree_text . " where orderagree_text_id = '1' and language_id = '" . $languages_id . "'"); ? ? ? $text = tep_db_fetch_array($text_query); ?> ? ? ? ? ?<tr> ? ? ? ?<td><table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox"> ? ? ? ? ?<tr> ? ? ? ? ? ?<td class="main"><?php new infoBox(array(array('text' => nl2br($text['orderagree_text_one'])))); ?></td> ? ? ? ? ?</tr> ? ? ? ?</table></td> ? ? ?</tr> ? ? ? ? ? ?</table></td> ? ? ? ? ?</tr> ? ? ? ?</table></td> ? ? ?</tr> Thanks! Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.