Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

corradomatt

Archived
  • Posts

    13
  • Joined

  • Last visited

Everything posted by corradomatt

  1. Hey Sam, Any luck with that problem? I am running into the same problem. I'm running on GoDaddy's hosting but I wouldn't think that would be the problem. I have 1 package setup that should fit the item I am adding to my cart and I have the item marked "Ready to Ship" also. It should be 1 Package at 23 pounds but instead the upsxml posts: "United Parcel Service (XML) (3 pkg(s), 44 lbs total) $88.41" . I also have another item from another vendor setup with upsxml and this item should be 1 package at 23 pounds also. Instead the system looks like it's adding the first vendor's shipping to the second because it says..."United Parcel Service (XML) (5 pkg(s), 44 lbs total) $147.35" Has anyone else had this problem? I need help with this one ASAP. If someone could just point me in the right direction, I could play with the code. Thanks
  2. Nevermind all.....I figured it out......if you are having problems with IE 7 just do this..... somewhere in the /* menu links style */ area of the css code add this line... overflow: auto; /*force hasLayout in IE7 */ That fixed everything for me! Thanks everyone. Matt
  3. Great contribution! It has worked great for me for about 3 months now. But I recently ran into a problem with it....under the new IE 7 it displays kinda funky. Has anyone else had issues with the new IE 7? You can see what I mean at HTTP://www.westixonline.com/Frames/Mesh/c10/index.html Any help with this is greatly appriciated. matt
  4. craschnburn Yes....the mod automatically keeps track of the customers credit limit for you when they make a purchase. It does not track when they make payment. So if they call you and pay by credit card over the phone or send you a check for the balance on their account....you would have to log into their account in OSC and let the system know that they have made a payment so that they have that amount of credit available to them. There are, however, a few changes that need to be made..... I am having a problem (from the ealier post) of hiding the 'purchase order' payment option from those customers who don't have purchase orders enabled. and I would like to develop the mod to allow for customers to pay their balance through the system...like with their credit card through my payment gateway. That way they could update their account balance themselves. --- CorradoMatt "Better to do something imperfectly than to do nothing flawlessly." -some teacher
  5. Good work Mike. I am in the process of installing this mod and didn't even realize that everyone could see the po checkout option until you posted this. Thanks! I installed the code, but for some reason it's not working for me. It's still displaying the option for everyone!. hmm....
  6. DefelRadar Thanks for the tip on php books. I never thought about the library (duh)....I guess I forgot that people went there before the internet. :D As far as people being able to pay their credit balance through osc....I guess the easiest way would be to add thier balance to the cart as a non-taxable, 0 lbs product. But it would be kinda cheesy to do it that way. -CMatt
  7. Great contribution. Everything installed and works beautifully. I'd like to improve it a little. I want to add some code so that customers can see their credit limit and what their balance is under their account information. Ultimately, I would like to give the customer an option to pay their balance through the credit card process features of the cart. Any ideas or suggetions? I don't know php...but I'm gonna run to the book store tonight and start learning. Any suggestions on good php books?? I need one that's not too technical, but not too cheesy either. later
  8. Whoops! :blush: Found my error. I needed to delete lines.... [246] a.customers_id = c.customers_id and [247] a.address_book_id = c.customers_default_address_id and [248] c.customers_id = '" . (int)$HTTP_GET_VARS['cID'] . "'"); Everything works great now! :thumbsup:
  9. Hey all, I'm having problems implimenting Purchase Order V2.3. I'm trying to install it into the CREloaded version of OSC, which is probably why I'm having problems. I installed everything correctly and I get this error.... "Parse error: parse error, unexpected T_STRING in /home/content/w/e/s/westixsupply/html/store/admin/customers.php on line 243" So here is my code around line 243..... [Line 237] tep_redirect(tep_href_link(FILENAME_CUSTOMERS, tep_get_all_get_params(array('cID', 'action')))); [238] break; [239] default: [240] // Company PO Account start [241] $customers_query = tep_db_query("select c.customers_id, c.customers_gender, c.customers_firstname, c.customers_lastname, c.customers_dob, c.customers_credit_account_status, c.customers_credit_amount, c.customers_credit_status, c.customers_credit_left, c.customers_email_address, a.entry_company, a.entry_street_address, a.entry_suburb, a.entry_postcode, a.entry_city, a.entry_state, a.entry_zone_id, a.entry_country_id, c.customers_telephone, c.customers_fax, c.customers_newsletter, c.customers_default_address_id from " . TABLE_CUSTOMERS . " c left join " . TABLE_ADDRESS_BOOK . " a on c.customers_default_address_id = a.address_book_id where a.customers_id = c.customers_id and c.customers_id = '" . (int)$HTTP_GET_VARS['cID'] . "'"); [242] // Company PO Account end [243] " . TABLE_CUSTOMERS . " c, [244] " . TABLE_ADDRESS_BOOK . " a [245] where [246] a.customers_id = c.customers_id and [247] a.address_book_id = c.customers_default_address_id and [248] c.customers_id = '" . (int)$HTTP_GET_VARS['cID'] . "'"); [249] $customers = tep_db_fetch_array($customers_query); [250] $cInfo = new objectInfo($customers); [251] } [252] } [253] ?> Any help is greatly appriciated. :x
×
×
  • Create New...