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

Hi there,

Some users, are asking question in full uppercase like this : "MY QUESTION TITLE". Is there any way to put titles everywhere  like this => "My Question Title"

Thanks, I can't find how!

by
Same problem!!

2 Answers

–2 votes
by
if you were a user how would feel if someone started editing your stuff ?
by
reshown by
Your answer is not an answer but a comment.
The goal is to prevent that BEFORE, when question are creating it's automaticaly change Any idea?
0 votes
by

http://www.php.net/manual/en/function.ucfirst.php

$bar = 'HELLO WORLD!';
$bar = ucfirst($bar);             // HELLO WORLD!
$bar = ucfirst(strtolower($bar)); // Hello world!

http://www.php.net/manual/en/function.ucwords.php

$bar = 'HELLO WORLD!';
$bar = ucwords($bar);             // HELLO WORLD!
$bar = ucwords(strtolower($bar)); // Hello World!

I have not used these function.

And, http://www.question2answer.org/modules.php?module=filter

by
edited by
Hello Sama, thanks I know this function, but it's work perfecly!
...