vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.7 Template Modifications (https://vborg.vbsupport.ru/forumdisplay.php?f=229)
-   -   Forum Display Enhancements - Latest profilevisitors - a better look (https://vborg.vbsupport.ru/showthread.php?t=199800)

Stoebi 12-28-2008 12:55 PM

Quote:

Originally Posted by Ultimate Teen Forums (Post 1695455)
Lovely, installed :D

Maybe add a mini preview of the friend's avatar next to their online status?

This, what you want?
Attachment 91311

Or

Attachment 91312

Sweeks 12-28-2008 01:26 PM

The first image looks great, yes exactly how I would like it :D
________
The Cigar Boss

Stoebi 12-28-2008 01:35 PM

From the beginning.

Please revert your file includes/class_profile.php first

Revert and open your memberinfo_visitorbit template:
search for:
HTML Code:

<li class="smallfont">
replace with:
HTML Code:

<li class="smallfont" style="margin-top: 4px">$user[onlinestatus] <img style="position: relative; top: 3px" src="$user[avatarurl]" height="15px" width="12px" alt="<phrase 1="$user[username]">$vbphrase[xs_avatar]</phrase>" border="0" />

Open template memberinfo_block_recentvisitors:
Change ol and /ol in ul and /ul


Open file includes/class_profileblock.php:
search for:
PHP Code:

        $visitors_db $this->registry->db->query_read_slave("
            SELECT user.userid, user.username, user.usergroupid, user.displaygroupid, profilevisitor.visible
                
$hook_query_fields
            FROM " 
TABLE_PREFIX "profilevisitor AS profilevisitor
            INNER JOIN " 
TABLE_PREFIX "user AS user ON (user.userid = profilevisitor.visitorid)
            
$hook_query_joins
            WHERE profilevisitor.userid = " 
$this->profile->userinfo['userid'] . "
                " 
. (!($this->registry->userinfo['permissions']['genericpermissions'] & $this->registry->bf_ugp_genericpermissions['canseehidden']) ? " AND (visible = 1 OR profilevisitor.visitorid = " $this->registry->userinfo['userid'] . ")" "") . "
                
$hook_query_where
            ORDER BY profilevisitor.dateline DESC
            LIMIT 
$options[profilemaxvisitors]
        "
); 

replace with:
PHP Code:

        $visitors_db $this->registry->db->query_read_slave("
            SELECT user.*, (user.options & " 
$this->registry->bf_misc_useroptions['invisible'] . ") as invisible
                " 
. ($this->registry->options['avatarenabled'] ?
                        
", avatar.avatarpath, NOT ISNULL(customavatar.userid) AS hascustom, customavatar.dateline AS avatardateline, customavatar.filedata_thumb, customavatar.height AS avheight, customavatar.width AS avwidth, customavatar.width_thumb AS avwidth_thumb, customavatar.height_thumb AS avheight_thumb" "") . ", profilevisitor.visible
                
$hook_query_fields
            FROM " 
TABLE_PREFIX "profilevisitor AS profilevisitor
            INNER JOIN " 
TABLE_PREFIX "user AS user ON (user.userid = profilevisitor.visitorid)"
                
. ($this->registry->options['avatarenabled'] ? "
            LEFT JOIN " 
TABLE_PREFIX "avatar AS avatar ON (avatar.avatarid = user.avatarid)
            LEFT JOIN " 
TABLE_PREFIX "customavatar AS customavatar ON (customavatar.userid = user.userid) " '') . "
            
$hook_query_joins
            WHERE profilevisitor.userid = " 
$this->profile->userinfo['userid'] . "
                " 
. (!($this->registry->userinfo['permissions']['genericpermissions'] & $this->registry->bf_ugp_genericpermissions['canseehidden']) ? " AND (profilevisitor.visible = 1 OR profilevisitor.visitorid = " $this->registry->userinfo['userid'] . ")" "") . "
                
$hook_query_where
            ORDER BY profilevisitor.dateline DESC
            LIMIT 
$options[profilemaxvisitors]
        "
); 

search for:
PHP Code:

$visitors["$user[username]"] = $user

above add:
PHP Code:

fetch_online_status($usertrue);
fetch_avatar_from_userinfo($usertrue); 

Ready!


Quote:

how to add the the time the user visited.
http://your-vb.com/showthread.php?t=114


Regards,

Stoebi

Sweeks 12-28-2008 03:04 PM

Works a treat, thank you very much! Our member love it. Can you translate the addition of last visited time into English please because that would be great to have too :D

Maybe make this a plugin too ;)
________
Video review

Oyabun 12-28-2008 04:49 PM

Quote:

Originally Posted by Stoebi (Post 1695522)
From the beginning.

Please revert your file includes/class_profile.php first

Revert and open your memberinfo_visitorbit template:
search for:
HTML Code:

<li class="smallfont">
replace with:
HTML Code:

<li class="smallfont" style="margin-top: 4px">$user[onlinestatus] <img style="position: relative; top: 3px" src="$user[avatarurl]" height="15px" width="12px" alt="<phrase 1="$user[username]">$vbphrase[xs_avatar]</phrase>" border="0" />

Open template memberinfo_block_recentvisitors:
Change ol and /ol in ul and /ul


Open file includes/class_profileblock.php:
search for:
PHP Code:

        $visitors_db $this->registry->db->query_read_slave("
            SELECT user.userid, user.username, user.usergroupid, user.displaygroupid, profilevisitor.visible
                
$hook_query_fields
            FROM " 
TABLE_PREFIX "profilevisitor AS profilevisitor
            INNER JOIN " 
TABLE_PREFIX "user AS user ON (user.userid = profilevisitor.visitorid)
            
$hook_query_joins
            WHERE profilevisitor.userid = " 
$this->profile->userinfo['userid'] . "
                " 
. (!($this->registry->userinfo['permissions']['genericpermissions'] & $this->registry->bf_ugp_genericpermissions['canseehidden']) ? " AND (visible = 1 OR profilevisitor.visitorid = " $this->registry->userinfo['userid'] . ")" "") . "
                
$hook_query_where
            ORDER BY profilevisitor.dateline DESC
            LIMIT 
$options[profilemaxvisitors]
        "
); 

replace with:
PHP Code:

        $visitors_db $this->registry->db->query_read_slave("
            SELECT user.*, (user.options & " 
$this->registry->bf_misc_useroptions['invisible'] . ") as invisible
                " 
. ($this->registry->options['avatarenabled'] ?
                        
", avatar.avatarpath, NOT ISNULL(customavatar.userid) AS hascustom, customavatar.dateline AS avatardateline, customavatar.filedata_thumb, customavatar.height AS avheight, customavatar.width AS avwidth, customavatar.width_thumb AS avwidth_thumb, customavatar.height_thumb AS avheight_thumb" "") . ", profilevisitor.visible
                
$hook_query_fields
            FROM " 
TABLE_PREFIX "profilevisitor AS profilevisitor
            INNER JOIN " 
TABLE_PREFIX "user AS user ON (user.userid = profilevisitor.visitorid)"
                
. ($this->registry->options['avatarenabled'] ? "
            LEFT JOIN " 
TABLE_PREFIX "avatar AS avatar ON (avatar.avatarid = user.avatarid)
            LEFT JOIN " 
TABLE_PREFIX "customavatar AS customavatar ON (customavatar.userid = user.userid) " '') . "
            
$hook_query_joins
            WHERE profilevisitor.userid = " 
$this->profile->userinfo['userid'] . "
                " 
. (!($this->registry->userinfo['permissions']['genericpermissions'] & $this->registry->bf_ugp_genericpermissions['canseehidden']) ? " AND (profilevisitor.visible = 1 OR profilevisitor.visitorid = " $this->registry->userinfo['userid'] . ")" "") . "
                
$hook_query_where
            ORDER BY profilevisitor.dateline DESC
            LIMIT 
$options[profilemaxvisitors]
        "
); 

search for:
PHP Code:

$visitors["$user[username]"] = $user

above add:
PHP Code:

fetch_online_status($usertrue);
fetch_avatar_from_userinfo($usertrue); 

Ready!


http://your-vb.com/showthread.php?t=114


Regards,

Stoebi

Lol, we could make your mod out of this. Mine sucked until you visited my thread :P
But i hate PHP edits. Everytime you update vbulletin you have to edit all the files again :(
Btw. i need to change it in the blogview, too. Can you tell us how? :)
I guess in class_profileblock_blog.php, but I don't want to do something wrong :)

Sweeks 12-28-2008 04:58 PM

Shouldnt this now be in the add ons section as you are modifying vbulletin stock files?
________
AMATEUR EXHIBITIONIST

Stoebi 12-28-2008 06:46 PM

Quote:

Originally Posted by Oyabun (Post 1695627)
Lol, we could make your mod out of this. Mine sucked until you visited my thread :P

It is your idea and your mod. Basta! ;)

Thank you very much :)

Quote:

Originally Posted by Oyabun (Post 1695627)
But i hate PHP edits. Everytime you update vbulletin you have to edit all the files again :(

Hate file edits also.

.
In German:
Du kannst mir glauben, wenn es eine M?glichkeit geben w?rde, eure und meine Ideen, diesen Block betreffend, mittels Hook(s) zu realisieren, ich h?tte es getan. Lese auch mal bitte diesen Beitrag. Verstehst, was ich meine? Dank dir noch einmal. :)

Oyabun 12-28-2008 09:55 PM

Quote:

Originally Posted by Ultimate Teen Forums (Post 1695632)
Shouldnt this now be in the add ons section as you are modifying vbulletin stock files?

Well, yes...

Quote:

Originally Posted by Stoebi (Post 1695711)
It is your idea and your mod. Basta! ;)

