PDA

View Full Version : vBulletin 3 Request - Changing FORUMHOME


Alice
04-01-2017, 04:05 PM
Hello,

My issue today is with changing the forumhome to be like how vBulletin in v2.3.x. The following is the code I have in the FORUMHOME template:


<b>$bbuserinfo[username]</b> - You have <a style="text-decoration:none" href="private.php$session[sessionurl_q]">$vbphrase[unread_x_nav_compiled] message(s)</a> and <a style="text-decoration:none" href="usercp.php$session[sessionurl_q]">$notifications_total note(s)</a> since your last visit.

<br />(You have $vbphrase[unread_x_nav_compiled] message(s) and <phrase 1="$vbphrase[unread_x_nav_compiled]" 2="$vbphrase[total_x_nav_compiled]" 3="$session[sessionurl_q]">$vbphrase[private_messages_nav]</phrase> message(s) in all your folders.)


I cannot find the necessary phrases anywhere, so I'm a little confused. Any help that anyone can offer, would be greatly appreciated.

Thanks,

--------------- Added 1491070159 at 1491070159 ---------------

This is what it looks like on my forum:

https://vborg.vbsupport.ru/external/2017/04/1.png?1

Lynne
04-01-2017, 05:55 PM
What exactly are you trying to do? Those phrases are actually definited in the global.php file:

$vbphrase['unread_x_nav_compiled'] = construct_phrase($vbphrase['unread_x_nav'], $pmunread_html);
$vbphrase['total_x_nav_compiled'] = construct_phrase($vbphrase['total_x_nav'], $vbulletin->userinfo['pmtotal']);

Alice
04-01-2017, 05:58 PM
If you look above, the code has it saying Unread then the number, then messages. It should be the other way around, but now that I know that the definition is hard-coded, thats where I need to modify. Thanks!!

--------------- Added 1491106010 at 1491106010 ---------------

What exactly are you trying to do? Those phrases are actually definited in the global.php file:

$vbphrase['unread_x_nav_compiled'] = construct_phrase($vbphrase['unread_x_nav'], $pmunread_html);
$vbphrase['total_x_nav_compiled'] = construct_phrase($vbphrase['total_x_nav'], $vbulletin->userinfo['pmtotal']);

Where would it define the actual phrase? Because all it says in the global.php file is it mentions it by the phrase name:


$vbphrase['total_x_nav_compiled'] = construct_phrase($vbphrase['total_x_nav'], $vbulletin->userinfo['pmtotal']);
$vbphrase['unread_x_nav_compiled'] = construct_phrase($vbphrase['unread_x_nav'], $pmunread_html);


Where does it actually define the phrase?

Thank you,

--------------- Added 1491152036 at 1491152036 ---------------

I'm still not able to figure this out. As far as I can tell, the global.php file does not actually define the phrase, it uses the phrase in the code. What I need to know is how to change the text that the phrase represents??

--------------- Added 1491152247 at 1491152247 ---------------

This is the code in my forumhome_pmloggedin template...


<b>$bbuserinfo[username]</b> - You have <a style="text-decoration:none" href="private.php">$vbphrase[unread_x_nav_compiled] new message(s)</a> and <a style="text-decoration:none" href="usercp.php$session[sessionurl_q]">$notifications_total new note(s)</a> since your last visit.


<br />(You have $vbphrase[unread_x_nav_compiled] unread messages and a total of $vbphrase[total_x_nav_compiled] messages in all your folders.)
</td>


Thank you,

--------------- Added 1491161533 at 1491161533 ---------------

Okay this actually had nothing to do with the compiled phrases. The compiled phrases is what defined $vbphrase[unread_x_nav] and that is defined in the phrase manager. I got it all fixed! :)