Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

ecartsolutions

Pioneers
  • Posts

    58
  • Joined

  • Last visited

Profile Information

  • Real Name
    Shiva
  • Gender
    Male
  • Location
    Home
  • Interests
    Programming, philately, physics, philosophy. algorithms..
  • Website

ecartsolutions's Achievements

  1. ok. so you want graphical intereface where in you just highlight certain portions of the map and that becomes the zone. then as the address is entered the zone is identified. is that correct ? Really interesting requirement !! Please let us ( alteast me ) know when you finally have the module. That sure should be a nice piece of code you will have once done. Best Regards Shiva
  2. Hi Kai Generally all pages are coupled with a language file. Did you edit the language file corresponding to the report ? you can find it in the folder admin/includes/languages/<the language>/<the filename> Try it once and let us know how it goes. Cheers Shiva
  3. hi Matt Do some trial runs from your account and check whether the same quotes are being returned by the code. USPS is generally very transparent :).
  4. I think I saw the same posting on some job site. Anyway, this would involve a considerable amount of coding. How do you plan to group the zones ? and how do you propose the person selects the zone?
  5. the problem has been posted earlier.. try searching the forums next time :). the solution to the problem as below: 1. Backup catalog\includes\application_top.php then open it locate this code: // navigation history if (tep_session_is_registered('navigation')) { if (PHP_VERSION < 4) { $broken_navigation = $navigation; $navigation = new navigationHistory; $navigation->unserialize($broken_navigation); } } else { tep_session_register('navigation'); $navigation = new navigationHistory; } $navigation->add_current_page(); Replace it with this // navigation history if (tep_session_is_registered('navigation')) { if (PHP_VERSION < 4) { $broken_navigation = $navigation; $navigation = new navigationHistory; $navigation->unserialize($broken_navigation); } else { $navigation = new navigationHistory; } } else { tep_session_register('navigation'); $navigation = new navigationHistory; } $navigation->add_current_page();
  6. Check the payments folder : ( catalog/includes/modules/payment ) for any copies of the cod.php.. it seems like you have a copy of the same payment file .. or it is possible that you might have uploaded the class file into the folder catalog/includes/languages/english/modules/payment/ folder. Regards, Shiva
  7. change this: 'title' => $shipping_auspost_method, to 'title' => MODULE_SHIPPING_AUSPOST_TEXT_WAY,
  8. Replace the code $shipping_auspost_method = MODULE_SHIPPING_AUSPOST_TEXT_WAY. " <b>" . $topcode . "</b> - " . $days . " " . MODULE_SHIPPING_AUSPOST_TEXT_SHIPPINGDAYS . "<br>" .$shipping_num_boxes . " " .MODULE_SHIPPING_AUSPOST_TEXT_BOXES . " " . $total_weight . MODULE_SHIPPING_AUSPOST_TEXT_UNITS . $auspost_addons; as $shipping_auspost_method = MODULE_SHIPPING_AUSPOST_TEXT_WAY. $topcode ." - " . $days . " " . MODULE_SHIPPING_AUSPOST_TEXT_SHIPPINGDAYS . $shipping_num_boxes . " " .MODULE_SHIPPING_AUSPOST_TEXT_BOXES . " " . $total_weight . MODULE_SHIPPING_AUSPOST_TEXT_UNITS . $auspost_addons;
  9. then must be hardcoded in the includes/modules/shipping/<shipping_module>.php near the code like $this->quotes
  10. you could use order editor module to edit the orders yourself.. Also,( I amnot sure if there is one.. but there must me ), you could install a contribution so that the customer can post a comment to the admin in the order history page.. That would make it more secure and the stock levels will remain intact ( would prevent customers adding in future requirements and not finalising the order. i.e the customer keeps on adding items to the order and promises to pay later..) I hope that helps.. Shiva
  11. you must be able to find one here: includes/languages/modules/shipping/<module_name.php> Letme know how it goes. Cheers Shiva
  12. hmm.. I dont think that would be required ( but please correct me if I am wrong ): find the code in checkout_process.php tep_mail($order->customer['firstname'] . ' ' . $order->customer['lastname'], $order->customer['email_address'], EMAIL_TEXT_SUBJECT, $email_order, STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS); // send emails to other people if (SEND_EXTRA_ORDER_EMAILS_TO != '') { tep_mail('', SEND_EXTRA_ORDER_EMAILS_TO, EMAIL_TEXT_SUBJECT, $email_order, STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS); } // START HTML Invoice } // END HTML Invoice replace with : tep_mail($order->customer['firstname'] . ' ' . $order->customer['lastname'], $order->customer['email_address'], EMAIL_TEXT_SUBJECT, $email_order, STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS); // START HTML Invoice } // END HTML Invoice // send emails to other people if (SEND_EXTRA_ORDER_EMAILS_TO != '') { tep_mail('', SEND_EXTRA_ORDER_EMAILS_TO, EMAIL_TEXT_SUBJECT, $email_order, STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS); } The send mail was previously within the condition.. if you are still facing issues post in.. Cheers Shiva
  13. can you let us know the code in the checkout_process.php file? Shiva
  14. working on a oscommerce store right now..

  15. True.. but what is the customer adds in 2 bouquets (2 separate products) and wants to send each of them to separate address ? I was considering that case. I could not view the image before.. from what it looks, the store owner seems to be not expecting this case. So a simple modification in the checkout_shipping page should solve the issue.. Cheers Shiva
×
×
  • Create New...