Joe Davidson
asked 8 years ago

I have an issue where when I try to view the questions with "Answered" status, I’m not seeing any questions although I know there are some with this status. Upon further inspection, I see that the URL for this status is incorrect. It shows:

http://mywebsite/?status=replied

When I change "replied" to "answered", the answered questions are listed. Where do I need to change the URL so that it correctly shows http://mywebsite/?status=answered

1 Answers
DominicStaff
answered 8 years ago

Hi,
At the moment, our plugin have some buggy about Filter section. I sent and notified our technical team about this problem. We will check and fix it in the next version.
You can try this to fix this problem. Open the inc/filter.php file, go to Line 400
in case replied you add this :

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

Hope this helps !

jdavidson224
replied 8 years ago

Perfect, that worked! Thank you!

Powered by DW Question & Answer Pro