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! :)
More...




LinkBack URL
About LinkBacks









Bookmarks