Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
208 views
in Q2A Core by
gidgreen when u say " Create a custom theme (see Advanced page on main site) and override the sidebar() function" what does it mean?

1 Answer

+1 vote
by
 
Best answer
He means read the section, "Creating an advanced theme for Question2Answer" on this page: http://www.question2answer.org/advanced.php

The simplest method is to duplicate the "Default" theme folder, then edit "qa-theme.php" inside that folder. Then look in qa-includes/qa-theme-base.php for the sidebar function - it will start with:
      function sidebar()

Copy that and the lines from { to } (10 lines in total).

Paste it into qa-theme.php in your new theme folder. Then change the function how you like.
...