mattjt83, on 30 January 2013 - 03:29 AM, said:
I would check in application_top and also the tep_get_uprid function in includes/functions/general.php. In the past when I have had issues with items simply not adding to the cart with this addon it was an issue in application_top.
I found the problem, it was in application_top. I had installed another addon "add_more_than_one_unit_to_cart" and had this line in my code...
add_cart($HTTP_POST_VARS['products_id'], $cart->get_quantity(tep_get_uprid($HTTP_POST_VARS['products_id'], $real_ids))+$HTTP_POST_VARS['add_quantity'], $real_ids);Once I changed it back to this...
$cart->add_cart($HTTP_POST_VARS['products_id'], $cart->get_quantity(tep_get_uprid($HTTP_POST_VARS['products_id'], $real_ids))+1, $real_ids);It worked fine. Don't know if this will work with the text box issue? However it might provide a platform for a fix.
Cheers










