Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

boetje

Archived
  • Posts

    7
  • Joined

  • Last visited

Profile Information

  • Real Name
    Alain
  • Location
    Belgium
  • Website

boetje's Achievements

  1. Dear Jan, Thx for a great contrib. It works really well. I do have an issue with another contrib I installed: Attribute Qty Product Info. The thing is that when a product has attributes they are all shown with a seperate quantity box next to the attribute. When Clicking on the add to cart. All available attrib's are put into the cart. I would love for the quantity box above the add to cart button to disappear when attributes are present. Would that be possible? Could you please help me out on how to change this? Thank you for a quick answer. Wkr, Boetje
  2. Hey Kam, Look here for a possible answer. Easy Discount - How to add Good luck. Wkr, Boetje
  3. Problem solved. added an argument to the tep_query and rewrote line of echo. Thus new piece of code if (IQ_ADDITIONAL_CUSTOMERS_NUMBER == 'enable') { $customers_number_query = tep_db_query("select customers_additional_customers_number, customers_id from " . TABLE_CUSTOMERS . " where customers_email_address = '" . tep_db_input($order->customer['email_address']) . "'"); $customers_number = tep_db_fetch_array($customers_number_query); if ($customers_number['customers_additional_customers_number'] == '') { echo $customers_number['customers_id']; } else { echo $customers_number['customers_additional_customers_number']; } } Greetz, Boetje
  4. Dear people, I installed the contrib 2242, which works fine though I'm trying to customize my invoice.php The thing is I want the invoice to show me the normal assigned customer nmbr if the customized one hasn't been assigned. This is a little code snipplet with the prob if (IQ_ADDITIONAL_CUSTOMERS_NUMBER == 'enable') { $customers_number_query = tep_db_query("select customers_additional_customers_number from " . TABLE_CUSTOMERS . " where customers_email_address = '" . tep_db_input($order->customer['email_address']) . "'"); $customers_number = tep_db_fetch_array($customers_number_query); if ($customers_number['customers_additional_customers_number'] == '') { strip_tags($order->customer['id_customer']); } else { echo $customers_number['customers_additional_customers_number']; } } Hope to get some help. Thanks in advance. Wkr, Boetje
  5. Dear php gurus, I really dig the contibution QTPro, and it works fine for me. Especially like the quantity table on the product_info.php Though I came accros another contib (# 3345): Attribute Qty Product Info Which has a nicer way of getting people to add stuff to their cart. Can anyone please help me in any way in coding in the other contib. thanks a million. Wkr, Boetje
×
×
  • Create New...