Community Add-Ons
| Maintainers: | gdavid |
Change Credit Card Expires from drop down box to text box
for osCommerce Online Merchant v2.2
Dear Friends
I had a problem - People who use "Internet Explorer 7" culdn't change "Credit Card Expiry Date" at my website .I changed the "drop down box" to "text box".
Credit Card Expires will be text box
----------------------------------------------------
----------- How to do it ------------------
---------------------------------------
go to /includes/modules/payment/cc.php
find:
'field' => tep_draw_pull_down_menu('cc_expires_month', $expires_month) . ' ' . tep_draw_pull_down_menu('cc_expires_year', $expires_year))));
Change to:
'field' => tep_draw_input_field('cc_expires_month','','class="inputBox" size="2" maxlength="2" ') . ' /' . tep_draw_input_field('cc_expires_year','','class="inputBox" size="2" maxlength="2" '))));
--------------------------------------------
------------ End -------------------------
-------------------------------------------
(The zip file is the same instructions)
Dear Friends
I had a problem - People who use "Internet Explorer 7" culdn't change "Credit Card Expiry Date" at my website .I changed the "drop down box" to "text box".
Credit Card Expires will be text box
----------------------------------------------------
----------- How to do it ------------------
---------------------------------------
go to /includes/modules/payment/cc.php
find:
'field' => tep_draw_pull_down_menu('cc_expires_month', $expires_month) . ' ' . tep_draw_pull_down_menu('cc_expires_year', $expires_year))));
Change to:
'field' => tep_draw_input_field('cc_expires_month','','class="inputBox" size="2" maxlength="2" ') . ' /' . tep_draw_input_field('cc_expires_year','','class="inputBox" size="2" maxlength="2" '))));
--------------------------------------------
------------ End -------------------------
-------------------------------------------
(The zip file is the same instructions)
