You would want to customize your template for the products _info page ...
Copy the file:
/includes/templates/templates_default/templates/tpl_product_info_display.php
to your templates and overrides directory, using whatever your template directory is for the your_templates_dir ...
/includes/templates/your_template_dir/templates/tpl_product_info_display.php
and find the line:
PHP Code:
<?php echo (($flag_show_product_info_quantity == 1) ? '<li>' . $products_quantity . TEXT_PRODUCT_QUANTITY . '</li>' : '') . "\n"; ?>
and change it to:
PHP Code:
<?php
if ($products_quantity < 1) {
echo 'NOTHING';
} else {
echo (($flag_show_product_info_quantity == 1) ? '<li>' . $products_quantity . TEXT_PRODUCT_QUANTITY . '</li>' : '') . "\n";
}
?>
Then you can set the
echo 'NOTHING';
once it is working, to read:
//echo 'NOTHING';
for future reference and to block the line ...