Viewing 3 replies - 1 through 3 (of 3 total)
  • The shortcode takes a limit argument. Perhaps you could set that to something sufficiently high so that all your posts are included within the first page? Something like:

    [faq faq_topic="topic-slug" limit="1000"]

    It doesn’t work with 1000, 5 or the suggested -1 for unlimited posts.

    I had this same issue. I went into the code editor and in the main plugin file changed the ‘limit’ value in the following piece of code from 10 to 100 and it worked.

    public function shortcode_main($atts, $content = NULL) {
    		extract(shortcode_atts(array(
    			'faq_topic'		=> '',
    			'faq_tag'		=> '',
    			'faq_id'		=> '',
    			'limit'			=> '100',
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Displaying All FAQs of a Section Not Working’ is closed to new replies.