Changing the order of rating categories is a bit tricky and needs database value altering. Copy the value of rs_categories from database table options.
a:4:{i:3;s:32:"Potential Value for Making Money";i:1;s:27:"Works Without Altering Code";i:2;s:18:"Essential Features";i:0;s:14:"Overall Rating";}
Paste the value to text editor and add line feeds after and before brackets and after after every semicolon, as in the example.
a:4:{
i:0;s:14:"Overall Rating";
i:1;s:27:"Works Without Altering Code";
i:2;s:18:"Essential Features";
i:3;s:32:"Potential Value for Making Money";
}
No you can copy and paste lines to put them into the order you like.
a:4:{
i:3;s:32:"Potential Value for Making Money";
i:1;s:27:"Works Without Altering Code";
i:2;s:18:"Essential Features";
i:0;s:14:"Overall Rating";
}
And after that remove all the line feeds, copy and paste the value back to database.
a:4:{i:3;s:32:"Potential Value for Making Money";i:1;s:27:"Works Without Altering Code";i:2;s:18:"Essential Features";i:0;s:14:"Overall Rating";}
That's it, now the order is changed in every place where ratings are showed.
