Go Back   vb.org Archive > vBulletin Modifications > vBulletin 4.x Modifications > vBulletin 4.x Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
[DBTech] Profile Hover v1 (vB4) [AJAX] Details »»
[DBTech] Profile Hover v1 (vB4) [AJAX]
Version: 2.0.0, by DragonByte Tech DragonByte Tech is offline
Developer Last Online: Mar 2023 Show Printable Version Email this Page

Category: Mini Mods - Version: 4.x.x Rating:
Released: 01-21-2011 Last Update: 02-27-2016 Installs: 83
Uses Plugins Auto-Templates
Additional Files Translations  
No support by the author.

Profile Hover: What is it?
DragonByte Technologies are proud to present Profile Hover v2: A mini mod that uses AJAX to display user profile information when hovering over a users formatted name.


Why Profile Hover?

DBTech's Profile Hover mod uses AJAX to display user profile information when hovering over a users formatted name. It can be used to get a quick preview of a users profile information without loading the page or as a way to display a users information to encourage communication between your forum members.

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

If you like this mod please hit the button to the right ---->

Please remember to click the, button to the right if you installed the mod ---->

What does 'Marking As Installed' do ?

* It helps you to stay on top of updates - members who have installed modifications will be notified by us whenever new updates are available.

*
For security issues - vbulletin.org will contact all members who have installed a modification whenever a security issue is brought to their attention.

* Marking a modification as installed also helps us know how many people are using our work, giving us extra incentive to provide more features and new modifications.

We appreciate the support!

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

Complete Feature List
  • Lite
    • Display Avatar
    • Display Post Count
    • Display Current and Last Activity
    • Display Thanks/Likes data
    • Display Downloads Data
    • Display vBActivity Stats
    • Display Credits
    • Allow user to disable profile hover
    • Allow Admin to disable/enable each DBT Mod data in ACP
    • Allow Admin to set delay before mouseover fires
    • Allow Admin to set mouseover timeout
    • Allow Admin to set background color
  • Pro
    • Display Custom Fields
    • Display Reputation/Location/Occupation/Signature
    • Display Custom Profile Fields
    • Display Administrator title
    • Display Moderator title and forums user moderates
    • Allow Admin to disable/enable each item from DBT Mods in ACP
    • Allow Admin to set groups allowed to view

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

This mod displays a copyright notification in the footer of pages generated by this mod which includes:
  • 1 Link to DragonByte Technologies homepage
  • 1 Link to Product Description page of this modification

Download Now

File Type: zip [DBTech] Profile Hover v2.0.0 [Lite].zip (21.3 KB, 63 views)

Screenshots

File Type: png hover.png (29.9 KB, 0 views)
File Type: png acp.png (62.9 KB, 0 views)

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.
Благодарность от:

Comments
  #72  
Old 08-06-2011, 02:37 AM
DragonByte Tech's Avatar
DragonByte Tech DragonByte Tech is offline
 
Join Date: Feb 2010
Location: Scotland
Posts: 8,814
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Seba123 View Post
Any demo ?
It is running on our site
http://www.dragonbyte-tech.com/forum.php

Dylan
Reply With Quote
  #73  
Old 08-20-2011, 11:16 PM
8thos's Avatar
8thos 8thos is offline
 
Join Date: Aug 2010
Location: Pensacola, FL
Posts: 772
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by starman? View Post
How about changing the code to display the profile pic instead of the avatar?
^^^Please consider adding profile pics!

This sounds pretty awesome! I'll try the light version later tonight.
Reply With Quote
  #74  
Old 06-07-2012, 08:43 PM
fevredsuk fevredsuk is offline
 
Join Date: Apr 2010
Posts: 150
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

the hover box is huge. any way to resize the box and condense the info in it. far to much open space within the box and very annoying
Reply With Quote
  #75  
Old 06-09-2012, 10:49 AM
DragonByte Tech's Avatar
DragonByte Tech DragonByte Tech is offline
 
Join Date: Feb 2010
Location: Scotland
Posts: 8,814
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by fevredsuk View Post
the hover box is huge. any way to resize the box and condense the info in it. far to much open space within the box and very annoying
Could you take a screenshot and show me an example? The box should be sized to the info.

Dylan
Reply With Quote
  #76  
