Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > General > Member Archives
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Details »»

Version: , by LanciaStratos LanciaStratos is offline
Developer Last Online: Oct 2013 Show Printable Version Email this Page

Version: Unknown Rating:
Released: 12-13-2001 Last Update: Never Installs: 0
 
No support by the author.

I'm trying to create a hack which displays member's avatars in memberlist.php. So, in memberlist.php, where it says this...
PHP Code:
    if ($userinfo[receivepm]) {
      eval(
"\$userinfo[pmlink] = \"".gettemplate("postbit_sendpm")."\";");
    } else {
      
$userinfo[pmlink] = " ";
    }

    eval(
"\$userinfo[profile] = \"".gettemplate("postbit_profile")."\";"); 
...I changed it to this...
PHP Code:
    if ($userinfo[receivepm]) {
      eval(
"\$userinfo[pmlink] = \"".gettemplate("postbit_sendpm")."\";");
    } else {
      
$userinfo[pmlink] = " ";
    }

    if (
$userinfo[avatar]) {
      eval(
"\$userinfo[avatar] = \"".gettemplate("postbit_avatar")."\";");
    } else {
      
$userinfo[avatar] = " ";
    }

    eval(
"\$userinfo[profile] = \"".gettemplate("postbit_profile")."\";"); 
After I uploaded the new memberlist.php, I edited my memberlistbit template, and stuck $userinfo[avatar] where I wanted the avatar to show up. But, nothing happened! Can anyone show me what I did wrong here? :stupid:

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #12  
Old 04-06-2002, 07:00 PM
svoec svoec is offline
 
Join Date: Mar 2002
Location: KY
Posts: 45
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I tinkered a bit and found where you change the rows (memberlist template)

Sorry for being such a newbie, I have been running VB for a total of 4 days now!!

Thanks LanciaStratos !!
Eric
Reply With Quote
  #13  
Old 04-06-2002, 09:09 PM
LanciaStratos's Avatar
LanciaStratos LanciaStratos is offline
 
Join Date: Oct 2001
Location: somewhere you're not
Posts: 221
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

[QUOTE]Originally posted by svoec
I tinkered a bit and found where you change the rows (memberlist template)

Sorry for being such a newbie, I have been running VB for a total of 4 days now!!

Thanks LanciaStratos !!
Eric
Reply With Quote
  #14  
Old 04-30-2002, 01:14 PM
geniuscrew's Avatar
geniuscrew geniuscrew is offline
 
Join Date: Nov 2001
Location: UK
Posts: 346
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

it looks as if it's only showing up for people with website URLs in their profiles :-/
Reply With Quote
  #15  
Old 04-30-2002, 08:09 PM
LanciaStratos's Avatar
LanciaStratos LanciaStratos is offline
 
Join Date: Oct 2001
Location: somewhere you're not
Posts: 221
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

[QUOTE]Originally posted by geniuscrew
it looks as if it's only showing up for people with website URLs in their profiles :-/
Reply With Quote
  #16  
Old 06-04-2002, 10:07 AM
Boofo's Avatar
Boofo Boofo is offline
 
Join Date: Mar 2002
Location: Des Moines, IA (USA)
Posts: 15,776
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I am having a problem with all of the avatars showing up in the listing. I have a few of them showing up but there are more that don't show up. Can anyone please tell me why some will show up and some will not? I followed Chen's code just like he wrote it.
Reply With Quote
  #17  
Old 06-04-2002, 05:35 PM
LanciaStratos's Avatar
LanciaStratos LanciaStratos is offline
 
Join Date: Oct 2001
Location: somewhere you're not
Posts: 221
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

[QUOTE]Originally posted by Boofo
I am having a problem with all of the avatars showing up in the listing. I have a few of them showing up but there are more that don't show up. Can anyone please tell me why some will show up and some will not? I followed Chen's code just like he wrote it.
Reply With Quote
  #18  
Old 06-04-2002, 05:44 PM
Boofo's Avatar
Boofo Boofo is offline
 
Join Date: Mar 2002
Location: Des Moines, IA (USA)
Posts: 15,776
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Not all of the users in the list have avatars. But the listing only showed about half of the avatars that I know for a fact are there. I have them listed in the profiles and they all show up there (if the users have them) fine.

[QUOTE]Originally posted by LanciaStratos
Are you sure that all of the users in the list have actually set avatars?
Reply With Quote
  #19  
Old 09-08-2002, 09:47 PM
chad777 chad777 is offline
 
Join Date: May 2002
Posts: 173
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hey when I added that code

to add the avatar to teh memberlist it made it where
$userinfo[userid] would not work on memberlist

meaning the name in memberlist link to profile would not select userid it would just be = instead of =userid (=34) at the end of teh url to profile.

Also it would not let select a userid for search post eithier
Reply With Quote
  #20  
Old 01-19-2003, 08:40 PM
irn-bru's Avatar
irn-bru irn-bru is offline
 
Join Date: Feb 2002
Location: Scotland
Posts: 98
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

[QUOTE]Originally posted by Boofo
Not all of the users in the list have avatars. But the listing only showed about half of the avatars that I know for a fact are there. I have them listed in the profiles and they all show up there (if the users have them) fine.

Reply With Quote
  #21  
Old 03-02-2003, 10:30 AM
sabret00the's Avatar
sabret00the sabret00the is offline
 
Join Date: Jan 2003
Location: London
Posts: 5,268
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

just added this, but for some reason it only shows half the av's 0_o
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 04:16 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.04548 seconds
  • Memory Usage 2,305KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (2)bbcode_php
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete