MyBB Community Forums

Full Version: How to change "View New Posts" to "New Posts"?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I am referring to the links below:

http://gyazo.com/069e071b57324f5833eb0b2...1356557431

How do I remove the "View" from New Posts and Today's Posts?

This is the code for them, in my header_welcomeblock_member template.

<li><a href="{$mybb->settings['bburl']}/search.php?action=getnew">{$lang->welcome_newposts}</a></li>
<li><a href="{$mybb->settings['bburl']}/search.php?action=getdaily">{$lang->welcome_todaysposts}</a></li>
Go to you Cpanel in file manager and in inc/languages/english find file global.lang.php

Search there for "View New Posts" and "View Today's Posts". (They are around 30 and 31 line)

For example:

$l['welcome_newposts'] = "View New Posts"; (That's how it looks now)

After edit:

$l['welcome_newposts'] = "New Posts";
You could just use the language editor within the Admin CP.
(2012-12-26, 10:09 PM)brad-t Wrote: [ -> ]You could just use the language editor within the Admin CP.

Yeah, i totally forgot Smile Thanks.