Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
293 views
in Q2A Core by

I was trying to change the privacy message that's displayed when you register. It should be the default_privacy field. I copied qa-lang-options.php to my language folder, en-GB and put this:

return array(
  'default_privacy' => 'NEW PRIVACY',
);

However, this didn't override it. My language in the settings is en-GB (and some other lang files are overriden just fine.

But then I changed the original value in qa-include/qa-lang-options.php and it still doesn't change! What is going on here?

1 Answer

+2 votes
by
 
Best answer

That item in the language files is the default, i.e. what is used for your admin settings the first time you display them. You can change the setting itself in the 'Emails' section of the admin panel.

by
Didn't spot that, thanks!
...