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

I'd like to change the text each of the navigation options:

 

 

So like change "Questions" to read "Topics" instead, how can I do this?

 

1 Answer

+2 votes
by
edited by

Follow these steps:

  1. Create a folder named custom under qa-lang
  2. Create a file named qa-lang-main.php
  3. Add this content to the file:
  4. <?php
    return array(
            'nav_activity' => 'All Activity',
            'nav_admin' => 'Admin',
            ... etc ...
    );
  5. In order to know what 'nav_*' to add to the file use the qa-include/qa-lang-main.php file as a reference and pay attention to all the keys starting with nav_. Just add the ones you want to change using the same format as in my example
     
...