gorcsos Posted January 5, 2005 Share Posted January 5, 2005 I've tried to display some Visa MasterCard and Pay Pal images on the top of the payment method selection between the "Payment Method" and "Please select the preferred payment method to use on this order." text on the checkout_payment.php. I added some simple html tags into a payment module.php but when I finishing the payment it crashes. Basically it says that the displaying the tags is blocked because of the header or something similar(sse the blue). How to display it even on another part of the page? Any ideas? Gabor function selection() { global $order; for ($i=1; $i<13; $i++) { $expires_month[] = array('id' => sprintf('%02d', $i), 'text' => strftime('%B',mktime(0,0,0,$i,1,2000))); } $today = getdate(); for ($i=$today['year']; $i < $today['year']+10; $i++) { $expires_year[] = array('id' => strftime('%y',mktime(0,0,0,1,1,$i)), 'text' => strftime('%Y',mktime(0,0,0,1,1,$i))); } ?> <br> <div style="text-align: center;"> <img src="images/visa_s.gif" border="0" alt="" width="33" height="21"> <img src="images/master_s.gif" border="0" alt="" width="33" height="21"> <img src="images/paypal_s.gif" border="0" alt="" width="56" height="21"> </div> <br> <?php $selection = array('id' => $this->code, 'module' => $this->title, 'fields' => array(array('title' => MODULE_PAYMENT_MONERISESELECTPLUS_TEXT_CREDIT_CARD_OWNER, 'field' => $order->billing['firstname'] . ' ' . $order->billing['lastname']), array('title' => MODULE_PAYMENT_MONERISESELECTPLUS_TEXT_CREDIT_CARD_NUMBER, 'field' => tep_draw_input_field('moneriseselectplus_cc_number')), array('title' => MODULE_PAYMENT_MONERISESELECTPLUS_TEXT_CREDIT_CARD_EXPIRES, 'field' => tep_draw_pull_down_menu('moneriseselectplus_cc_expires_month', $expires_month) . ' ' . tep_draw_pull_down_menu('moneriseselectplus_cc_expires_year', $expires_year))), 'moneris_order_id' => $this->moneris_order_id, 'moneris_response_variables' => $this->moneris_response_variables); return $selection; } Quote Link to comment Share on other sites More sharing options...
safoo Posted January 6, 2005 Share Posted January 6, 2005 Try this contribution: http://www.oscommerce.com/community/contributions,2713 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.