how do i change the webfm view title. currently it is "Web File Manager". I cannot find it in the module's code.
probably a noob question
| Comment | File | Size | Author |
|---|---|---|---|
| #1 | screener.png | 145.15 KB | ballerjones |
how do i change the webfm view title. currently it is "Web File Manager". I cannot find it in the module's code.
probably a noob question
| Comment | File | Size | Author |
|---|---|---|---|
| #1 | screener.png | 145.15 KB | ballerjones |
Comments
Comment #1
ballerjones commentedthis should be easy. there are only 2 instances of the phrase "Web File Manager" in the module's code. none of them affect the view's title. so how is that changed?
I have attached a screenshot in case I'm not explaining myself adequately.
thanks
Comment #2
ballerjones commentedalright, got it on my own
http://drupal.org/project/page_title
thanks anyway (though i didn't get a response).
Comment #3
gintass commentedHmm, you referred to "Page Title 2" module (http://drupal.org/project/page_title), but this module can only change value inside HTML title tag. In your initial request (and your png image) you asked about changing node title "Web File Manager" into something else. That is what I was looking for and I was able to do it by editing page.tpl.php:
In my page.tpl.php file (I was using "AD Blueprint" theme) I found this statement:
I replaced it with the following:
This way I could replace "Web File Manager" with "Files". This may not be the best way, but it worked.
Comment #4
ballerjones commentedthanks, you probably knew this, but all I had to do was rename its navigation link. Thanks for code-backed explanation.