Although I have researched, I am trying to add the product minimum quantity information to the products info page. This should be a simple fix. I do NOT have the shopping cart turned on and will not be using that feature until later.

The min. quantity shows in the products listing page. I found the code, but it's in an "if else" php statement. I don't know how to rewrite it to fit in the products info page. Any suggestions?

( I know I can add it in manually, but I really don't want to do that to 800 products :/ )

-------------------------------------------
tpl_modules_products_all_listing.php
(this is only a snippit from the long code, but you get an idea of what I'm referencing here.)

PHP Code:
 '<br />' zen_get_products_quantity_min_units_display($products_all->fields['products_id']) . 
tpl_product_info_display.php
(I want to place it in this area along with the rest )
PHP Code:
<?php echo (($flag_show_product_info_model == and $products_model !='') ? '<li>' TEXT_PRODUCT_MODEL $products_model '</li>' '') . "\n"?>
    <?php echo (($flag_show_product_info_weight == and $products_weight !=0) ? '<li>' TEXT_PRODUCT_WEIGHT .  $products_weight TEXT_PRODUCT_WEIGHT_UNIT '</li>'  '') . "\n"?>
    <?php echo (($flag_show_product_info_quantity == 1) ? '<li>' $products_quantity TEXT_PRODUCT_QUANTITY '</li>'  '') . "\n"?>
    <?php echo (($flag_show_product_info_manufacturer == and !empty($manufacturers_name)) ? '<li>' TEXT_PRODUCT_MANUFACTURER $manufacturers_name '</li>' '') . "\n"?>
Thanks in advance.
I'll keep working at it, maybe I'll figure it out.