Community Add-Ons
Products_Short_Descriptions_V1
for osCommerce Online Merchant v2.2
This module will add a short description of the product when listing products.
It is not based on the product description field of the products_description table.
This module makes an extra field!!
It is compatible with OSC2.2MS2.
The previous versions had a bug. They were working, but when you were clicking to sort the products by short description you were getting an error by mysql because the creator didn't thought that the short desc will be clickable to sort the products.. So i made the correction..
Find this :
case 'PRODUCT_LIST_INFO':
$listing_sql .= "pd.products_info ". ($sort_order == 'd' ? 'desc' : '');
break;
Replace with this :
case 'PRODUCT_LIST_INFO':
$listing_sql .= " order by pd.products_info " . ($sort_order == 'd' ? 'desc' : '');
break;
This is a full package, i included also the short desc for shopping cart and for specials.php
Thank you all! :)
