I know this is a very small issue, and that some will probably not even care for it. But maybe it is easy to do.
Is it possible to move the little + sign for a friend, on the Who Is Online page to the left of the flag?
Like I show here:
Thanks!
I know this is a very small issue, and that some will probably not even care for it. But maybe it is easy to do.
Is it possible to move the little + sign for a friend, on the Who Is Online page to the left of the flag?
Like I show here:
Thanks!
ok I will check it on my test forum and If will be better - I will change it, if not - I will give you a quick fix to do it
Still waiting for my quick fix here....lol
hey, this "+" is added by mod or this is basic vB function? because I can't enabl it on my forum.
It is default vbulletin function Kamil. But you only see it on the Who Is Online page. If someone is on your friends list you will see the + sign next to his username on the WIO page. Like here on this site. If I am on the WIO page, I see the + sign next to your name Kamil. (If we both are online of course) As you are on my friends list here.
And here is a screen from this site:
![]()
I cant find the place in vB code which is responsible to adding "+". I made a request on vBulletin forum
And of course still looking for solution, It will be done, but I can't find this place yet![]()
hello,
I have a solution for you (tested). please test it and confirm that it is OK for you:
1. go to admincp->Plugins & Products->Plugin Manager
2. find vBET plugin in hook online_bit_complete (name: Add default language info into Who's online section)
3. in this plugin find:
4. and replace with:PHP Code:
$userinfo['musername'] .= '<img style="margin-left: 10px; text-decoration: none" class="vbet-flag vbet-'.$userinfo['vbet_def_lang'].'" width="16" height="11" src="http://www.vbenterprisetranslator.com/forum/images/vbet/flags/clear.gif" alt="'.$vbet_lang_name.'" title="'.$vbet_lang_name.'" border="0"/>';
5. save pluginPHP Code:
if($userinfo['buddy']){
$userinfo['musername'] .= ' +<img style="margin-left: 10px; text-decoration: none" class="vbet-flag vbet-'.$userinfo['vbet_def_lang'].'" width="16" height="11" src="http://www.vbenterprisetranslator.com/forum/images/vbet/flags/clear.gif" alt="'.$vbet_lang_name.'" title="'.$vbet_lang_name.'" border="0"/>';
$userinfo['buddy'] = false;
}
else
{
$userinfo['musername'] .= '<img style="margin-left: 10px; text-decoration: none" class="vbet-flag vbet-'.$userinfo['vbet_def_lang'].'" width="16" height="11" src="http://www.vbenterprisetranslator.com/forum/images/vbet/flags/clear.gif" alt="'.$vbet_lang_name.'" title="'.$vbet_lang_name.'" border="0"/>';
}
6. test it
7 Confirm here![]()
Last edited by kamilkurczak; 27-05-11 at 10:14.
Unfortunately that did not work. (Well it did move the + sign, so that worked!)
This, with plugin changed:
This with original plugin:
The changed plugin seems to remove all flags from members not on my friends list. This is not what I requested. Just to move the little + sign. This you managed, but can we keep the flags for everyone?
Thanks Kamil!!
you are right - check now my solution from previous post !![]()