Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
360 views
in Q2A Core by
Hi All,

Within my admin panel I have created two new pages (terms of use and privacy policy) which display in the footer

When i browse to them it says "page not found"

What else do i need to do to create the page? and how do i add content?

Thanks in advance

1 Answer

0 votes
by
 
Best answer
Hi,

please have a look at <http://www.question2answer.org/qa/987>

this is very much staight forward :)

hint: instead of including the html content text directly into the file qa-theme.php, you could store it in an external file in the same folder and use

require_once 'privacy_policy.php';

this should speed up your q2a cause the texts are not loaded again and again at every page-request...
...