Hi,
I’m looking for the same issue
thx in advance.
Edit this file : class-quick-and-easy-faqs-public.php
Replace this :
$faqs_query_args = array(
‘post_type’ => ‘faq’,
‘posts_per_page’ => -1,
);
by this
$faqs_query_args = array(
‘post_type’ => ‘faq’,
‘orderby’ => ‘name’,
‘order’ => ‘ASC’,
‘posts_per_page’ => -1,
);