MyBB Community Forums

Full Version: Digging Deeper into FTP
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm in my FTP server, changing lang files to suit certain parts of my design. In particular, right now, I'm editing

inc/languages/english/global.lang.php
at this point:
Code:
$l['welcome_back'] = "Welcome back, {1}.";

now in that {1}, it shows the username and a link to the user's profile when displayed on the actual index of the forum.
I need to access in that{1} so I ca remove the link part. It's conflicting with a code I've implemented, as the div it's in is already wrapped in a <a> tag, and the link in the name is cancelling out important functions of the code, rendering it useless.

How do I find this file, and how do I edit it?
the {1} is a placeholder that is populated by the code of the page the language variable is being used. then you need to edit that file instead
okay so...
in inc/languages/english/?
or somewhere else? How do I find where that is?
since the language file is global.lang.php, the bit you are looking for is in global.php. open that and search for welcome_back
That worked brilliantly c: thank you!