Focker 💖 Chevereto Fan Jul 31, 2017 #1 I'm having trouble finding where to change the "About" tab from the drop down menu. I'd like to rename it to something like "Info". Can someone tell me where to do this? Thanks, Focker
I'm having trouble finding where to change the "About" tab from the drop down menu. I'd like to rename it to something like "Info". Can someone tell me where to do this? Thanks, Focker
Rodolfo 👑 Chevereto Godlike Chevereto Staff Administrator Jul 31, 2017 #2 You mean the top-right menu? I'm not sure what "About" are you talking about.
Focker 💖 Chevereto Fan Jul 31, 2017 #3 Rodolfo said: You mean the top-right menu? Click to expand... That's the one. Sorry...I forgot there was an "About" in the Album/Image menu. I should have mentioned it was the one in the Header.
Rodolfo said: You mean the top-right menu? Click to expand... That's the one. Sorry...I forgot there was an "About" in the Album/Image menu. I should have mentioned it was the one in the Header.
Rodolfo 👑 Chevereto Godlike Chevereto Staff Administrator Jul 31, 2017 #4 That "about" is the page name from Dashboard > Settings > Pages
Focker 💖 Chevereto Fan Jul 31, 2017 #5 Rodolfo said: That "about" is the page name from Dashboard > Settings > Pages Click to expand... Yes that is the one I want to change the name of. I can't find it in the script, I want to change the word "About" to "Info" or "Read First".
Rodolfo said: That "about" is the page name from Dashboard > Settings > Pages Click to expand... Yes that is the one I want to change the name of. I can't find it in the script, I want to change the word "About" to "Info" or "Read First".
Rodolfo 👑 Chevereto Godlike Chevereto Staff Administrator Jul 31, 2017 #6 That one is at app/themes/Peafowl/header.php PHP: <span class="text phone-hide phablet-hide"><?php _se('About'); ?></span> _se is a translation placeholder + echo, so any string inside l10n can be used here. To use a non-translated string simply do something like this (direct text): PHP: <span class="text phone-hide phablet-hide">Read First</span> Hope it helps.
That one is at app/themes/Peafowl/header.php PHP: <span class="text phone-hide phablet-hide"><?php _se('About'); ?></span> _se is a translation placeholder + echo, so any string inside l10n can be used here. To use a non-translated string simply do something like this (direct text): PHP: <span class="text phone-hide phablet-hide">Read First</span> Hope it helps.
Focker 💖 Chevereto Fan Jul 31, 2017 #7 Rodolfo said: Hope it helps. Click to expand... Thank you...You nailed it! I must have looked at that a 100 times, but just couldn't see it. 😕
Rodolfo said: Hope it helps. Click to expand... Thank you...You nailed it! I must have looked at that a 100 times, but just couldn't see it. 😕
Rodolfo 👑 Chevereto Godlike Chevereto Staff Administrator Jul 31, 2017 #8 Is tricky, but when you realize how it works is dead easy.