Making avatar in last post to be clickable - Avatar in last post
Re: Making avatar in last post to be clickable
thanks for the info
-
- Registered User
- Posts: 65
- Joined: Mon Nov 28, 2016 12:25 am
Re: Making avatar in last post to be clickable
Hi,
it’s better to use onclick, from 1.0.4 version you can apply these changes:
it’s better to use onclick, from 1.0.4 version you can apply these changes:
- OPEN:
Code: Select all
./ext/bb3mobi/lastpostavatar/styles/all/template/event/forumlist_body_last_post_title_prepend.html
- FIND:
<span class="lastpostavatar">{forumrow.AVATAR_IMG}</span><!-- ENDIF -->
- REPLACE WITH:
Code: Select all
<span class="lastpostavatar" onclick="window.location = '{forumrow.U_LAST_POSTER}';">{forumrow.AVATAR_IMG}</span><!-- ENDIF -->
- OPEN:
./ext/bb3mobi/lastpostavatar/event/listener.php
- 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>';
- 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>';
- FIND:
Code: Select all
$tpl_ary['LAST_POST_AUTHOR_FULL'] .= '<span class="lastpostavatar">' . $this->avatar_img_resize($row) . '</span>';
- 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>';
- FIND:
Code: Select all
$tpl_ary['LAST_POST_AUTHOR_FULL'] .= '<span class="lastpostavatar">' . $this->avatar_img_resize($row) . '</span>';
- 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>';
Communauté 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.
Tu as un forum et tu veux aussi un site web ? Regarde par ici.
« 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.
Tu as un forum et tu veux aussi un site web ? Regarde par ici.
-
- Registered User
- Posts: 1106
- Joined: Mon Oct 04, 2004 11:14 pm
- Location: France
- Name: Raphaël M.