Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
377 views
in Q2A Core by

In qa-lang-users.php I wanted to add a line break, however, it does not seem to be possible using <br /> or \n

String:

'confirm_required' => 'To complete your registration, please click the confirmation link that has been emailed to you, or ^1request another^2.',

Is the possible at all?

1 Answer

0 votes
by
selected by
 
Best answer

Modify qa_lang_html(...) to: return qa_html(qa_lang($identifier), true);

This will do multiline conversion to HTML.

by
Where exactly i can find that line ?
...