Change 'real name' to 'display name' text Posted by GothicWizard 19 Feb 2016 07:25 GMT-0000 posts: 23 When someone is registering I want to change the text that says 'real name' to 'display name' I looked in the register.php file but that text is not there. Could someone point me to where it is, so I can change it? Thank you!
Posted by Tom Jarvis 19 Feb 2016 07:58 GMT-0000 posts: 214 Assuming you are using en, edit the lang/en/language.php file and un comment the line with the text you want to change (there are several versions of "real name" but none of them have both words start with lower case letters as you specified) and then change the value assigned and save the file. To change "Real name" find this line: // "Real name" => "Real name", and change it to: "Real name" => "Display name", (get rid of the // that makes it a comment line) Don't forget to clear cache after making the change.
Posted by GothicWizard 19 Feb 2016 10:16 GMT-0000 posts: 23 I opened the file you stated and only thing in there is a few lines of misc php code. There is nothing like what you suggest in that file.
Posted by Rick Sapir / Tiki for Smarties 19 Feb 2016 17:11 GMT-0000 posts: 3665 Make sure you're looking at the correct file: ../ lang / en / language.php As you can see here, https://sourceforge.net/p/tikiwiki/code/HEAD/tree/trunk/lang/en/language.php , the current (TRUNK) version has +17,000 lines. HTH, - Rick | My Tiki Blog | My Tiki UserPage Why be a dummy? Get smarty! TikiForSmarties.com Tiki for Smarties, your source for the best (and only) Tiki books, guides, and tutorials.
Posted by GothicWizard 20 Feb 2016 06:21 GMT-0000 posts: 23 The file in question was actually in uk-en folder. Found the line and changed it, thank you!