Try looking at includes/modules/YOUR_TEMPLATE/product_listing.php
(If it's not there, copy it from includes/modules/product_listing.php).
Look at the block that prints
case 'PRODUCT_LIST_QUANTITY':
$lc_align = 'right';
$lc_text = $listing->fields['products_quantity'];
break;
try changing the setting of $lc_text to what you want.
$lc_text = $listing->fields['products_quantity'] . " lbs. left";


Reply With Quote