Thank you very much :)


Hate file edits also.

.
In German:
Du kannst mir glauben, wenn es eine M?glichkeit geben w?rde, eure und meine Ideen, diesen Block betreffend, mittels Hook(s) zu realisieren, ich h?tte es getan. Lese auch mal bitte diesen Beitrag. Verstehst, was ich meine? Dank dir noch einmal. :)

Hehe, wenn dann danke ich dir. Hab den Beitrag auch schon gelesen *g*


But i changed the php file, because its only one file.
Can you answer my question about the blog viewers?
I also added you as a supporter. I hope it's okay cause you know it better than me :P

The4um 12-28-2008 11:08 PM

Quote:

Originally Posted by Stoebi (Post 1695522)
From the beginning.

Please revert your file includes/class_profile.php first

Revert and open your memberinfo_visitorbit template:
search for:
HTML Code:

<li class="smallfont">
replace with:
HTML Code:

<li class="smallfont" style="margin-top: 4px">$user[onlinestatus] <img style="position: relative; top: 3px" src="$user[avatarurl]" height="15px" width="12px" alt="<phrase 1="$user[username]">$vbphrase[xs_avatar]</phrase>" border="0" />

Open template memberinfo_block_recentvisitors:
Change ol and /ol in ul and /ul


Open file includes/class_profileblock.php:
search for:
PHP Code:

        $visitors_db $this->registry->db->query_read_slave("
            SELECT user.userid, user.username, user.usergroupid, user.displaygroupid, profilevisitor.visible
                
$hook_query_fields
            FROM " 
TABLE_PREFIX "profilevisitor AS profilevisitor
            INNER JOIN " 
TABLE_PREFIX "user AS user ON (user.userid = profilevisitor.visitorid)
            
$hook_query_joins
            WHERE profilevisitor.userid = " 
$this->profile->userinfo['userid'] . "
                " 
. (!($this->registry->userinfo['permissions']['genericpermissions'] & $this->registry->bf_ugp_genericpermissions['canseehidden']) ? " AND (visible = 1 OR profilevisitor.visitorid = " $this->registry->userinfo['userid'] . ")" "") . "
                
$hook_query_where
            ORDER BY profilevisitor.dateline DESC
            LIMIT 
$options[profilemaxvisitors]
        "
); 

