Avatar in last post

Making avatar in last post to be clickable - Avatar in last post

Re: Making avatar in last post to be clickable

by OdedK » Sun Dec 04, 2016 11:37 pm

thanks for the info
OdedK
Registered User
Posts: 65
Joined: Mon Nov 28, 2016 12:25 am

Re: Making avatar in last post to be clickable

by Galixte de EzCom » Fri Aug 18, 2017 4:31 pm

Hi,

it’s better to use onclick, from 1.0.4 version you can apply these changes:
  1. OPEN:

    Code: Select all

    ./ext/bb3mobi/lastpostavatar/styles/all/template/event/forumlist_body_last_post_title_prepend.html
  2. FIND:<span class="lastpostavatar">{forumrow.AVATAR_IMG}</span><!-- ENDIF -->
  3. REPLACE WITH:

    Code: Select all

    <span class="lastpostavatar" onclick="window.location = '{forumrow.U_LAST_POSTER}';">{forumrow.AVATAR_IMG}</span><!-- ENDIF -->
  4. OPEN: ./ext/bb3mobi/lastpostavatar/event/listener.php
  5. FIND:

    Code: Select all

    $topic_row['LAST_POST_AUTHOR_FULL'] .= '<span class="lastpostavatar">' . $this->avatar_img_resize($this->userrow[$row['topic_last_poster_id']]) . '</span>';
  6. REPLACE WITH:

    Code: Select all

    $topic_row['LAST_POST_AUTHOR_FULL'] .= '<span class="lastpostavatar" onclick="window.location=\'' . $topic_row['U_LAST_POST_AUTHOR'] . '\'">' . $this->avatar_img_resize($this->userrow[$row['topic_last_poster_id']]) . '</span>';
  7. FIND:

    Code: Select all

    $tpl_ary['LAST_POST_AUTHOR_FULL'] .= '<span class="lastpostavatar">' . $this->avatar_img_resize($row) . '</span>';
  8. REPLACE WITH:

    Code: Select all

    $tpl_ary['LAST_POST_AUTHOR_FULL'] .= '<span class="lastpostavatar" onclick="window.location=\'' . $tpl_ary['U_LAST_POST_AUTHOR'] . '\'">' . $this->avatar_img_resize($row) . '</span>';
  9. FIND:

    Code: Select all

    $tpl_ary['LAST_POST_AUTHOR_FULL'] .= '<span class="lastpostavatar">' . $this->avatar_img_resize($row) . '</span>';
  10. REPLACE WITH:

    Code: Select all

    $tpl_ary['LAST_POST_AUTHOR_FULL'] .= '<span class="lastpostavatar" onclick="window.location=\'' . $tpl_ary['U_LAST_POST_AUTHOR'] . '\'">' . $this->avatar_img_resize($row) . '</span>';
Communau EzCom
📖 « Traductions d’extensions & styles pour phpBB 3.2.x & 3.3.x ».
📋 Lists of all extensions identified for phpBB 3.1.x & 3.2.x.
📋 Lists of all styles identified for phpBB 3.1.x & 3.2.x.
Image Tu as un forum et tu veux aussi un site web ? Regarde par ici.
User avatar
Galixte de EzCom
Registered User
Posts: 1106
Joined: Mon Oct 04, 2004 11:14 pm
Location: France
Name: Raphaël M.