Review categories ordering Hi, I am adding dozens of categories to my Reviews section. Currently, when I go to add a review, the dropdown box containing the categories shows the individual categories in the order in which I entered them. What I would prefer is that the dropdown box shows the categories in alphabetical order. Is there a way to change the display so the categories show up in the dropdown box in alphabetical order?
Review categories ordering Yes, this is a very simple modification. Open cadmin/mod_review.php in your favorite editor and run a search & replace for the following line Search for: Code: SELECT reviewcat_id, reviewcat_name, reviewcat_permissions FROM esselbach_st_reviewcat and replace with: Code: SELECT reviewcat_id, reviewcat_name, reviewcat_permissions FROM esselbach_st_reviewcat ORDER BY reviewcat_name Then reupload the file to your webspace