I found that simply editing the wp-awesome-faq/index.php file to allow more posts per page works. By default it is set to 5. You can find the code ton line 92 of the index.php file. Hope this helps!!
// Getting FAQs from WordPress Awesome FAQ plugin’s Custom Post Type questions
$args = array( ‘posts_per_page’ => 15, ‘post_type’ => ‘faq’, ‘order’=>”DESC”);
$query = new WP_Query( $args );