Go Back   vb.org Archive > vBulletin 4 Discussion > vB4 General Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 02-28-2016, 10:53 AM
helenblog's Avatar
helenblog helenblog is offline
 
Join Date: Dec 2014
Posts: 50
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default Show Avatar on forum homepage?

Hello

There is a easy template code to show avatar of the used (logged into the forum) on forum home page / forum display / thread view

I want to show avatar instead of showing user name as the default from vBulletin.

Does any one know how to do this?

Thanks in advance!
Reply With Quote
  #2  
Old 02-29-2016, 03:30 PM
helenblog's Avatar
helenblog helenblog is offline
 
Join Date: Dec 2014
Posts: 50
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

In FORUMHOME template, I want to show

the avatar of a member ( the person that logged into the forum )

for example:
under {vb:raw navbar}

I want to have this code

Hello, <img src="{$avatar_of_member}" alt="avatar of member">

{$avatar_of_member} is the image link of a member's avatar.

I searched on vBullletin but seem it didn't have any solutions for this.
Reply With Quote
  #3  
Old 02-29-2016, 04:40 PM
MarkFL's Avatar
MarkFL MarkFL is offline
 
Join Date: Feb 2014
Location: St. Augustine, FL
Posts: 3,853
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Add the following plugin:

Product: vBulletin

Hook Location: parse_templates

Title: Show Browsing Member's Avatar Under Navbar

Execution Order: 5

Plugin PHP Code:

PHP Code:
if (THIS_SCRIPT === 'index')
{
    require_once(
'./includes/functions_user.php');
    
$avatar_url fetch_avatar_url($vbulletin->userinfo['userid']);
    
$avatar $avatar_url[0];

    if (
$avatar)
    {
        
$template_name 'navbar';
        
$hook_name 'below_navbar';
        
$find '<div class="body_wrapper">';
        
$replace '\' . $template_hook[\'below_navbar\'] . \'' $find;
        if (isset(
$vbulletin->templatecache[$template_name]))
        {
            
$t_temp $vbulletin->templatecache[$template_name];
            
$t_temp str_replace($find$replace$t_temp);
            
$vbulletin->templatecache[$template_name] = $t_temp;
        }
        
$template_hook[$hook_name] .= '<img src="' $avatar '" title="' $vbulletin->userinfo['username'] . '\'s Avatar" style="margin-bottom: 10px; max-height: 90px; width: auto;" />';
    }

Plugin is Active: Yes

Click "Save".

As you can see, I have given the avatar image a maximum height of 90px...you should adjust that to suit your needs, or if you want the avatar to display full size, then remove the inline CSS "max-height: 90px; width: auto;" from the img tag altogether.

Please let me know if there are any changes you would like.
Reply With Quote
  #4  
Old 03-01-2016, 12:21 AM
helenblog's Avatar
helenblog helenblog is offline
 
Join Date: Dec 2014
Posts: 50
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks Mark!

Your codes are awesome and it showed under navbar.
Reply With Quote
  #5  
Old 03-01-2016, 05:11 AM
MarkFL's Avatar
MarkFL MarkFL is offline
 
Join Date: Feb 2014
Location: St. Augustine, FL
Posts: 3,853
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

As it turns out, Helen wanted to be able to be able to place the avatar in the "FORUMHOME" template herself, as she might change things up from time to time. So, I told her the following (I am posting this for the benefit of others):

----------------------------------------------------------------------

Okay, first create the following plugin:

Product: vBulletin

Hook Location: forumhome_complete

Title: Send Avatar HTML To FORUMHOME Template

Execution Order: 5

Plugin PHP Code:

PHP Code:
if ($show['member'])
{
    require_once(
'./includes/functions_user.php');
    
$avatar_url fetch_avatar_url($vbulletin->userinfo['userid']);
    
$avatar $avatar_url[0];

    if (!
$avatar)
    {
        
$avatar $vbulletin->stylevars['imgdir_misc']['imagedir'] . '/unknown.gif';
    }
    
$username $vbulletin->userinfo['username'];
}
else
{
    
$avatar $vbulletin->stylevars['imgdir_misc']['imagedir'] . '/unknown.gif';
    
$username 'Guest';
}

$avatar '<img src="' $avatar '" title="' $username '\'s Avatar" style="max-height: 90px; width: auto;" />';

vB_Template::preRegister('FORUMHOME',array('avatar' => $avatar)); 
Plugin is Active: Yes

Click "Save".

Now, wherever you wish for the user or guest's avatar to display, place the following code into you "FORUMHOME" template at the location you desire:

HTML Code:
{vb:raw avatar}
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 01:39 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.03467 seconds
  • Memory Usage 2,217KB
  • Queries Executed 11 (?)
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
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (1)bbcode_html
  • (2)bbcode_php
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (5)post_thanks_box
  • (5)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (5)post_thanks_postbit_info
  • (5)postbit
  • (5)postbit_onlinestatus
  • (5)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
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete