Status
Not open for further replies.

Sunka

Customer
with this last version, small avatars show near usernames in What's going on.
How to disable that? Iwant only usernames show in WGO.

Thank you ;)
 
There's currently no option to disable the avatars, sorry.

If it's really bothering you then you can remove the if block that starts with
PHP:
if ($vbulletin->options['avatarenabled'])
from /dbtech/infopanels/hooks/forumhome_loggedinuser.php but we're unable to provide support for changes or problems that occur as a result of changes like these :)
 


Sunka, you do not have permission to access this page. This could be due to one of several reasons:

  1. Your user account may not have sufficient privileges to access this page. Are you trying to edit someone else's post, access administrative features or some other privileged system?
  2. If you are trying to post, the administrator may have disabled your account, or it may be awaiting activation.




So, I will gues that that is similiar request what I asked before! ;)
 
i also agree there should be an option to turn on and off perhaps in new version....

really quick question ozzy i took out my avatars like you instructed but now by each user name is 2 coma's instead of one is there a way to fix and how

example

user name,,tester5,,

before it was just a single coma between u/n

thanks in advance

---------- Post added 17th February 2012 at 19:43 ---------- Previous post was 13th February 2012 at 12:13 ----------

i also agree there should be an option to turn on and off perhaps in new version....

really quick question ozzy i took out my avatars like you instructed but now by each user name is 2 coma's instead of one is there a way to fix and how

example

user name,,tester5,,

before it was just a single coma between u/n

thanks in advance


might there be a solution or are we stuck seeing double ,,
 
I am unable to get the double commas to show like you do. Ensure you have removed the following entire code from /dbtech/infopanels/hooks/forumhome_loggedinuser.php

PHP:
if ($vbulletin->options['avatarenabled'])
{
	if (!function_exists('fetch_avatar_url'))
	{
		// Get the avatar function
		require_once(DIR . '/includes/functions_user.php');
	}
	
	if ($userid == $vbulletin->userinfo['userid'])
	{
		if (!$vbulletin->userinfo['avatarurl'])
		{
			// Get avatar URL
			$avatarurl = fetch_userinfo($userid, 2, 0, 1);
			
			// Add avatar info to loggedin array (VB Y U FORCE ME TO DO THIS)
			$loggedin['avatarpath'] 		= $avatarurl['avatarpath'];
			$loggedin['hascustomavatar'] 	= $avatarurl['hascustomavatar'];
			$loggedin['avatardateline'] 	= $avatarurl['avatardateline'];
			$loggedin['avwidth'] 			= $avatarurl['avwidth'];
			$loggedin['avheight'] 			= $avatarurl['avheight'];
			$loggedin['avheight_thumb'] 	= $avatarurl['avheight_thumb'];
			$loggedin['avwidth_thumb'] 		= $avatarurl['avwidth_thumb'];
			$loggedin['filedata_thumb'] 	= $avatarurl['filedata_thumb'];
			$loggedin['avatarid'] 			= $vbulletin->userinfo['avatarid'];
			$loggedin['avatarrevision'] 	= $vbulletin->userinfo['avatarrevision'];
			
			// Yay it's available in vB3 after all :D
			fetch_avatar_from_userinfo($loggedin);
		}
		else
		{
			// Just in case...
			$loggedin['avatarurl'] = $vbulletin->userinfo['avatarurl'];
		}
	}
	else
	{
		// Yay it's available in vB3 after all :D
		fetch_avatar_from_userinfo($loggedin);
	}
	
	// Set musername
	$loggedin['musername'] = '<img border="0" src="' . $loggedin['avatarurl'] . '" alt="" width="20" height="20" /> ' . $loggedin['musername'];
}
 
Status
Not open for further replies.

Legacy InfoPanels

vBulletin 3.8.x vBulletin 4.x.x
Seller
DragonByte Technologies
Release date
Last update
Total downloads
869
Customer rating
0.00 star(s) 0 ratings
Back
Top