
Originally Posted by
swguy
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.)
Bookmarks