Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

KevinAce

Archived
  • Posts

    39
  • Joined

  • Last visited

Profile Information

  • Real Name
    Kevin Wimer

KevinAce's Achievements

  1. Nice find guys. Thank you for the reply coffman. Worked like a charm! *wipes sweat away*
  2. Thank you very much for this contribution. However, I seem to have encountered an error with this module. If you enter "N75 4B9" as a ZIP code (not valid, entered erroneously by a customer) the checkout_shipping.php page (target page) is blank. It is not invalid postal codes as a whole that does it. You can enter a BS postal code and it will read back something like '111285: The postal code 9999999999 is invalid for ON Canada." An error is obviously the desired output, not a blank page. Any ideas on this?
  3. Hello, Hard to keep up with all the code changes and errors. I desparately need this for a site of mine, however. I'm willing to pay somebody to install this contribution for me. If you can get it working well, then we're good to go. From what I can see, it should be a fairly painless operation...I just don't have time for it right now. Get a hold of me: Cell: 937.620.1004 AIM: ace56789 ICQ: 9477315 E-mail: [email protected] Thanks, Kevin
  4. Has anybody read these options into the database via a script (like Easy Populate - which obviously doesn't do options) yet? If so, how did you do it? I've found no good way to, so I'm writing a script that will submit to the database for ya!
  5. Hello, Am I able to do v_products_retail price and just add that as one of the headers, along with v_products_price? Are any additional fields like this able to be implimented? If not by default, how would I go about setting this up? Similar question with "attributes" - am I able to add an attributes section? And if so, what would be the syntax for it? Let Me Know, Thanks, Kevin
  6. I figured it out. There were problems with the output code. Well not the code itself, but the variable. I simply took two original lines of code (see below) and made duplicates but changed the products_price entires to prodcuts_retail_price. It worked like a charm after that! $products_price = '<s>' . $currencies->display_price($product_info['products_price'], tep_get_tax_rate($product_info['products_tax_class_id'])) . '</s> <span class="productSpecialPrice">' . $currencies->display_price($new_price, tep_get_tax_rate($product_info['products_tax_class_id'])) . '</span>'; to $products_retail_price = '<s>' . $currencies->display_price($product_info['products_retail_price'], tep_get_tax_rate($product_info['products_tax_class_id'])) . '</s> <span class="productSpecialPrice">' . $currencies->display_price($new_price, tep_get_tax_rate($product_info['products_tax_class_id'])) . '</span>'; and then the else statement $products_price = $currencies->display_price($product_info['products_price'], tep_get_tax_rate($product_info['products_tax_class_id'])); to $products_retail_price = $currencies->display_price($product_info['products_retail_price'], tep_get_tax_rate($product_info['products_tax_class_id']));
  7. Will this allow uploading a file to update the attributes fields for items? I'm currently using Easy Populate (does that do it by chance? If so, what's the field name, and syntax for that field?) Looks like I might end up writing a script on my own to add the items to the database.
  8. Ahhh, not a SQL query but just adding the row to the database. Yah I got that. I have the values in that field successfully too. They're just not pulling out of the DB to display on the site. I'm getting blank echo's. Any ideas?
  9. Which SQL statement? Within what file should I look for it? I didn't mess with that at all - that could be my problem!
  10. Easy Populate I'm talking about doing the product attributes. I didn't see anything within easypopulate that'd do it? If so, maybe I missed it - could you point me in the right direction? I checked its readme and such...
  11. Each time I clear the DB though, that means I'd have to do it all again eh? No contribution makes this possible via a CSV upload or anything?
  12. I linked to the images for the site itself fine, but how exactly do I specify images for the categories (IE: "Guitars" has "Electric" and "Acoustic"). How would I display an image for Electric / Acoustic (not so much upload an image, but how/where do I specify the path to look for these images?)
  13. Good contribution, but is there a way to submit all of this to the DB via a CSV file? The manager looks pretty good...except I have a few thousand products to do this for.
  14. Can somebody post what they did to get this working? Did you use the original code? Or Steve's modified code? I've tried both but to not avail (nothing is echo'ing).
  15. I tried the original code and Steve's code and I'm getting nothing but blanks. It's outputting nothing (the value is in the DB however). Also, as far as the DB item goes, where should the field be located (relative to other items)?
×
×
  • Create New...