Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+2 votes
486 views
in Q2A Core by
Why can't I find it in 1.6.2.

I do not intend to use this option for now, and like to disable it.
Q2A version: 1.6.2

1 Answer

0 votes
by

Comment out in qa-app-format.php:

    function qa_set_up_name_field(&$qa_content, &$fields, $inname, $fieldprefix='')
/*
    Set up $qa_content and add to $fields to allow the user to enter their name for a post if they are not logged in
    $inname is from previous submission/validation. Pass $fieldprefix to add a prefix to the form field name used.
*/
    {
        /*$fields['name']=array(
            'label' => qa_lang_html('question/anon_name_label'),
            'tags' => 'name="'.$fieldprefix.'name"',
            'value' => qa_html($inname),
        );*/

    }
 

by
I have added an admin option, see pull request: https://github.com/q2a/question2answer/pull/259
...