Announcement

Collapse
No announcement yet.

Profile Preview Tooltip (like Name Card but better!)

Collapse
X
Collapse
First Prev Next Last
 
  • Filter
  • Time
  • Show
Clear All
new posts

    #91
    Hmm...I tried it on vB 6.1.6 and it works for me.

    Click image for larger version

Name:	image.png
Views:	116
Size:	42.1 KB
ID:	33823
    Buy me a coffeePayPal QR Code
    My Amazon Affiliate Link
    Fast vBulletin VPS Host:
    This site is hosted by IONOS

    Comment


    • flohse
      commented
      Editing a comment
      Please try with a displayname. Without displayname it works. Can you please provide a fix?

    • glennrocksvb
      commented
      Editing a comment
      I'll check.

    • flohse
      commented
      Editing a comment
      Can you confirm the issue?

    • flohse
      commented
      Editing a comment
      Hi Glenn, any update on this? (Usage of display names)

    #92
    Released v2.0 to fix missing Username HTML Markup when Display Name is set.

    Paid customers will receive an email containing the download link.
    Buy me a coffeePayPal QR Code
    My Amazon Affiliate Link
    Fast vBulletin VPS Host:
    This site is hosted by IONOS

    Comment


    • flohse
      commented
      Editing a comment
      Issue is solved! Thanks!

    #93
    Hi Glenn, what do you think about adding "Like Counts" similar to "Like Counts on Postbit and Profile" (when this mod is in use) in "Profile Preview Tooltip"?

    Comment


    • glennrocksvb
      commented
      Editing a comment
      Thanks for your suggestion. That's a good integration with other mods. I'll add it to my todo list. Post bookmarked! 🔖

    #94
    flohse, the Like Counts on Postbit and Profile mod only works completely in vB5. In vB6, the Likes system has been replaced by Reactions system which uses a different database table than vB5. The Likes data is still available in vB6 if you upgraded from vB5 but it will never be updated anymore. But if you never upgraded from vB5 to vB6, then you don't have the Likes data to use and display.
    Buy me a coffeePayPal QR Code
    My Amazon Affiliate Link
    Fast vBulletin VPS Host:
    This site is hosted by IONOS

    Comment


    • flohse
      commented
      Editing a comment
      I understand. I updated from vB5 to vB6 so I would be happy to see the likes also in the Profile Preview Tooltip, if the effort involved is reasonable.

    #95
    I have released v2.1 with the following changes:
    • Added "Show Like Counts?" option. Requires the "Like Counts on Postbit and Profile" mod to be installed and enabled.
    • Updated the online/offline icons in the Profile Preview in vB6 to match the online/offline icon native style.
    ​Paid customers will receive an email containing the download link.
    Buy me a coffeePayPal QR Code
    My Amazon Affiliate Link
    Fast vBulletin VPS Host:
    This site is hosted by IONOS

    Comment


    • flohse
      commented
      Editing a comment
      Likes counts works nice. 👍

    #96
    The online glowing in Profile Preview Tooltip is broken since you changed the online/offline icons. I prefered the old style.

    before:

    ​​​Click image for larger version  Name:	Screenshot 2026-06-14 144215.png Views:	0 Size:	24.7 KB ID:	34341

    after :

    ​​​​​Click image for larger version

