This was a plugin developer error also suffered enough to find the solution, but I could.
First, edit the quiz-page.php file that is located in wp-content/plugins/quiz-master-next/php/quizzes-page.php
In the file, look for the following part:
$my_query = new WP_Query( array(‘post_type’ => ‘quiz’) );
and change to
$my_query = new WP_Query( array(‘post_type’ => ‘quiz’, ‘posts_per_page’ => -1) );
Please give me feedback if it worked for you.
Sorry for my English, I’m Brazilian: D
-
This reply was modified 8 years, 1 month ago by Jairo Coelho.