Posted - 03/13/2023 : 17:17:06
Hi Charlotte Does this help at all? The following is from the PHP parameters page https://www.ecommercetemplates.com/phphelp/ecommplus/parameters.aspProduct listings Note The product sort order is set in the admin main settings page but you can override this with the $orsortby parameter. This is handy if you want to use them on static pages with a different listing. Please note this setting also overrides the listing choices in the new product filter bar. $orsortby=1; // list your products alphabetically $orsortby=2; // Sort by product ID $orsortby=3; // Product Price - Ascending $orsortby=4; // Product Price - Descending $orsortby=5; // No order - fastest display $orsortby=6; // "Product Order" value from the product admin - Ascending. $orsortby=7; // "Product Order" value from the product admin - Descending. $orsortby=8; // Date added - Ascending. $orsortby=9; // Date added - Descending $orsortby=13; // Random order $orsortby=14; // Sort by SKU - Ascending $orsortby=15; // Sort by SKU - Descending Steve
|