Quote Originally Posted by swguy View Post
Please revert to smaller number of products per page and try this fix:

under
<!-- bof That Software Guy Quick Quantity Update -->

change

<?php echo '<a href="' . zen_href_link(FILENAME_CATEGORY_PRODUCT_LISTING, 'cPath=' . $cPath . '&pID=' . $products->fields['products_id'] . '&action=change_quantity') . '">'; ?>

to

<?php echo '<a href="' . zen_href_link(FILENAME_CATEGORY_PRODUCT_LISTING, 'cPath=' . $cPath . '&pID=' . $product['products_id'] . '&action=change_quantity') . '">'; ?>


(You're basically changing $products->fields to $product.)
I just got a chance to try this fix, unfortunately it didn't work. It is still not updating and now bounces to the last page on click.

There is only one category where this poses an issue, and I did see your post that there will be fixes/changes coming with 1.5.8, so not a biggie. I will just change the quantity shown when I have to edit this category.

Thanks!