Old 06-09-2012, 10:55 AM
fevredsuk fevredsuk is offline
 
Join Date: Apr 2010
Posts: 150
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

ok mate I sorted it,

it was mainly due to avatar size. Max size on my site is 150w x 250h which most members use.

The hover box showed the the full size avatar which was set to 100% in the template. so I just changed it to 50px wide and 83px high. I also removed the vbactivity info too.

one small problem though is member with no avatar or using a generic one still shows the full size avatar in the hover box
Reply With Quote
  #77  
Old 06-09-2012, 11:15 AM
DragonByte Tech's Avatar
DragonByte Tech DragonByte Tech is offline
 
Join Date: Feb 2010
Location: Scotland
Posts: 8,814
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by fevredsuk View Post
ok mate I sorted it,

it was mainly due to avatar size. Max size on my site is 150w x 250h which most members use.

The hover box showed the the full size avatar which was set to 100% in the template. so I just changed it to 50px wide and 83px high. I also removed the vbactivity info too.

one small problem though is member with no avatar or using a generic one still shows the full size avatar in the hover box
Give this a try
Open
dbtech/profilehover/hooks/ajax_start.php

Find
PHP Code:
$user['lastactivitydate'] = vbdate($vbulletin->options['dateformat'], $user['lastactivity'], true); 
On the line above add

PHP Code:
        if ($user['ph_pic_show'] && !$user['avatarwidth'])
        {
            
$imgsize getimagesize($user['ph_pic_show']);
            
$user['avatarwidth'] = $imgsize[0];
            
$user['avatarheight'] = $imgsize[1];
        } 
That should set the width/height on non custom images.

Dylan
Reply With Quote
  #78  
Old 06-09-2012, 02:05 PM
fevredsuk fevredsuk is offline
 
Join Date: Apr 2010
Posts: 150
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by DragonByte Tech View Post
Give this a try
Open
dbtech/profilehover/hooks/ajax_start.php

Find
PHP Code:
$user['lastactivitydate'] = vbdate($vbulletin->options['dateformat'], $user['lastactivity'], true); 
On the line above add

PHP Code:
        if ($user['ph_pic_show'] && !$user['avatarwidth'])
        {
            
$imgsize getimagesize($user['ph_pic_show']);
            
$user['avatarwidth'] = $imgsize[0];
            
$user['avatarheight'] = $imgsize[1];
        } 
That should set the width/height on non custom images.

Dylan

Perfect thankyou
Reply With Quote
  #79  
Old 06-11-2012, 09:49 PM
Naijasite's Avatar
Naijasite Naijasite is offline
 
Join Date: Mar 2012
Posts: 281
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

This mode has damage my registartion page after uninstalling the product and all files, when a new user try to register they see this error.

A required field called Disable Profile Hover is missing or has an invalid value.
A required field called Disable Profile Hover is missing or has an invalid value.


I have uninstalled the mod and all files but dont no why its still giving me the error above. Please help
Reply With Quote
  #80  
Old 06-12-2012, 08:45 AM
DragonByte Tech's Avatar
DragonByte Tech DragonByte Tech is offline
 
Join Date: Feb 2010
Location: Scotland
Posts: 8,814
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by felixkomo View Post
This mode has damage my registartion page after uninstalling the product and all files, when a new user try to register they see this error.

A required field called Disable Profile Hover is missing or has an invalid value.
A required field called Disable Profile Hover is missing or has an invalid value.


I have uninstalled the mod and all files but dont no why its still giving me the error above. Please help
There is a custom user profile field that doesn't get deleted on uninstall. You need to manually delete that field.

Dylan
Reply With Quote
  #81  
Old 06-12-2012, 09:03 AM
New Joe's Avatar
New Joe New Joe is offline
 
Join Date: May 2009
Posts: 1,128
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by DragonByte Tech View Post
There is a custom user profile field that doesn't get deleted on uninstall. You need to manually delete that field.

Dylan
Maybe you should tell us a 'step' by 'step' guide how to do this, as usually with modifications we just un-install them and that's it.

Looks like there is more to be done with this one.
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 11:56 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05025 seconds
  • Memory Usage 2,365KB
  • Queries Executed 26 (?)
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
  • (4)bbcode_php
  • (7)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (3)postbit_attachment
  • (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
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete