Verified Icon on Profile Hitskin_logo Hitskin.com

This is a Hitskin.com skin preview
Install the skinReturn to the skin page

The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

    Verified Icon on Profile

    avatar
    Guest
    Guest


    Verified Icon on Profile Empty Verified Icon on Profile

    Post by Guest Sun 27 Dec 2015 - 14:41

    Hey there. So lately I've been admiring this social network verification thing. Here is the script I use to make an icon display on the profile header of posts.

    Code:
    //*Verification system. Copyright © 2015 by www.fmcodes.com All Rights Reserved
    jQuery(document).ready(function() {
    $('h4.username a[href="/u1"]').after('<img src="http://i.imgur.com/VFD2a7K.png" style="padding-left: 5px;" alt="Verified" title="Verified">');
    });

    What it looks like in posts:

    http://prntscr.com/9j1g2n

    I'd like it to appear in the posts, AND on the profile header.

    http://prntscr.com/9j1gm8

    Can somebody modify this script so it displays in both? Thanks!

    Tags: @Ange Tuteur
    TheCrow
    TheCrow
    Manager
    Manager


    Male Posts : 6902
    Reputation : 795
    Language : Greek, English

    Verified Icon on Profile Empty Re: Verified Icon on Profile

    Post by TheCrow Sun 27 Dec 2015 - 23:25

    Hey @Zuke,

    Have you tried duplicating the code to see if it works?
    For example this:
    Code:
    //*Verification system. Copyright ©️ 2015 by www.fmcodes.com All Rights Reserved
    jQuery(document).ready(function() {
    $('h4.username a[href="/u1"]').after('<img src="http://i.imgur.com/VFD2a7K.png" style="padding-left: 5px;" alt="Verified" title="Verified">');
    $('#profile-advanced-right .module.main .main-head .h3"]').after('<img src="http://i.imgur.com/VFD2a7K.png" style="padding-left: 5px;" alt="Verified" title="Verified">');
    });

    I am not sure whether this will work or not. Just giving out some ideas. Wink



    Verified Icon on Profile Thecro10
    Forum of the Forums

    Forumotion Rules | Tips & Tricks |
    FAQ | Did you forget your password?



    *** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
    No support via PM!
    avatar
    Guest
    Guest


    Verified Icon on Profile Empty Re: Verified Icon on Profile

    Post by Guest Mon 28 Dec 2015 - 19:43

    Luffy wrote:Hey @Zuke,

    Have you tried duplicating the code to see if it works?
    For example this:
    Code:
    //*Verification system. Copyright ©️ 2015 by www.fmcodes.com All Rights Reserved
    jQuery(document).ready(function() {
    $('h4.username a[href="/u1"]').after('<img src="http://i.imgur.com/VFD2a7K.png" style="padding-left: 5px;" alt="Verified" title="Verified">');
    $('#profile-advanced-right .module.main .main-head .h3"]').after('<img src="http://i.imgur.com/VFD2a7K.png" style="padding-left: 5px;" alt="Verified" title="Verified">');
    });

    I am not sure whether this will work or not. Just giving out some ideas. Wink
    Thanks for trying but that didn't work.