PDA

View Full Version : featured listings not sorting correctly



Horizon
February 26, 2024, 09:53 AM
I was about to open a ticket based on this issue on my own site, but I notice it on the demo too.

If I go to listings, and click the dropdown Sort By: and choose price ascending for example, the featured listings show:
$4,500
$30,000
$350,000
$249,000
$2,500,000
$299,000

So they're not being sorted by price ascending within the featured listings which appear above the standard listings...

Rudi
February 26, 2024, 03:40 PM
Use this fix:

in includes/classes/rlListings.inc.class -> public function getListings

replace below:


$sql .= '`Featured_date` DESC ';


with:


$sql .= '`Featured` DESC ';

Horizon
February 27, 2024, 02:03 AM
Thank you!