Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

tapa

Pioneers
  • Posts

    31
  • Joined

  • Last visited

Posts posted by tapa

  1. Thanks Jetta!

    Internet Explorer 8; Internet Explorer 9; Firefox 8, Firefox 12,

    works good (even the Enter key in comments ;) ), except at end:

     

    http://simplecheckout.oscbyjetta.com/checkout_success.php

     

    Your Order Has Been Processed!

    Your order has been successfully processed! Your products will arrive at their destination within 2-5 working days.

    Please direct any questions you have to the store owner.

    Thanks for shopping with us online!

    Fatal error: Call to undefined function tep_session_is_regisetered() in /home/oscbyj5/public_html/simplecheckout/checkout_success.php on line 159

     

     

    Looks like there`s a typo:

    tep_session_is_regisetered()
    

  2. @@ggrant3

     

    In my site I need only Guest accounts, with Name, Surname, Company name, Country, Phone and E-mail.

    So I use v1.6 of Simple Checkout (in v2.2 it's similar).

     

    !!! This is not recommended if you need standart account !!!

     

    In checkout.php I remove:

     

      else
       {
       $check_email_query = tep_db_query("select count(*) as total from " . TABLE_CUSTOMERS . " where customers_email_address = '" . tep_db_input($_POST['email']) . "'");
       $check_email = tep_db_fetch_array($check_email_query);
       if ($check_email['total'] > 0)
     {
     $return['status'] = 'error';
     $return['msg'] = ENTRY_EMAIL_ADDRESS_ERROR_EXISTS;
     $return['action'] = 'login';
     }
       }
    

     

    Then I remove all unnecessary fields and payment option.

×
×
  • Create New...