Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

crandall87

Archived
  • Posts

    31
  • Joined

  • Last visited

Profile Information

  • Real Name
    Craig Randall

crandall87's Achievements

  1. I would have thought lots of people would be interested in combining these two contribs :(
  2. Hello I have been trying to combine Automatic Customer Stock Updater and Quick Stock update but to no avail. I see someone has made it work with quick stock update in product category so I was hoping making it work in the quick stock updater wouldn't be too difficult. I am not a very good coder in php so I was wondering if there was anyone who could combine the two. Thank you.
  3. Hello. I have installed this contribution http://www.oscommerce.com/community/contributions,1333 and I have a slight problem with it. If I set my shipping to be £3.50 for example it is displayed in product.php as £3.5 I believe this is because the admin cuts of the 0 as it doesn't think they are needed. If anyone has used this do they know how to fix this so the price is displayed as £3.50 and not £3.5
  4. Better late than never. I believe it's // start indvship $extra_shipping_query = tep_db_query("select products_ship_price, products_ship_price_two from " . TABLE_PRODUCTS_SHIPPING . " where products_id = '" . (int)$products_id . "'"); if (tep_db_num_rows($extra_shipping_query)) { $extra_shipping = tep_db_fetch_array($extra_shipping_query); if($extra_shipping['products_ship_price'] == '0.00'){ echo '<i>(Free Shipping for this Item)</i>'; } else { echo '<i>(The delivery cost for this item is £' . $extra_shipping['products_ship_price']; if (($extra_shipping['products_ship_price_two']) > 0) { echo ' for the first item, and $' . $extra_shipping['products_ship_price_two'] . ' for each additional item.)</i>'; } else { echo ')</i>'; } } } // end indvship
  5. My points are not working in my checkout_confirmation.php. I know that my hosts have PHP5 on and I have the register globals patch. I have tried the register globals fix that was posted in feb 2007 in this thread but it has made no difference. Also when I have more points than more orders value my site is still saying I need to choose a payment method in checkout_payment.php. I really don't know what the problem is at all.
  6. I am having trouble with this contribution http://www.oscommerce.com/community/contributions,4429 I can get it to work fine however all it does is send the html source code to inboxes and doesn't display the email like a webpage. Is there a way to make this send my newsletter an emails to display in html?
×
×
  • Create New...