Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

alanpollenz

Archived
  • Posts

    7
  • Joined

  • Last visited

Profile Information

  • Real Name
    Alan Pollenz

alanpollenz's Achievements

  1. The contribution in question is for MS1. I am running the MS2 version and my solution is as follows. Please note that I am also running the BTS Template contribution and the Guest Account contribution, so this may differ somewhat from what you see. Step 1) Backup all files before you edit them! Step 2) in /includes/languages/english.php find add the following code: define('ENTRY_EMAIL_ADDRESS_CONFIRMATION', 'Confirm E-Mail:'); define('ENTRY_EMAIL_ADDRESS_ERROR_NOT_MATCHING', 'The E-Mail Address Confirmation must match your E-Mail Address.'); define('ENTRY_EMAIL_ADDRESS_CONFIRMATION_TEXT', '*'); (if your shop uses other languages, edit the language files for these languages as well) Step 3) in /includes/javascript/form_check.js.php: below the function check_password code block add the following: function check_email_address(field_name_1, field_name_2, field_size, message_1, message_2) { if (form.elements[field_name_1] && (form.elements[field_name_1].type != "hidden")) { var email = form.elements[field_name_1].value; var confirmation = form.elements[field_name_2].value; if (email == '' || email.length < field_size) { error_message = error_message + "* " + message_1 + "\n"; error = true; } else if (email != confirmation) { error_message = error_message + "* " + message_2 + "\n"; error = true; } } } NOTE: This may need to be placed in /includes/form_check.js.php as well Step 4) in /includes/javascript/form_check.js.php: replace the following: check_input("email_address", <?php //echo ENTRY_EMAIL_ADDRESS_MIN_LENGTH; ?>, "<?php //echo ENTRY_EMAIL_ADDRESS_ERROR; ?>"); with: check_email_address("email_address", "email_address_confirmation", <?php echo ENTRY_EMAIL_ADDRESS_MIN_LENGTH; ?>, "<?php echo ENTRY_EMAIL_ADDRESS_ERROR; ?>", "<?php echo ENTRY_EMAIL_ADDRESS_ERROR_NOT_MATCHING; ?>"); NOTE: This may need to be placed in /includes/form_check.js.php as well Step 5) in /templates/whatever/content/create_account.tpl.php (if you are not using tbe BTS contribution, this file may be /create_account.php): After: <tr> <td class="main"><?php echo ENTRY_EMAIL_ADDRESS; ?></td> <td class="main"><?php echo tep_draw_input_field('email_address') . ' ' . (tep_not_null(ENTRY_EMAIL_ADDRESS_TEXT) ? '<span class="inputRequirement">' . ENTRY_EMAIL_ADDRESS_TEXT . '</span>': ''); ?></td> </tr> Add the following code: <tr> <td class="main"><?php echo ENTRY_EMAIL_ADDRESS_CONFIRMATION; ?></td> <td class="main"><?php echo tep_draw_input_field('email_address_confirmation') . ' ' . (tep_not_null(ENTRY_EMAIL_ADDRESS_CONIRMATION_TEXT) ? '<span class="inputRequirement">' . ENTRY_EMAIL_ADDRESS_TEXT . '</span>': ''); ?></td> </tr> THAT'S IT. It worked for me, but as I said I am using MS2, BTS, and Guest Account. Your actual mileage may vary. Alan
  2. Joey, I am having the same problem. I get the error message displayed if it is a local error such as a credit card number being entered that does not pass the check-sum test, but I am not having any authorize.net errors displayed. Were you able to resolve your problem, and if so, how? Thanks. Alan
  3. Did you ever resolve this issue, and if so, how? Thanks. Alan
×
×
  • Create New...