Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

josephicon

Pioneers
  • Posts

    14
  • Joined

  • Last visited

Everything posted by josephicon

  1. Not making much progress here at all, am I missing something here? I am trying to use gift vouchers. In OPC there is a checkbox where it says "to be used from Gift Vouchers" when the customer has a voucher on his account. But that does nothing and the amount goes to paypal without any reduction and no reduction appears on checkout.php either. For discount coupons however, when I coupon code is entered it reduces the value in both checkout.php and in paypal Any ideas?
  2. Ok I have sorted this by adding $order_total_modules; to the globals of function before_process() { and adding the paypal fixes supplied in paypal_standard. I am currently batteling to get mailed gift vouchers to work. I can see "to be used from Gift Vouchers" in the payment options in checkout.php, but it doesnt seem to be doing anything.
  3. Hi There. I am using Paypal IPN with discount coupons in CCGV. For some reason the customer remains with the voucher after completing the transaction in paypal via OPC . Also the coupon does not appear as redeemed in CCGV coupon reports. Suggestion welcome. Many Thanks for OPC!
  4. I have had to comment this out to get the module to update orders to match the customer, after customer registration. What is this code? Is it important? Anyone? switch($GLOBALS[$paymentMethod]->code) { case 'paypal_ipn': unset($GLOBALS['cartID']); unset($GLOBALS['cart_PayPal_IPN_ID']); tep_session_unregister('cartID'); tep_session_unregister('cart_PayPal_IPN_ID'); break; case 'paypal_standard': unset($GLOBALS['cartID']); unset($GLOBALS['cart_PayPal_Standard_ID']); tep_session_unregister('cartID'); tep_session_unregister('cart_PayPal_Standard_ID'); break; } //EOF Tell Paypal to pre-recorded Order again or the new options will not be applied
  5. Hello there, I am using Paypal Standard, and after payment, the customer gets directed to checkout_process.php, but the cart remains full, and the order status remains at preparing, and the customer account is not created by opc. Any ideas?
  6. This is frustrating, I simply cant see where OPC adds the customer info into the Orders table. I need to add fax number to the OPC checkout page. Anyone?
  7. If I could find it I would have my answer, :) but I know that this query gets generated by oscommerce, and this is where I need somehow add the field customers_fax, because when I comment out define('TABLE_ORDERS', 'orders'); before processing the order, I get that query code as part of the tep stop. Question is, how does that query geet generated.
  8. Hello, I need to add fields to the checkout process, and I have been partially successfull so far. I need to know where this line occurs to add a fax field, into the orders table where customer is not registred. insert into TABLE_ORDERS (customers_id, customers_name, customers_company, customers_street_address, customers_suburb, customers_city, customers_postcode, customers_state, customers_country, customers_telephone, customers_email_address, customers_address_format_id, delivery_name, delivery_company, delivery_street_address, delivery_suburb, delivery_city, delivery_postcode, delivery_state, delivery_country, delivery_address_format_id, billing_name, billing_company, billing_street_address, billing_suburb, billing_city, billing_postcode, billing_state, billing_country, billing_address_format_id, payment_method, cc_type, cc_owner, cc_number, cc_expires, date_purchased, orders_status, currency, currency_value) Anyone know where to find this?
  9. I resolved it by removing the line: onePage.addCountryAjax($('select[name="country"]', $this), 'state', 'stateCol') in checkout.php section: <?php echo addslashes(WINDOW_BUTTON_NEW_ADDRESS);?>': function (){ So the issue arises when there is no State input box to update on select of a country.
  10. I am right for when I do this: if (ACCOUNT_STATE != 'true') { it works. SO I need to find what it does at the onSelect to update the state, but it sure is a bug.
  11. It is back up, so it seems it has to do with the fact that it updates the state field on select, and we dont use the state field .
  12. I would except that the demo site is down.
  13. Hi there, everything seems to work fine for me, however, if I try and add an address to an existing customers address book as soon as the select country is used, I get this, and cannot continue. Webpage error details User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) Timestamp: Mon, 23 Nov 2009 16:54:08 UTC Message: 'get(...)' is null or not an object Line: 21 Char: 3 Code: 0 This is only when using add a new aadress, edit works fine.
  14. Does this contrib add the H1, H2, to subcategory index pages? If so where is it done. I dont see such a change, only at the if ($category_depth == 'nested') { section ANd of course thanks for the contrib.
×
×
  • Create New...