Hi there,
Some users, are creating profile in full uppercase like this : "ALMANACH" to connect. Is there any way to put titles in users profiles like this => "Almanach"
Thanks, I can't find how!
You can change for already registered user by adding this two lines in qa-include/qa-page-user.php
on line 35 find belo code at line #35
$handle=qa_request_part(1);
Add below line after that
$handle = str_replace($handle, strtolower($handle), $handle); $handle = str_replace($handle, ucfirst($handle), $handle);
This will replace all existing users name with First letter uppercase and all other in lowercase.. Final code will be like this
$handle=qa_request_part(1); $handle = str_replace($handle, strtolower($handle), $handle); //this line to add $handle = str_replace($handle, ucfirst($handle), $handle); // this line to add
Welcome to the Q&A site for Question2Answer.
If you have a question about Q2A, please ask here, in English.
To report a bug, please create a new issue on Github or ask a question here with the bug tag.
If you just want to try Q2A, please use the demo site.