Arcade and Photoplog Links in vB Profile

Discussion in 'Add Ons' started by cheat-master30, Apr 25, 2010.

  1. cheat-master30 Senior Member

    Likes Received:
    42
    Software You Use:
    IPB
    If anyone knows the code for Photopost album/gallery linking, tell me. Never the less, two mods from vBulletin.org I released there in the past, which should still roughly work with modern vBulletin:

    This mod simply adds a link to their game rankings in their profile. It's surprisingly simple, and works with any version of ibProArcade.

    Support:

    None needed.

    Apply these edits:

    Find in MEMBERINFO (statistics tab template, this was originally written for a version before custom profiles)

    Code:

    HTML:
    <if condition="$vboptions['usereferrer']">
    <div class="fieldset">
    <div style="padding:$stylevar[formspacer]px">
    $vbphrase[referrals]: <strong>$referrals</strong>
    </div>
    </div>
    </if> 
    Add after:

    Code:

    HTML:
    <div class="fieldset">
    <div style="padding:$stylevar[formspacer]px">
    <a rel="nofollow" href="arcade.php?act=Arcade&module=report&user=$userinfo[userid]">View Arcade Scores</a>
    </div>
    </div> 
    That's it!

    Now, for Photoplog links, see the same template and...

    Find:

    HTML:
    <li><a rel="nofollow" href="album.php?$session[sessionurl]u=$prepared[userid]"><phrase 1="$prepared[username]">$vbphrase[albums_created_by_x]</phrase></a></li>
    Add underneath:

    HTML:
    <li><a rel="nofollow" href="[site address]/[Directory Name of Photoplog]/index.php?u=$userinfo[userid]">[Text to Link to their Gallery]</a></li>
  2. Happy

    ArnyVee Member

    Likes Received:
    5
    Thanks for the easy edit! :)

    Quick suggestion.....you may want to include a screenshot to each just to show folks. This is VERY simple, but folks still want to see how it looks ;)
  3. cheat-master30 Senior Member

    Likes Received:
    42
    Software You Use:
    IPB
    Ah, no problem. Can someone else got a screen though? I don't use vB any more.
  4. Doodles Junior Member

    Likes Received:
    0
    Thank you very much for the edits. We don't have referrers or albums in the statistics, so I added both to the total posts block as I couldn't think of a better place lol.

    Here's a screenshot

    www.plecoplanet.com 2010-5-25 22-30.jpg www.plecoplanet.com[/url] 2010-5-25 22-30.jpg]

    The arcade link just needs to be added as a list item like the photoplog edit.

    like so

    HTML:
    <li><a rel="nofollow" href="arcade.php?act=Arcade&module=report&user=$userinfo[userid]">View Arcade Scores</a></li>
    I added both after this code

    HTML:
                <li><a href="search.php?$session[sessionurl]do=finduser&u=$userinfo[userid]&starteronly=1" rel="nofollow"><phrase 1="$prepared[username]">$vbphrase[find_all_threads_started_by_x]</phrase></a></li>
    The arcade link also works with v3arcade

Share This Page