• Resolved Henry

    (@henrychea)


    Hi I’ve enabled jQuery pagination on thousands of questions. Is there a way to permanently disable this feature. I don’t need it at all.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Harmonic Design

    (@harmonic_design)

    there are two options.

    1) Similar to your previous support question https://wordpress.org/support/topic/automatically-add-all-questions-in-database-to-a-quiz/ create a shortcode and a loop to go over each question and update the meta value hdQue_post_class25 to no.

    Basically replace $r = wp_set_post_terms( $questionID, array(intval($quizID)), "quiz", true); with update_post_meta( $questionID, "hdQue_post_class25", "no" );

    2) Edit the plugin file directly. ./hd-quiz/includes/template.php line 114. Comment out hdq_print_jPaginate($hdq_id);. Just note that whenever you update HD Quiz, the update will overwrite this change. So it’s always best to avoid modifying plugin files directly.

    Thread Starter Henry

    (@henrychea)

    Thank you so much 😀

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Disable jQuery pagnation’ is closed to new replies.