Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
2.9k views
in Q2A Core by
I would like to remove   "Help get things started by asking a question" Where would I locate the code?

Is it possible to have other Admin accounts set-up, for example one person would look after 1 category and another for 2nd category?

Can the ReCaptcha display words be any clearer?

 

Regards

Pete

1 Answer

+1 vote
by

To resolve the first issue, change function qa_html_suggest_ask(...) in qa-app-format.php to just contain: return null;

You can have multiple admins, but cannot yet assign different permissions in different categories.

Recaptcha is an external system so I'm afraid it's outside Q2A's control.

by
You need to get rid of everything you pasted above which comes after the code I gave you.
by
Sorry, Im confused. I only showed what I have in part of the code. You can see that all I changed was,

function qa_html_suggest_ask($categoryid=null)
{
    return null;
}

Everything else is your standard code  4 lines ,not 16

Regards

Drachsi
by
The function continues after the comment! Please start again with the original code, and replace 16 lines of code with the 4 I provided.
by
OK, I removed all code, after the code you supplied until the next function. and then it work. Thanks for your support,

Have a great festive season

Regards

Pete
...