Hello. I need to sort a page of entries by price (2 decimals).
Only problem is EE sees them as alphanumeric not integers.
So what should order like:
1.99
2.99
9.99
19.99
29.99
Orders like:
1.99
19.99
2.99
29.99
9.99
I’ve tried changing the table containing that data in MySQL to ‘int’ but that doesnt work. Also tried ‘decimal’ - no avail. Is there a native EE parameter or some PHP maybe that will help?
Thanks, Liam