Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
558 views
in Q2A Core by
how can show on homepage (index) only followed users post? and disable all posts without followed users, the same with facebook , if you follow someone you can see posts from this users... its posible ?

2 Answers

0 votes
by
possible. You will need to modify the function qa_db_qs_selectspec at db/selects.php.
by
–1
thanks for reply, but i dont now how can modify this code  if you have a code to post here ..:D
+2 votes
by

You can add this to your qa-config.php:

$QA_CONST_PATH_MAP = array(
    'updates' => '',
);

That will set the 'updates' page as the homepage. This includes all updates - users or questions or tags you've favorited, and replies to your own posts.

However, there is no way to prevent people from viewing other questions. It's just not something Q2A is designed to do.

by
Agree. But this can be done by overriding select_basic function albeit with minor core hacks.
by
you have the hack code? :D  and thanks for reply Scott!
...