Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
550 views
in Q2A Core by
Lets say I wanted to add text to the footer, what file would I have to edit?

1 Answer

0 votes
by

You would need to override the theme. Check the docs on the main site for details. In short:

1. Duplicate the folder qa-theme/Default

2. In the admin section, set the theme to the one you just created

3. In your new theme folder, edit qa-theme.php and override the footer function, e.g. put function footer() {} to make the footer blank.

by
thank you very much
...