Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

fjsef

Archived
  • Posts

    5
  • Joined

  • Last visited

Profile Information

  • Real Name
    Francis

fjsef's Achievements

  1. I have REPLACE in my oscommerce: $selection = $payment_modules->selection(); WITH: // ** GOOGLE CHECKOUT ** // Skips Google checkout as a payment option on the payments page since that option // is provided in the checkout page $selection = $payment_modules->selection(); for($i=0, $n=sizeof($selection); $i<$n; $i++) { if($selection[$i]['module'] == 'GoogleCheckout') { array_splice($selection, $i, 1); break; } } // ** END GOOGLE CHECKOUT ** in checkout_payment.php, but this payment option dont appears, why ??? Google checkout is enabled in admin. Thanks for help.
  2. fjsef

    Google checkout

    Good mornging, Im trying instaling Google checkout and I dont find this code in orders.php if (isset($HTTP_POST_VARS['notify']) && ($HTTP_POST_VARS['notify'] == 'on')) { $notify_comments = ''; if (isset($HTTP_POST_VARS['notify_comments']) && ($HTTP_POST_VARS['notify_comments'] == 'on')) { $notify_comments = sprintf(EMAIL_TEXT_COMMENTS_UPDATE, $comments) . "\n\n"; } $email = STORE_NAME . "\n" . EMAIL_SEPARATOR . "\n" . EMAIL_TEXT_ORDER_NUMBER . ' ' . $oID . "\n" . EMAIL_TEXT_INVOICE_URL . ' ' . tep_catalog_href_link(FILENAME_CATALOG_ACCOUNT_HISTORY_INFO, 'order_id=' . $oID, 'SSL') . "\n" . EMAIL_TEXT_DATE_ORDERED . ' ' . tep_date_long($check_status['date_purchased']) . "\n\n" . $notify_comments . sprintf(EMAIL_TEXT_STATUS_UPDATE, $orders_status_array[$status]); tep_mail($check_status['customers_name'], $check_status['customers_email_address'], EMAIL_TEXT_SUBJECT, $email, STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS); $customer_notified = '1'; } My orders.php similar code is: /* #CHAVEIRO3# Tracking contribution begin*/ if ((isset($HTTP_POST_VARS['notify_tracking']) && ($HTTP_POST_VARS['notify_tracking'] == 'on')) & (tep_not_null($track_num) || tep_not_null($track_num2) || tep_not_null($track_num3))) { $notify_tracking = sprintf(EMAIL_TEXT_TRACKING_NUMBER) . "\n" . tep_catalog_href_link(FILENAME_CATALOG_ACCOUNT_HISTORY_INFO, 'order_id=' . $oID, 'SSL') . "\n\n"; } $email = STORE_NAME . "\n" . EMAIL_SEPARATOR . "\n" . EMAIL_TEXT_ORDER_NUMBER . ' ' . $oID . "\n" . EMAIL_TEXT_INVOICE_URL . ' ' . tep_catalog_href_link(FILENAME_CATALOG_ACCOUNT_HISTORY_INFO, 'order_id=' . $oID, 'SSL') . "\n" . EMAIL_TEXT_DATE_ORDERED . ' ' . tep_date_long($check_status['date_purchased']) . "\n\n" . $notify_tracking . $notify_comments . sprintf(EMAIL_TEXT_STATUS_UPDATE, $orders_status_array[$status]); /* #CHAVEIRO3# Tracking contribution end*/ tep_mail($check_status['customers_name'], $check_status['customers_email_address'], EMAIL_TEXT_SUBJECT, nl2br($email), STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS); $customer_notified = '1'; } How can I modify this code ?? Thank you very much.
  3. Hi, I have install this contribution and I exec maxtest.php and it works fine. But This information dont show in the order body (in administration). One of step in the test is catalog/includes/functions/general.php what have I do with general.php? Thank you very much.
  4. Hi, I have installed the contribution GeoIP and I cant see the customer Country, why? Nor I cant see Status field in Orders. How can I resolve it? And how can it change the site language and currency to customer's country? Who's Online Online ID Full Name IP Address Country Entry Time Last Click Last URL 00:00:08 0 Guest 89.151.96.39 17:39:20 17:39:20 /index.php?cPath=1_16&osCsid=e25a393a9ecc9c3dd3b4fc9f9f516961 Currently there are 1 customers online This product includes GeoIP data created by MaxMind, available from http://maxmind.com/ Orders Order ID: Status: Customers Order Total Date Purchased Status Action Joly Jol 82.48EUR 03/14/2005 19:59:26 Pending prueba prueba 77.99EUR 03/14/2005 11:55:48 Pending Joly Jol 94.99EUR 03/11/2005 19:05:00 Pending prueba prueba 77.99EUR 03/11/2005 18:30:43 Pending prueba prueba 82.59EUR 03/02/2005 10:48:10 Pending
×
×
  • Create New...