Re: Adding another Form to Classified Adverts
Found this solution to the whole Price sorting issue.
http://wordpress.org/support/topic/277454
Basically you use this in your sort links
<a href="?sort=meta_value_number&key=price&order=asc" >
<a href="?sort=meta_value_number&key=price&order=desc ">
But then you have to make a few edits to
WP. In the main wordpress directory (not classipress) go inside the
wp-includes folder and open the query.php file. Then do the following:
go to line ~2035, after $allowed_keys[] = 'meta_value'; add
$allowed_keys[] = 'meta_value_number';
go to line ~2057, after break; add
case 'meta_value_number':
$orderby = "$wpdb->postmeta.meta_value+0";
break;
I did it and it works for me. If those lines aren't exact for you you may not be up to date with your wordpress. Try upgrading or do a search for the value they said to put your new code in after.
good luck