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

Under the captcha texte wehen not logged in there is a text

"To avoid this verification in future, please log in or register"

Where can I change this text?

Thanks and kind regards

Matthias

1 Answer

0 votes
by

This would be the exact line:

https://github.com/q2a/question2answer/blob/master/qa-include/qa-lang-misc.php#L34

Of course, if you're using your own language files you will need to change that same file but in the qa-lang directory.

Alternatively, just create a custom directory under qa-lang and copy paste that file and removed the unneeded translations. EG, create file qa-lang/custom/qa-lang-misc.php with the content:

<?php
	return array(
		'captcha_login_fix' => 'To avoid this verification in future, please ^1log in^2 or ^3register^4.',
	);

...