Does anybody know where I can add this
xmlns:fb="http://www.facebook.com/2008/fbml"
to the <html> tag after the doctype declaration ? I cannot find the function!
Thanks, best regards
It's in the function html(), so override that in your theme:
function html() { $this->output( '<HTML xmlns:fb="http://www.facebook.com/2008/fbml">', '<!-- Powered by Question2Answer - http://www.question2answer.org/ -->' ); $this->head(); $this->body(); $this->output( '<!-- Powered by Question2Answer - http://www.question2answer.org/ -->', '</HTML>' ); }
EDIT: oh looks like you're using v1.3. In that case the code is not in the theme, it's somewhere like qa-base.php or qa-page.php.
Welcome to the Q&A site for Question2Answer.
If you have a question about Q2A, please ask here, in English.
To report a bug, please create a new issue on Github or ask a question here with the bug tag.
If you just want to try Q2A, please use the demo site.