Name:	Screenshot 2026-06-14 143519.png
Views:	0
Size:	24.5 KB
ID:	34343

    Can you revert back this change or do you have another solution to get the previous style back?

    Comment


      #97
      It would be this code but this needs to be adjusted to include the profile preview online icon

      No animated gif. No jQuery animation. No additional image. Just pure CSS3 animation coolness. :cool: Add this in css_additional template in AdminCP or via Sitebuilder > Style > CSS Editor: /* Online icon "Glow" - START */ .b-userinfo__icon.online .b-icon-fa, .profile_sidebar_content .online-status.online .b


      I'm just on my phone and don't have access to my computer at the moment. I'll post the updated code later tonight.
      Buy me a coffeePayPal QR Code
      My Amazon Affiliate Link
      Fast vBulletin VPS Host:
      This site is hosted by IONOS

      Comment


        #98
        I had implemented this with slight modifications and it worked before the update to Profile Preview Tooltip 2.1.

        I am using these CSS modifications:

        Code:
        /*************** Online icon ***************/
        
        .b-userinfo__icon.online .b-icon-fa {
            color: #0f0; /* adjust online dot icon color as desired */
            position: relative;
            border: 4px solid #fff;
            box-sizing: border-box;
            transform: scale(.6);
        }
        
        .profile_sidebar_content .online-status.online .b-icon-fa {
            color: #0f0; /* adjust online dot icon color as desired */
            position: relative;
            border: 4px solid #fff;
            box-sizing: border-box;
            transform: scale(.6);
        }
        
        .shoutbox-widget .shoutbox__avatar .online-status.online {
            color: #0f0; /* adjust online dot icon color as desired */
            background-color: #aaa; /* adjust online dot icon color as desired */
            position: relative;
            border: 4px solid #fff;
            box-sizing: border-box;
            border-radius: 50%;
            top: -10px;
            left: 26px;
            transform: scale(1.7);
        }
        
        
        /*************** Offline icon ***************/
        
        .b-userinfo__icon.offline .b-icon-fa {
            color: #aaa; /* adjust online dot icon color as desired */
            background-color: #aaa; /* adjust online dot icon color as desired */
            position: relative;
            border: 4px solid #fff;
            border-radius: 50%;
            box-sizing: border-box;
            transform: scale(.6);
        }
        
        .profile_sidebar_content .online-status.offline .b-icon-fa {
            color: #aaa; /* adjust online dot icon color as desired */
            background-color: #aaa; /* adjust online dot icon color as desired */
            position: relative;
            border: 4px solid #fff;
            border-radius: 50%;
            transform: scale(.6);
        }
        
        .shoutbox-widget .shoutbox__avatar .online-status.offline {
            color: #aaa; /* adjust online dot icon color as desired */
            background-color: #aaa; /* adjust online dot icon color as desired */
            position: relative;
            border: 4px solid #fff;
            box-sizing: border-box;
            border-radius: 50%;
            top: -10px;
            left: 26px;
            transform: scale(1.7);
        }
        
        
        /*************** Online icon "Glow" ***************/
        
        .b-post .b-userinfo__icon.online .b-icon-fa::after,
        .profile_sidebar_content .online-status.online .b-icon-fa::after {
            border: 16px solid #6e9d00; /* adjust glow color as desired */
            top: -20px; /* adjust top coordinate to move glow vertically in postbit */
            left: -20px; /* adjust left coordinate to move glow horizontally in postbit */
            content: '';
            z-index: 1;
            background: transparent;
            border-radius: 40px;
            height: 24px;
            width: 24px;
            position: absolute;
            opacity: 0;
            animation: glow 3s ease-out infinite;
        }
        
        .profile_sidebar_content .online-status.online .b-icon-fa::after {
            top: -24px; /* adjust top coordinate to move glow vertically on Profile page */
            left: -24px /* adjust left coordinate to move glow horizontally on Profile page */
        }
        
        @keyframes glow {
            0% {
                transform: scale(0);
                opacity: 0;
            }
            25% {
                transform: scale(0);
                opacity: 0.1;
            }
            50% {
                transform: scale(.1);
                opacity: 0.3;
            }
            75% {
                transform: scale(.5);
                opacity: 0.5;
            }
            100% {
                transform: scale(1);
                opacity: 0;
            }
        }
        
        .shoutbox-widget .shoutbox__avatar .online-status.online::after {
           border: 16px solid #6e9d00; /* adjust glow color as desired */
            top: -2rem; /* adjust top coordinate to move glow vertically in postbit */
            left: -2rem; /* adjust left coordinate to move glow horizontally in postbit */
            content: '';
            z-index: 1;
            background: transparent;
            border-radius: 40px;
            height: 8px;
            width: 8px;
            position: absolute;
            opacity: 0;
            animation: glow-small 3s ease-out infinite;
        }
        
        @keyframes glow-small {
            0% {
                transform: scale(0);
                opacity: 0;
            }
            25% {
                transform: scale(0);
                opacity: 0.1;
            }
            50% {
                transform: scale(.075);
                opacity: 0.3;
            }
            75% {
                transform: scale(.15);
                opacity: 0.5;
            }
            100% {
                transform: scale(.40);
                opacity: 0;
            }
        }
        
        ​
        How can the online indicator icon in the updated Profile Preview Tooltip 2.1. be adressed in CSS?

        Comment

        Latest Posts

        Collapse

        Working...
        X
        Searching...Please wait.
        An unexpected error was returned: 'Your submission could not be processed because you have logged in since the previous page was loaded.

        Please push the back button and reload the previous window.'
        An unexpected error was returned: 'Your submission could not be processed because the token has expired.

        Please push the back button and reload the previous window.'
        An internal error has occurred and the module cannot be displayed.
        There are no results that meet this criteria.
        Search Result for "|||"