Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

helply1

Archived
  • Posts

    40
  • Joined

  • Last visited

Profile Information

  • Real Name
    marsh

helply1's Achievements

  1. Works great now, must have been my issue somewhere in the install. thanks for your support keep up the good work.
  2. My error comes at the end of the checkout procedure the error is a sql error 1054 - Unknown column 'accountholder' in 'field list' . The code is asking to store information about the check in the database but I dont have the fields it is asking to use. That was the reason for my question about database config. Ill go back through everything with a fine tooth comb and see where i screwed it up upon install, but until I get those fields, accountholder, bank, routing number, etc added to my database, it would seem reasonable to assume that it will never work as those fields being requested dont exist. Are these fields being added through the code somehow and thus a formal sql update file is not needed?
  3. Anyone using this? I keep getting a database error. Feedback please
  4. the price break contrib by andrewbaucom is flawed. dont waste your time trying to get it to work out of the box. Someone is supposed to be updating it but it is not done. You could update it yourself if you want to look at the priceformatter files that are supplied with it and follow along as the author added support for price1, price2 etc. Just make sure each set of price statements is actually there and it correct. I saw a couple where it looks like he pasted the code but didnt change it so it says price1 over and over when it should have been price1, price2, price3 etc. You will see what im talking about when you look at the priceformatter files that are included with the contrib. Basiclly search the file for the word price and then just make sure each entry with price in it has the correct syntax as the one before and after it.
  5. really need help with this. I cant get the pull down menu to change at all despite numerous changes to the code. What can I be doing wrong? I just want to add the friggin model number to the pull down menu, why is this so difficult? ARRGGHH Truly any help appreciated.
  6. Did anyone ever get this figured out? There is no way I can set the bestsellers when the only options for the admin with this contrib are that the entire database is listed with only names and prices. It takes way to long to load and is impossible to figure out which products are what when there is only a name and price to work with. Anyone have any ideas how to get the admin a bit more friendly with this.. thanks
  7. hello I need to show the model number in the admin when selecting best sellers. It is too confusing with just the product name and price. Anyone have any advice. thanks
  8. i simply cant get this to work, there are page not found errors all over the place. Can someone recount the typos and resubmit the contrib with them all fixed please. I see there are several mentioned in the threads but just changeing them is making things worse. It would be very helpful. thanks
  9. found this in another thread 2. in order for the scrolling pix to be fitting in the bestseller box, the following line must be added to catalog/includes/boxes/bestseller2.php. add: SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT just after $rows = 0; $info_box_contents = array(); while ($best_sellers = tep_db_fetch_array($bestseller_products_query)) { $rows++; $info_box_contents[] = array('align' => 'center', 'text' => '<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $best_sellers["products_id"], 'NONSSL') . '">' . tep_image(DIR_WS_IMAGES . $best_sellers['products_image'], $best_sellers['products_name'],
  10. you also need to change define('FILENAME_BESTSELLER', 'bestseller2.php'); to define('FILENAME_BESTSELLER2', 'bestseller2.php'); in cat/admin/includes/filenames.php
  11. Ok I have pm'd the contrib author but it bounced back, he must be a popular guy. I really need this to work to save some real estate around the products. Does any one have any ideas about how to get the model number to display in the price chart box? I thought it would be simple enough to add the $product_info['products_model'] part to the code and viola, but I was wrong. Any help appreciated as Im stumped.
  12. Hello I would like to add the model number to the top of the price chart that is generated on the product_info page. Here is the code that is calling the price chart and Im trying to put the products model query in there. Can anyone help me get this going. thanks if($this->hasQuantityPrice == true) { $lc_text = '<table align="top" border="1" cellspacing="0" cellpadding="0">'; $lc_text .= '<tr><td align="center" class=' . $style. ' colspan="2">' . $product_info['products_model'] . ' ' . 'Ea' . '</td></tr>';
×
×
  • Create New...