Quote Originally Posted by stuville View Post
I too had the "Max:1" issue. I edited the product_listing.php.

1. Copy the product_listing.php to /include/modules/YOUR_TEMPLATE/. before you edit.
2. Search for zen_get_products_quantity_min_units_display
3. You will need to delete the above searched text and add a semicolon. In my products_listing.php file, I found it on line 148.

original code:
$lc_text .= '<br />' . zen_get_buy_now_button($listing->fields['products_id'], $the_button, $products_link) . '<br />' . zen_get_products_quantity_min_units_display($listing->fields['products_id']);

modified code
$lc_text .= '<br />' . zen_get_buy_now_button($listing->fields['products_id'], $the_button, $products_link) . '<br />';

At least this worked for me.
Worked great for me, too. Thanks stuville.