Jonah Penne
asked 8 years ago

Hi,

I’m developing a site at http://researchmatters.umaryland.edu/ that uses the DW Q&A template. Unfortunately, the Status tabs are malfunctioning. The All and Resolved links seem to work just fine, but the others show a "Sorry, but nothing matched your filter" message even if there are questions that should match. Can anyone suggest a fix?

Thanks!

1 Answers
DominicStaff
answered 8 years ago

It’s bug come from old version, we have fixed this issue in the latest version 1.4.2.2, you can download and update it or you can try the following solution:
open Inc/filter.php go to around Line 400
in case replied you add this:

$args['meta_query'][] = array(
     'key' => '_dwqa_status',
     'value' => array( 'answered' ),
     'compare' => 'IN',
     );
break;

If not work, I think you should update to latest version.
Hope this helps!

Powered by DW Question & Answer Pro