First time here? Check out the FAQ!

Revision history  [back]

There's not a valued configuration can achieve your target, but you can edit your source code with this method:

the main question query code are in askbot.views.readers.py file and in the questions(request, **kwargs) function , it get the queryset from this line -- qs, meta_data=models.Thread.objects.run_advanced_search(**). so, we can tell some query parameters are set in the run_advanced_search function,  go into this function and you can find the primary_filter dict, add your self configuration to this query dict--may like this:

before

primary_filter = { 'posts__post_type': 'question', 'posts__deleted': False }

after

primary_filter = { 'posts__post_type': 'question', 'posts__deleted': False, 'posts__wiki':True, } be carefully, between the post and wiki , it is a double underline.

I have tested in my development code, and hope it can help you.