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

hi all, anybody know how to change the page title of these pages to custom ones..

"Questions" = Recent Questions

"Unanswered" = Recent questions with no answers

i want to change these titles in red with my custom ones..how can i do this?

Q2A version: 1.5

1 Answer

+1 vote
by
selected by
 
Best answer

 

I think you can modfy with custom language. 

Do following

Copy qa-lang-main.php from qa-include directory

place qa-lang-main.php into qa-lang/custom/ directory
 

Now find 'nav_qs' => 'Questions', aprox line#117

replace with 'nav_qs' => 'Recent Questions',

Find 'nav_unanswered' => 'Unanswered', on line#120

reokace wuth 'nav_unanswered' => 'Recent questions with no answwers'

---[ EDIT ]-----------------------------------------------------------------------------------

 

Ah! sorry I missunderstood. I thougth you want to modify nav title text. That also you can modify with the same file and technique

find 'recent_qs_title' => 'Recent questions' // line#155

'unanswered_qs_title' => 'Recent questions without answers', line#174

with your custom text

 
by
thanks man... i just need to know the file..had checked that file before, but dont know how i missed it.
Anyways great help buddy.
by
If the answer works for you than put little effort to select and vote it so other people can consider and can use it in future
...