Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

capeproducer

Pioneers
  • Posts

    4
  • Joined

  • Last visited

Profile Information

  • Real Name
    Paula J. Hersey

capeproducer's Achievements

  1. Greetings All, Not sure if this the right thread to be asking, just need a pointer in the right direction. I have Manufacturers showing on my product_info page, but would like to pass the manufacture to shopping cart process - I have this contrib installed, works great on the invoice, but doesn't work on the Shopping Cart -http://addons.oscommerce.com/info/1624 Using Oscmax v.RC3 Basically, I need to pass the manufacturer name to the shopping cart/order process and email order confirmation. The cart has many items named the same thing- http://puffthemagic.com/cigar-catalog/ Any and all help appreciated and thanked in advance. PJ
  2. Greetings, Great module, works perfectly. I would like to be able to pass the text attribute (created with Text Attributes Mod v1.2) to PayPal and confirm email. In testing, it does not record in the Admin orders or email. Will I need to add the following code (mod in check_process.php from aboce contrib) to both the paypal_ipn.php in includes/modules as well as /languages? If anyone has these 2 contribs, would appreciate the knowledge share. // denuz text attr $attr_q = tep_db_query("select * from customers_basket_text_attributes where session_id = '$osCsid' and products_id = " . tep_get_prid($order->products[$i]['id'])); while ($attr = tep_db_fetch_array($attr_q)) { tep_db_query("insert into orders_text_attributes values ($insert_id, " . tep_get_prid($order->products[$i]['id']) . ", " . $attr['products_text_attributes_id'] . ", '" . $attr['products_text_attributes_text'] . "')"); } tep_db_query("delete from customers_basket_text_attributes where products_id = " . tep_get_prid($order->products[$i]['id']) . " and session_id = '" . $osCsid . "'"); // eof denuz text attr Thanks in advance..
  3. Greetings, Great module, works perfectly. I would like to be able to pass the text attribute (created with Text Attributes Mod v1.2) to PayPal and confirm email. In testing, it does not record in the Admin orders or email. Will I need to add the following code (mod in check_process.php from aboce contrib) to both the paypal_ipn.php in includes/modules as well as /languages? If anyone has these 2 contribs, would appreciate the knowledge share. // denuz text attr $attr_q = tep_db_query("select * from customers_basket_text_attributes where session_id = '$osCsid' and products_id = " . tep_get_prid($order->products[$i]['id'])); while ($attr = tep_db_fetch_array($attr_q)) { tep_db_query("insert into orders_text_attributes values ($insert_id, " . tep_get_prid($order->products[$i]['id']) . ", " . $attr['products_text_attributes_id'] . ", '" . $attr['products_text_attributes_text'] . "')"); } tep_db_query("delete from customers_basket_text_attributes where products_id = " . tep_get_prid($order->products[$i]['id']) . " and session_id = '" . $osCsid . "'"); // eof denuz text attr Thanks in advance..
  4. Hi, Hope someone can help. Installed the contribution, everything seems to be working fine, except the product info page shows the TEXT as a select option and not a blank text field. Not sure whats wrong, have double checked installation ( I have access to phpMyAdmin -all tables look correct). Thanks in advance for any help -great contribution.. CapeProducer
×
×
  • Create New...