Hey @ michaeljmac, sorry it took us so long, but we have some good news and some bad news.
Good news is that we figured out why search everything doesn’t work with WP-FAQ and the bad news is that this is a bug in WP-FAQ plugin. I already opened a topic at their support forum, so it’s up to them now when they’ll have the time to fix this.
However… until they do this, you can add a line of code in classes/class-faq.php file of their plugin that will enable search.
You have to add 'exclude_from_search' => false,
to arguments starting in line 33 of class-faq.php file. You should end up with something like this:
$args = array(
'labels' => $labels,
'public' => false,
'publicly_queryable' => true,
'exclude_from_search' => false,
'show_ui' => true,
'show_in_menu' => true,
'query_var' => true,
'rewrite' => false,
'capability_type' => 'post',
'has_archive' => true,
'hierarchical' => false,
'menu_position' => null,
'menu_icon' => PLUGINURL . 'images/icon-faq.png',
'supports' => array('title', 'editor', 'faq_groups'),
);
register_post_type('faq', $args);
I’ll mark this topic as resolved now, but if you need any further assistance – we’re still here ??
Best,
Mateja