replace with:
PHP Code:

        $visitors_db $this->registry->db->query_read_slave("
            SELECT user.*, (user.options & " 
$this->registry->bf_misc_useroptions['invisible'] . ") as invisible
                " 
. ($this->registry->options['avatarenabled'] ?
                        
", avatar.avatarpath, NOT ISNULL(customavatar.userid) AS hascustom, customavatar.dateline AS avatardateline, customavatar.filedata_thumb, customavatar.height AS avheight, customavatar.width AS avwidth, customavatar.width_thumb AS avwidth_thumb, customavatar.height_thumb AS avheight_thumb" "") . ", profilevisitor.visible
                
$hook_query_fields
            FROM " 
TABLE_PREFIX "profilevisitor AS profilevisitor
            INNER JOIN " 
TABLE_PREFIX "user AS user ON (user.userid = profilevisitor.visitorid)"
                
. ($this->registry->options['avatarenabled'] ? "
            LEFT JOIN " 
TABLE_PREFIX "avatar AS avatar ON (avatar.avatarid = user.avatarid)
            LEFT JOIN " 
TABLE_PREFIX "customavatar AS customavatar ON (customavatar.userid = user.userid) " '') . "
            
$hook_query_joins
            WHERE profilevisitor.userid = " 
$this->profile->userinfo['userid'] . "
                " 
. (!($this->registry->userinfo['permissions']['genericpermissions'] & $this->registry->bf_ugp_genericpermissions['canseehidden']) ? " AND (profilevisitor.visible = 1 OR profilevisitor.visitorid = " $this->registry->userinfo['userid'] . ")" "") . "
                
$hook_query_where
            ORDER BY profilevisitor.dateline DESC
            LIMIT 
$options[profilemaxvisitors]
        "
); 

search for:
PHP Code:

$visitors["$user[username]"] = $user

above add:
PHP Code:

fetch_online_status($usertrue);
fetch_avatar_from_userinfo($usertrue); 

Ready!


http://your-vb.com/showthread.php?t=114


Regards,

Stoebi

I made every step that was writen here, but at the end result aren't good :( at the recent visitors block, avatar is not shown, only apears the phrase "username's avatar"

anyone can helpme please?

Oyabun 12-28-2008 11:39 PM

Just revert everything you did and try it again. It has to work.
I made it to. See the result in the attachment. You made something wrong i guess.

"username's avatar" just shows up if the user has not saved any avatar


All times are GMT. The time now is 07:59 PM.

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.01334 seconds
  • Memory Usage 1,892KB
  • 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
  • (6)bbcode_html_printable
  • (12)bbcode_php_printable
  • (8)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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