vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.5 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=113)
-   -   Friends and/or Buddies on Profile (https://vborg.vbsupport.ru/showthread.php?t=105302)

Lissa 03-20-2006 11:03 AM

Quote:

Originally Posted by jj
As I use
Code:

$vbulletin->options['bburl']
for the links, you should be able to change this in your ACP under the vb setting "Homepage title / URL...". I don't really know the excact english description for it, because our vb is a german one.

Thanks so much, that was easy ;)

Dsyn11 03-26-2006 05:32 AM

For some reason, even though I set the width and height to 0/0 it still shows up 32x32. I want actual size, not a fixed size. Why is it not updating?

jj 03-27-2006 10:00 AM

Quote:

Originally Posted by Dsyn11
For some reason, even though I set the width and height to 0/0 it still shows up 32x32. I want actual size, not a fixed size. Why is it not updating?

Hello, I cannot recreate the error on my version. Are you sure you set both entries to 0? Have you tried reinstalling the product by allowing overwrite?

Dsyn11 03-30-2006 12:50 AM

reinstalling did the trick! Great hack!

thumbsucker 03-31-2006 09:51 AM

I added this and the Separate Friends Page product and it works great.

On the separate friends page though, if the user does not have a profile pic, I get a broken link image.

Any way to show a "No profile pic" gif or something of that sort instead?

Also noticed a BUG where a blank page is displayed if I try to go to a Separate Friends Page of a user when browsing as a GUEST. Shouldn't a "You must be a registered user to view this page." and login area show up instead?

wild5tylez 04-03-2006 01:21 AM

i did what the intall said but how come the buddy list only shows up and not the friendz. can anyone help??? here is the screenshot..

jj 04-03-2006 11:35 AM

Quote:

Originally Posted by wild5tylez
i did what the intall said but how come the buddy list only shows up and not the friendz. can anyone help??? here is the screenshot..

The friends list only shows up if you got some. Make sure one of your buddies has added you to his buddylist, too.

jj 04-03-2006 11:36 AM

Quote:

Originally Posted by thumbsucker
On the separate friends page though, if the user does not have a profile pic, I get a broken link image.

Any way to show a "No profile pic" gif or something of that sort instead?

Also noticed a BUG where a blank page is displayed if I try to go to a Separate Friends Page of a user when browsing as a GUEST. Shouldn't a "You must be a registered user to view this page." and login area show up instead?

Well seems I have to correct some things there. I'll do as soon I get some time and send the update to Cloud-Warrior.

wild5tylez 04-04-2006 02:10 PM

Quote:

Originally Posted by jj
The friends list only shows up if you got some. Make sure one of your buddies has added you to his buddylist, too.

haha ya you were right i was trippin this whole time.. thanks for the help..

criscokid 04-15-2006 10:44 AM

Quote:

Originally Posted by vprp
is there any way to set it so that when someone registers, the admin of the forum is automatically on the new members friends list?

If a new user signs up and fills in the referrer field how about automatically adding that person to the friends list?

This is a FANTSTIC mod!! Thank you!!

jarcher 04-16-2006 01:25 AM

ok. . .I am not getting any avatars in the profiles
I looked into the storage of them and I got:

Quote:

Images are currently being served from the database
looked for it in the manual. .
what am I looking for exactly

stumped, thats what I am. .

Ragnarok 04-17-2006 04:59 PM

I've got an old, old version of the plugin, most likely the first release.

Anyway, I've done some heavy modifications to the plugin, and I've hit a wall. Not knowing a thing about the code I'm trying to edit, I basically snipped code until things broke, and then reverted. :P

I've got this:

PHP Code:

// Setup

$FFsetup = Array(

// these are the texts which are displayed

'friends' => $userinfo['username']."'s Friends",

// set these to TRUE or FALSE
// if you set fetch_avatar true you will get avatar picture, else you get profile picture if present

'show_counts' => false,
'fetch_avatar' => true

);

// End of setup

global $vbulletin;

$whichlist "buddylist";
$whichlistshort ereg_replace("list"""$whichlist);

// (Dis)Likes

$outcounter 0;
$outuserids = array();
$outuserids explode(' 'trim($userinfo[$whichlist]));
if (
trim($userinfo[$whichlist]) != "")


// (Dis)Liked By

$inoutcounter 0;
$incounter 0;
$inusersquery 
    
