
Originally Posted by
100asa
Is it possible to have new_products rss file listed by last_modified date instead for date_addedd?
header_php.php
Find
PHP Code:
$disp_order_default = PRODUCT_NEW_LIST_SORT_DEFAULT;
require(DIR_WS_MODULES . zen_get_module_directory(FILENAME_LISTING_DISPLAY_ORDER));
Replace by
PHP Code:
$order_by = " order by p.products_last_modified DESC, pd.products_name";
But the results are very surprising.
It is better to use this:
PHP Code:
$order_by = " order by products_date DESC, pd.products_name";
Bookmarks