Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+3 votes
724 views
in Q2A Core by
how can i control the recent questions answers apearing on the hompage?

for example if i want to exclude certain questions by a tag.

is it a theme issue?
Q2A version: 1.6.2
by
Great question, wondering about that to. Including only particular tags would be good to.

1 Answer

0 votes
by

You will have to override the function q_list_item(...) in an advanced theme and skip items that have a given tag.

Use 
print_r($q_item) to see how you can extract tag information.

...