"SELECT ".TABLE_PREFIX."user.username,".TABLE_PREFIX."user.userid,".TABLE_PREFIX."usertextfield.".$whichlist." FROM
    "
.TABLE_PREFIX."user,".TABLE_PREFIX."usertextfield WHERE
    "
.TABLE_PREFIX."user.userid = ".TABLE_PREFIX."usertextfield.userid AND
    FIND_IN_SET('"
.$userinfo[userid]."', REPLACE(".TABLE_PREFIX."usertextfield.".$whichlist.", ' ', ',')) > 0
    ORDER BY "
.TABLE_PREFIX."user.username";

$inusers mysql_query($inusersquery);
while (
$inuser mysql_fetch_array($inusers))
{
    
$incounter++;
    
// Bi-Directional (Dis)Like
    
if (in_array($inuser['userid'], $outuserids)) {
        if (
$vbulletin->userinfo['userid'] == $vbulletin->GPC['userid'])

        
$outuserids2 explode(' 'trim($inuser[$whichlist]));
        
$inuserids2 = array();
        
$inuserids1 mysql_query("SELECT userid FROM ".TABLE_PREFIX."usertextfield WHERE
        FIND_IN_SET('"
.$inuser['userid']."', REPLACE(".$whichlist.", ' ', ',')) > 0");
        while (
$inuserid1 mysql_fetch_array($inuserids1))
        {
            
$inuserids2[] = $inuserid1[userid];
        }
        
$inoutuserids2 array_intersect($outuserids2$inuserids2);
        
$inoutcounter2 count($inoutuserids2);
        

            
$avatar_url fetch_avatar_url($inuser['userid']);
            
$FFpicture $avatar_url[0];
        
        if (
$FFpicture == ""$FFpicture "clear.gif";
        
    
    
$inoutuserlist .= "<td class=\"smallfont\" align=\"center\" width=\"100\">";
    
$inoutuserlist .= "<a style=\"text-decoration: none;\" href=\"".$vbulletin->options['bburl']."/member.php?u=$inuser[userid]\"/>";
    
$inoutuserlist .= "<img width=\"56px\" height=\"56px\" border=\"0px\" src=\"".$FFpicture."\"></a><br />";
    
$inoutuserlist .= "$inuser[username]'s...<br />";
    
$inoutuserlist .= "<a href=\"".$vbulletin->options['bburl']."/member.php?u=$inuser[userid]\"/>";
    
$inoutuserlist .= "Profile</a>|";
    
$inoutuserlist .= "<a href=\"".$vbulletin->options['bburl']."/friends.php?u=$inuser[userid]\"/>";
    
$inoutuserlist .= "Friends</a>($inoutcounter2)";
    
$inoutuserlist .= "</td>";
    
$inoutcounter++;


    }
    else
    {
        if (
$vbulletin->userinfo['userid'] == $vbulletin->GPC['userid'])
        {
            
$inuserlist .= "<a class=\"smallfont\" href=\"".$vbulletin->options['bburl']."/profile.php?do=addlist&userlist=$whichlistshort&u=$inuser[userid]\">[+]</a>&nbsp;&nbsp;";
        }
    }
    
$inuserlist .= "<a class=\"smallfont\" href=\"".$vbulletin->options['bburl']."/member.php?u=$inuser[userid]\"/>$inuser[username]</a>";
    
$inuserlist .= "<br>";
}

$FRIENDSFOES .= "<table class=\"tborder\" cellpadding=\"$stylevar[cellpadding]\" cellspacing=\"$stylevar[cellspacing]\" border=\"0\" width=\"100%\" align=\"center\">";
$FRIENDSFOES .= "<tr>";
$FRIENDSFOES .= "<td class=\"tcat\" colspan=\"2\">".$FFsetup['friends'].( ($FFsetup['show_counts']) ? " (".$inoutcounter.")" "" )." </td>";
$FRIENDSFOES .= "</tr><tr>";
$FRIENDSFOES .= "<td class=\"alt1\" colspan=\"2\">";
$FRIENDSFOES .= "  <table>";
$FRIENDSFOES .= "  <tr>";
$FRIENDSFOES .= $inoutuserlist;
$FRIENDSFOES .= "  </tr>";
$FRIENDSFOES .= "  </table>";
$FRIENDSFOES .= "</tr></table>"

Now, when I view a member's profile, I get the following error:

Code:

Warning: array_intersect(): Argument #1 is not an array in /member.php(651) : eval()'d code on line 59
Oddly it works without problem when I view my own profile, but if I view any other member's, it breaks.

Also, I feel stupid asking this, but I don't know how to make a line break for it, so it breaks tables on smaller resolutions with larger numbers of friends. Would I be able to make it automatically break to the next line after it fills the first, rather than continuing on in the same line, breaking the tables?

MorrisMcD 04-18-2006 02:39 PM

I get this when adding a user..

Quote:

Warning: array_merge() [function.array-merge]: Argument #1 is not an array in \profile.php(727) : eval()'d code on line 35
It works though other than having that error

MorrisMcD 04-18-2006 02:43 PM

Quote:

Originally Posted by MorrisMcD
I get this when adding a user..



It works though other than having that error

Actually Sorry.. Its because of this hack that its happening..

https://vborg.vbsupport.ru/showthrea...=104872&page=6

criscokid 04-18-2006 03:44 PM

People like being part of a community or group and thats what forum sites are all about... and forum owners want to see the number of registered users grow on their sites.

Suggestion: At the bottom of the block that shows freinds avatars have a 'call to action' link that encourages and enables people to send an invite to friends to become a part of the community. When those people join they automatically get add to that persons friends list.

criscokid 04-18-2006 09:36 PM

Another suggestion: Include a 'supporters mod' ie: allow people to support other's by writing a comment about them and give them a rating. Then underneath the freinds block list the last five comments that people have left (along with their avatar and rating) and below that do a 'this user supports' section showing the last 5 comments. At the end of the list include a link to show all of the comments.

I've seen this implimented really well on another site - I'll add a screenshot to this posting tomorrow.

jj 04-19-2006 10:28 AM

Quote:

Originally Posted by MorrisMcD
I get this when adding a user..

Quote:

Warning: array_merge() [function.array-merge]: Argument #1 is not an array in \profile.php(727) : eval()'d code on line 35
It works though other than having that error

I don't use the function array-merge() in my code, so it can't be my code ;)

@criscokid: some nice suggestions, I'll write em down and wait for your screenshot :)

jj 04-19-2006 10:35 AM

Quote:

Originally Posted by Ragnarok
I've got an old, old version of the plugin, most likely the first release.

Anyway, I've done some heavy modifications to the plugin, and I've hit a wall. Not knowing a thing about the code I'm trying to edit, I basically snipped code until things broke, and then reverted. :P

I've got this:

PHP Code:

// Setup

$FFsetup = Array(

// these are the texts which are displayed

'friends' => $userinfo['username']."'s Friends",

// set these to TRUE or FALSE
// if you set fetch_avatar true you will get avatar picture, else you get profile picture if present

'show_counts' => false,
'fetch_avatar' => true

);

// End of setup

global $vbulletin;

$whichlist "buddylist";
$whichlistshort ereg_replace("list"""$whichlist);

// (Dis)Likes

$outcounter 0;
$outuserids = array();
$outuserids explode(' 'trim($userinfo[$whichlist]));
if (
trim($userinfo[$whichlist]) != "")


// (Dis)Liked By

$inoutcounter 0;
$incounter 0;
$inusersquery 
    
"SELECT ".TABLE_PREFIX."user.username,".TABLE_PREFIX."user.userid,".TABLE_PREFIX."usertextfield.".$whichlist." FROM
    "
.TABLE_PREFIX."user,".TABLE_PREFIX."usertextfield WHERE
    "
.TABLE_PREFIX."user.userid = ".TABLE_PREFIX."usertextfield.userid AND
    FIND_IN_SET('"
.$userinfo[userid]."', REPLACE(".TABLE_PREFIX."usertextfield.".$whichlist.", ' ', ',')) > 0
    ORDER BY "
.TABLE_PREFIX."user.username";

$inusers mysql_query($inusersquery);
while (
$inuser mysql_fetch_array($inusers))
{
    
$incounter++;
    
// Bi-Directional (Dis)Like
    
if (in_array($inuser['userid'], $outuserids)) {
        if (
$vbulletin->userinfo['userid'] == $vbulletin->GPC['userid'])

        
$outuserids2 explode(' 'trim($inuser[$whichlist]));
        
$inuserids2 = array();
        
$inuserids1 mysql_query("SELECT userid FROM ".TABLE_PREFIX."usertextfield WHERE
        FIND_IN_SET('"
.$inuser['userid']."', REPLACE(".$whichlist.", ' ', ',')) > 0");
        while (
$inuserid1 mysql_fetch_array($inuserids1))
        {
            
$inuserids2[] = $inuserid1[userid];
        }
        
$inoutuserids2 array_intersect($outuserids2$inuserids2);
        
$inoutcounter2 count($inoutuserids2);
        

            
$avatar_url fetch_avatar_url($inuser['userid']);
            
$FFpicture $avatar_url[0];
        
        if (
$FFpicture == ""$FFpicture "clear.gif";
        
    
    
$inoutuserlist .= "<td class=\"smallfont\" align=\"center\" width=\"100\">";
    
$inoutuserlist .= "<a style=\"text-decoration: none;\" href=\"".$vbulletin->options['bburl']."/member.php?u=$inuser[userid]\"/>";
    
$inoutuserlist .= "<img width=\"56px\" height=\"56px\" border=\"0px\" src=\"".$FFpicture."\"></a><br />";
    
$inoutuserlist .= "$inuser[username]'s...<br />";
    
$inoutuserlist .= "<a href=\"".$vbulletin->options['bburl']."/member.php?u=$inuser[userid]\"/>";
    
$inoutuserlist .= "Profile</a>|";
    
$inoutuserlist .= "<a href=\"".$vbulletin->options['bburl']."/friends.php?u=$inuser[userid]\"/>";
    
$inoutuserlist .= "Friends</a>($inoutcounter2)";
    
$inoutuserlist .= "</td>";
    
$inoutcounter++;


    }
    else
    {
        if (
$vbulletin->userinfo['userid'] == $vbulletin->GPC['userid'])
        {
            
$inuserlist .= "<a class=\"smallfont\" href=\"".$vbulletin->options['bburl']."/profile.php?do=addlist&userlist=$whichlistshort&u=$inuser[userid]\">[+]</a>&nbsp;&nbsp;";
        }
    }
    
$inuserlist .= "<a class=\"smallfont\" href=\"".$vbulletin->options['bburl']."/member.php?u=$inuser[userid]\"/>$inuser[username]</a>";
    
$inuserlist .= "<br>";
}

$FRIENDSFOES .= "<table class=\"tborder\" cellpadding=\"$stylevar[cellpadding]\" cellspacing=\"$stylevar[cellspacing]\" border=\"0\" width=\"100%\" align=\"center\">";
$FRIENDSFOES .= "<tr>";
$FRIENDSFOES .= "<td class=\"tcat\" colspan=\"2\">".$FFsetup['friends'].( ($FFsetup['show_counts']) ? " (".$inoutcounter.")" "" )." </td>";
$FRIENDSFOES .= "</tr><tr>";
$FRIENDSFOES .= "<td class=\"alt1\" colspan=\"2\">";
$FRIENDSFOES .= "  <table>";
$FRIENDSFOES .= "  <tr>";
$FRIENDSFOES .= $inoutuserlist;
$FRIENDSFOES .= "  </tr>";
$FRIENDSFOES .= "  </table>";
$FRIENDSFOES .= "</tr></table>"

Now, when I view a member's profile, I get the following error:

Code:

Warning: array_intersect(): Argument #1 is not an array in /member.php(651) : eval()'d code on line 59
Oddly it works without problem when I view my own profile, but if I view any other member's, it breaks.

Also, I feel stupid asking this, but I don't know how to make a line break for it, so it breaks tables on smaller resolutions with larger numbers of friends. Would I be able to make it automatically break to the next line after it fills the first, rather than continuing on in the same line, breaking the tables?


You're using a very old version of the plugin, seems to be the first one I ever did. You should switch do the actual product/plugin which will give you some setup options in your acp. I really don't see your "heavy modification" there. Should be no problem for you to edit the current plugin to your needs.

You can't set the number of friends per row by resolutions. There's a setting in the acp options to limit the number, which is being used for any resolution.

jj 04-19-2006 10:37 AM

Quote:

Originally Posted by jarcher
ok. . .I am not getting any avatars in the profiles
I looked into the storage of them and I got:



looked for it in the manual. .
what am I looking for exactly

stumped, thats what I am. .

Hm? I'm working with database storage, too. And my avatars show up pretty nice. Maybe you've got some errors in your board setup?

criscokid 04-19-2006 11:37 AM

Quote:

Originally Posted by jj
@criscokid: some nice suggestions, I'll write em down and wait for your screenshot :)

Here's a thumbnail as promised.

Another suggestion: When you click on a person's profile link from the 'friends block', make the profile you want to view open in a new window.

MorrisMcD 04-20-2006 01:29 PM

Quote:

Originally Posted by jj
I don't use the function array-merge() in my code, so it can't be my code ;)

Yea.. My bad.. I had this hack mixed up with the auto pm when adding a user by antivirus

Ragnarok 04-20-2006 09:28 PM

Quote:

Originally Posted by jj
You're using a very old version of the plugin, seems to be the first one I ever did. You should switch do the actual product/plugin which will give you some setup options in your acp. I really don't see your "heavy modification" there. Should be no problem for you to edit the current plugin to your needs.

You can't set the number of friends per row by resolutions. There's a setting in the acp options to limit the number, which is being used for any resolution.

All I really did was chop out a lot of code and change the html to my preference. :P

Anyway, switched and working pretty well (though I now hate working with phrases :P)

Is there a function to display the counts of friends for the linked users as in Cloud-Warrior's hack that I'm missing? That was actually my prime reason for asking here for help in the first case, is that it broke from the original plugin.

criscokid 04-25-2006 02:47 PM

I've implemented a URL rewrite rule so my users can have domain.com/profiles/username (instead of it being /forums/username). This works fine except the user's avatar and photo doesn't show up because it's using a relative URL domain.com/users/image.php?u=2&dateline=1142257186 instead of a specific URL of domain.com/forums/image.php?u=2&dateline=1142257186

How do I set the avatar and photo URLs to be specific and always use domain.com/forums/ in the URL?

bada_bing 05-01-2006 04:37 PM

I am using this hack and so far workds great. the question I have is that I choose to display the profile pic instead of the avatar. No doing so if the member does NOT have a profile pic it show nothing but the members name... NOW if I revert and choose to use the avator and the members does not have an avatar then it will show an image saying members does not have an avatar.

So my question is HOW can I have it so that if a member does not have a profile pic it will display an defualt image as it does for the avatars?

bada_bing 05-01-2006 06:53 PM

Anyone ???

bada_bing 05-02-2006 04:21 PM

Can someone help me on this please..

jj 05-02-2006 06:06 PM

Quote:

Originally Posted by bada_bing
I am using this hack and so far workds great. the question I have is that I choose to display the profile pic instead of the avatar. No doing so if the member does NOT have a profile pic it show nothing but the members name... NOW if I revert and choose to use the avator and the members does not have an avatar then it will show an image saying members does not have an avatar.

So my question is HOW can I have it so that if a member does not have a profile pic it will display an defualt image as it does for the avatars?

First of all: Press install ^^
Second: If you read thru the thread you would find out, that it is not possible to show an alternative if a member does not have a profile picture.

jj 05-02-2006 06:07 PM

Quote:

Originally Posted by criscokid
I've implemented a URL rewrite rule so my users can have domain.com/profiles/username (instead of it being /forums/username). This works fine except the user's avatar and photo doesn't show up because it's using a relative URL domain.com/users/image.php?u=2&dateline=1142257186 instead of a specific URL of domain.com/forums/image.php?u=2&dateline=1142257186

How do I set the avatar and photo URLs to be specific and always use domain.com/forums/ in the URL?

Thats because I only use the vb way, and do not set the url on my own. Can't help you with that.

bada_bing 05-02-2006 06:42 PM

Quote:

Originally Posted by jj
First of all: Press install ^^
Second: If you read thru the thread you would find out, that it is not possible to show an alternative if a member does not have a profile picture.

Sorry I clicked install must of forgot.
No need to be so worked up over nothing.. Why cant a default inage be displayed rather then a blank, It works for avatars?

criscokid 05-02-2006 09:02 PM

If you look through this thread Code Red (I think) has posted his version of the MEMBERINFO template which shows a default image if the user doesn't have a photo in their profile.

jj 05-03-2006 02:01 AM

Quote:

Originally Posted by bada_bing
Sorry I clicked install must of forgot.
No need to be so worked up over nothing.. Why cant a default inage be displayed rather then a blank, It works for avatars?

The answer is in this post: https://vborg.vbsupport.ru/showpost....4&postcount=54

Maybe there's another plugin out there who changes something in the output of that profile picture php file and you get the alternative image that way.

criscokid 05-03-2006 08:13 AM

Quote:

Originally Posted by jj
The answer is in this post: [url]Maybe there's another plugin out there who changes something in the output of that profile picture php file and you get the alternative image that way.

The is the 'default photo' mod - I don't know what the URL is though off hand.

bada_bing 05-03-2006 01:52 PM

Quote:

Originally Posted by criscokid
The is the 'default photo' mod - I don't know what the URL is though off hand.

I have the defualt picphoto mod but it does not work for this hack. Currently on my site if a member does not upload a profile pic a defualt pic is displayed but this hack does not inherrit that mod

criscokid 05-03-2006 02:00 PM

Quote:

Originally Posted by bada_bing
I have the defualt picphoto mod but it does not work for this hack. Currently on my site if a member does not upload a profile pic a defualt pic is displayed but this hack does not inherrit that mod

As I previously mentioned in this thread... If you look through this thread Code Red (I think) has posted his version of the MEMBERINFO template which shows a default image if the user doesn't have a photo in their profile.

It works because I've applied the same concept to my MEMBERINFO template and I have a default photo showing on my user profile pages.

bada_bing 05-03-2006 02:14 PM

Quote:

Originally Posted by criscokid
As I previously mentioned in this thread... If you look through this thread Code Red (I think) has posted his version of the MEMBERINFO template which shows a default image if the user doesn't have a photo in their profile.

It works because I've applied the same concept to my MEMBERINFO template and I have a default photo showing on my user profile pages.

Searched and search no code red member. I did see one guy list his memberinfo code but doesnt explain why. Man this is like pulling teeth trying to get support for this hack.

criscokid 05-03-2006 04:55 PM

I did say "Code Red (I think)" - the 'I think' meant that I wasn't sure so be on the lookout. "I did see one guy list his memberinfo code" - that's the one. "Man this is like pulling teeth trying to get support for this hack" - it's actually a pretty straightfoward mod. You need to sit down with some time to spare and take it one step and a time, apply some logic and it'll work ok.

bada_bing 05-03-2006 06:02 PM

Quote:

Originally Posted by criscokid
I did say "Code Red (I think)" - the 'I think' meant that I wasn't sure so be on the lookout. "I did see one guy list his memberinfo code" - that's the one. "Man this is like pulling teeth trying to get support for this hack" - it's actually a pretty straightfoward mod. You need to sit down with some time to spare and take it one step and a time, apply some logic and it'll work ok.

criscokid,
I appreciate your guidence but bare with me man I am not a coder and this is why im asking for some help with the code. I ahve sat down at tried to modify the code but havent had any luck

WritersBeat 05-06-2006 03:04 AM

Awesome

criscokid 05-06-2006 10:34 AM

Quote:

Originally Posted by bada_bing
criscokid,
I appreciate your guidence but bare with me man I am not a coder and this is why im asking for some help with the code. I ahve sat down at tried to modify the code but havent had any luck

Hiya mate :)

I'm no coder either. I say apply some logic for a number of reasons... Quite often someone can't get something to run simply because they haven't read the instructions (and set a variable such as the base directory). One should always read the instructions at least twice, three times is recommended before starting out.

When you're trying to get something to work read the error message... don't just copy it into a thread and ask for help. Quite often the error message is staring you in the face. All too often people look at an error messgae, they don't read the error message.

Little things... look at a line of code... if there's opening quotes look to see if there's closing quotes, if there's a < is therea a > closing off the line? It's the little things... the attention to detail. Give it a go and you'll find that eventually you'll be able to climb up one rung of the ladder to becoming a coder. Coder's have attention to detail and apply logice - without it they aren't coders.

jj 05-06-2006 12:17 PM

Quote:

Originally Posted by bada_bing
I have the defualt picphoto mod but it does not work for this hack. Currently on my site if a member does not upload a profile pic a defualt pic is displayed but this hack does not inherrit that mod

Could you post me the link to the mod, and I'll look if I can find out how to show a default profile pic if no profile pic is available. I'm just too lazy to search for it right now ^^


All times are GMT. The time now is 06:34 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01952 seconds
  • Memory Usage 1,982KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (3)bbcode_code_printable
  • (2)bbcode_php_printable
  • (27)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete