Re: Adding another Form to Classified Adverts
Yeah, since the price is using a
WP postmeta field which only comes in varchar (text), I didn't think it was possible to sort numeric values correctly.......until I did some research and figured it out!
Edit your index.php page and look for the following line:
Code:
<a href="?sort=meta_value&key=price&order=asc">
Now replace that with this code:
Code:
<a href="?sort=meta_value+0&key=price&order=asc">
That should now sort the numeric values correctly. Remember, the highlighted feature ads will take precedence and sort first. Then your regular ads will come sorted next.
This fix will be included in the next release. Thanks to this
wordpress support post for providing the solution.