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

Does anyone know how to Transfrom the Text Titles to begin with capital letters instead of lower cases.

for example:

Recent questions tagged plugin

To look like

Recent Questions Tagged Plugin

I need it to transform the window text from the lower cases shown in the pic above to show the first letters capitilized.

Thanks

1 Answer

+1 vote
by
selected by
 
Best answer

You can achieve this by modifying head_title() .. place this code in your theme file

function head_title()
{
$pagetitle=strlen($this->request) ? strip_tags(@$this->content['title']) : '';
$headtitle=(strlen($pagetitle) ? ($pagetitle.' - ') : '').$this->content['site_title'];
 
$this->output('<TITLE>'.ucwords(strtolower($headtitle)).'</TITLE>');
}

 

by
Thanks for answering. Do you mean in the css file? Or make a file and paste this code into it in the theme folder? Sorry I'm not very technical.
by
not is css but qa-theme.php file.. I have updated code so please use new code and not previous code.
by
Thank you so much it works perfectly!
by
Works perfectly, thank you
by
Hey jatin.soni I was wondering if you could help with this when ever someone puts ", / or - first it acts as capital letter.

Example 1: It comes out as "test" when I want it to show as "Test"
Example2: it comes out like Help/advice instead of Help/Advice
by
You may try to use preg_match()
by
Where would I insert preg_match
...