Hi all
I recently installed wpDiscuz and so far it is great. Now I have a question about the ratings. I offer an e-learning with many different pages. There are almost 300 in total. I have enabled ratings for all of these pages. The idea is that students can rate each lesson. If the rating is low, they had some kind of problem with the content and maybe I should try to improve it.
So far I haven't figured out how to display the ratings in the dashboard. I don't even know if it exists. But the idea would be that I have a list of all ratings and that I can filter them by lowest/highest rating. Do you know if this feature exists? How can I enable it?
Thanks
Luca
Hi Luca,
We're really sorry, but wpDiscuz doesn't have such a feature.
Currently, we have paid plugin customization and custom addon development services at the gVectors Team. They can assess the work and create it for you. Just contact us via sales[at]gvectors.com email address and send a list of requirements you'd like to have.
Thanks for your help. I was able to do it myself with the following SQL query. But maybe it would be great if you add this as a feature. I'm sure a lot of users will find that helpful...
Here's the SQL query
SELECT post_id, AVG(rating) AS average_rating FROM wp_wc_users_rated GROUP BY post_id;