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 );
not really sure where to post this, but my question is. I am using GF Directory and am listing as a table, the issue is that it will only populate 5 columns and i need 6. is there something I am missing here. i have spent hours going through the PHP trying to see if i could modify it that way but I am drowining here. Please help if you can. thanks!!!