Hi ??
This is a very essential requirement for easy question reordering using drop & drag table rows. I have implemented this feature, have a look first
Before reorder
After reorder
Briefly – how to implement:
===========================
1. Get jquery table drag-drop plugin and attached
2. Set a new field in wp_mtouchquiz_question->question_reorder
3. Make a custom js script, attached and write your function to handle the POST data whenever drag and drop occurs and updates db field with new order via ajax.
4. Place the field ‘question_reorder’ with ORDER BY in question.php, after which your question display order will be in accordance with your drag-drop order. We can as well Place ‘question_reorder’ in ORDER BY with RAND() and also replace ORDER BY ID with ORDER BY question_reorder in show_quiz.php, after which it will arrange the question in quiz page in accordance with question_reorder + randomize
5. Finally do some styling and attach ajax loader image etc.
Thanks