Edit avatar link in postbit

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • doubleclick
    Senior Member
    • Jun 2004
    • 218

    [vB4] Edit avatar link in postbit

    Hello -

    I put an "Edit Avatar" link in the postbit, right under a user's image. However, this link shows up for everyone, rather than the owner of that avatar.

    What should I add to the following code so it displays this link only under the avatar of the logged in user?

    Code:
    <a href="profile.php?{vb:raw session.sessionurl}do=editavatar">Change your picture.</a>
  • Maurd
    Senior Member
    • Jun 2011
    • 672
    • 4.1.x

    #2
    Just make sure the current user's ID equals the post owner's ID.

    Code:
    <vb:if condition="$bbuserinfo['userid'] == $post['userid']">
    	<a href="profile.php?{vb:raw session.sessionurl}do=editavatar">Change your picture.</a>
    </vb:if>
    - Maurice Workin' in the Jira mine, goin' down, down, down

    Comment

    • doubleclick
      Senior Member
      • Jun 2004
      • 218

      #3
      That was just what I needed. Thanks Maurd!

      Comment

      Related Topics

      Collapse

      Working...