ecgbyme Posted January 2, 2006 Share Posted January 2, 2006 No quantity appears in the shopping cart Qty. box even if the quanity is increased to any amount. To try to remedy this problem I upload the .php pages 'catalog/shopping_cart.php' and 'catalog/includes/application_top.php' from an old store copy. This did not solve the problem. The problem must lie somewhere else. Any help greatly appreciated! :blink: Link to comment Share on other sites More sharing options...
♥Vger Posted January 2, 2006 Share Posted January 2, 2006 I saw this problem on another site recently. They had installed a contribution (Slave Products) which called for people to input their own quantities, but when they did that it didn't get added to the Shopping Cart. Did you install this Contribution? Vger Link to comment Share on other sites More sharing options...
ecgbyme Posted January 2, 2006 Author Share Posted January 2, 2006 I saw this problem on another site recently. They had installed a contribution (Slave Products) which called for people to input their own quantities, but when they did that it didn't get added to the Shopping Cart. Did you install this Contribution? Vger Thanks for your reply! My problem is different. You can place say for example 3 in the Qty. box and hit update and it will change to the right dollar amount and you can see the quantity, item and price in the shopping cart box in the right colunm but the Qty. box in the shopping cart remains blank. I recently installed most of the OSC upates 051113 as I was having problems with contact-us hi-jacked spamming. I don't know if this created the problem or not. The checkout process works just fine and the quantities appear through the rest of the check out process, just dose not appear in the shopping cart which usually defaults to 1. Link to comment Share on other sites More sharing options...
SuperSewist Posted January 7, 2006 Share Posted January 7, 2006 In case you haven't found it yet, here's what I had to do; I had a weird couple-lines in includes/functions/html_output.html: correct // Output a form input field function tep_draw_input_field($name, $value = '', $parameters = '', $type = 'text', $reinsert_value = true) { $field = '<input type="' . tep_output_string($type) . '" name="' . tep_output_string($name) . '"'; if ( (isset($GLOBALS[$name])) && ($reinsert_value == true) ) { $field .= ' value="' . tep_output_string(stripslashes($GLOBALS[$name])) . '"'; } elseif (tep_not_null($value)) { $field .= ' value="' . tep_output_string($value) . '"'; } if (tep_not_null($parameters)) $field .= ' ' . $parameters; $field .= '>'; return $field; } I can't figure what mod or where this changed from the original, but there it is, and the qty # shows nice now. Toward Continued Success - - > Carol Hawkey - - > KidsLearnToSew.com - - > Wyoming, USA Mods Installed - - > Authnet AIM2 - Bundled Products 1.4 - Fancier Invoice 6.1 - Email_HTML_Order_Link_Fixed - Header Tags Controller - Login aLa Amazon - JustOneAttribute - Article Manager - SPPC w/PB - spiders.txt - Dangling Carrot/Olive - Printable Catalog - CCGV(trad) Planned Mods - - > Purchase Without Account - USPS Label - Ultimate SEO Link to comment Share on other sites More sharing options...
ecgbyme Posted January 14, 2006 Author Share Posted January 14, 2006 In case you haven't found it yet, here's what I had to do; I had a weird couple-lines in includes/functions/html_output.html: correct // Output a form input field function tep_draw_input_field($name, $value = '', $parameters = '', $type = 'text', $reinsert_value = true) { $field = '<input type="' . tep_output_string($type) . '" name="' . tep_output_string($name) . '"'; if ( (isset($GLOBALS[$name])) && ($reinsert_value == true) ) { $field .= ' value="' . tep_output_string(stripslashes($GLOBALS[$name])) . '"'; } elseif (tep_not_null($value)) { $field .= ' value="' . tep_output_string($value) . '"'; } if (tep_not_null($parameters)) $field .= ' ' . $parameters; $field .= '>'; return $field; } Carol! YOU ARE A SWEETHEART!! Thank you so much. I didn't think I'd hear from anyone about this problem. The only codes I changed resently were most of the updates from Nov 11th. But the Qty. numbers are back! Thanks again! - George B) I can't figure what mod or where this changed from the original, but there it is, and the qty # shows nice now. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.