3.2 & 3.3 Extensions Database 3.2 / 3.3 ⇒ Member Profile Views
-
- Users
- Posts: 3
- Joined: 16 Dec 2015, 19:37
Re: Member Profile Views
Russian for 1.0.2
You do not have the required permissions to view the files attached to this post! Maybe your post count is too low.
Cuilibet fatuo placet sua clava.
-
- Users
- Posts: 77
- Joined: 05 Jun 2016, 20:18
Re: Member Profile Views
Hi
Is there the spanish version?
Thanks
Is there the spanish version?

Thanks
-
- Users
- Posts: 93
- Joined: 05 Nov 2015, 22:48
Re: Member Profile Views
Need help plz

why I have all this code ??
phpbb prosilver 3.1.9
thx

why I have all this code ??
phpbb prosilver 3.1.9
thx
-
- Users
- Posts: 23
- Joined: 14 Apr 2016, 12:42
Re: Member Profile Views
Hello,
today I made the update to version 1.0.2 but do not see no avatar or number of views for each user.
Do you know včem could be wrong ?
Thanks
blizzard
my version phpbb on 3.1.9
today I made the update to version 1.0.2 but do not see no avatar or number of views for each user.
Do you know včem could be wrong ?
Thanks
blizzard
my version phpbb on 3.1.9
You do not have the required permissions to view the files attached to this post! Maybe your post count is too low.
-
- Founder
- Posts: 6464
- Joined: 13 Jan 2014, 21:45
Re: Member Profile Views
First post updated.
-
- Users
- Posts: 1
- Joined: 21 Apr 2017, 22:03
Re: Member Profile Views
Is there any way to alter the extension (or the existing code) so that the information will be shown only to the owner of the profile?
-
- Users
- Posts: 93
- Joined: 05 Nov 2015, 22:48
Re: Member Profile Views
still no support !!The Good wrote: 21 Aug 2016, 19:57 need help plz
why I have all this code ??
phpbb prosilver 3.1.9
thx
Member Profile Views 1.0.3 phpbb 3.1.10
-
- Users
- Posts: 33
- Joined: 08 Aug 2018, 17:04
Re: Member Profile Views
Is there by chance any way to change the last 100 Members to say 25 or 50 members. I looked through all the posts but I didnt see anyone ask about this.
Thanks
Thanks
-
- VIP
- Posts: 1157
- Joined: 14 Oct 2014, 19:01
Re: Member Profile Views
In the migration schema file it adds a new column to the config table.
You could go to phpmyadmin and look in the config table and change the value of profileviews_value column to 25 or 50.
I don't understand this:
Code: Select all
// Add configs
array('config.add', array('profileviews_value', 100)),
In the memberlist_view_contact_after.html template is this url written right for that link?
Code: Select all
<div class="member-viewed-avatar">{member_viewed.AVATAR}</div> <span><a href="{member_viewed.URL}" "{member_viewed.TIME}" ""{member_viewed.USERNAME_COLOUR}">{member_viewed.USERNAME}</a> ({member_viewed.COUNTER})</span><!-- IF not member_viewed.S_LAST_ROW -->, <!-- ENDIF -->
Code: Select all
<a href="{member_viewed.URL}" "{member_viewed.TIME}" ""{member_viewed.USERNAME_COLOUR}">
-
- Founder
- Posts: 6464
- Joined: 13 Jan 2014, 21:45
Re: Member Profile Views
Did you check ACP settings to enter a value?mortalites wrote: 20 Nov 2018, 23:25 Is there by chance any way to change the last 100 Members to say 25 or 50 members. I looked through all the posts but I didnt see anyone ask about this.
Thanks
-
- VIP
- Posts: 1157
- Joined: 14 Oct 2014, 19:01
Re: Member Profile Views
Ah... I see it now, in ACP / Board features / under Load settings. I was like mortalites, didn't know that was there.
Maybe add a screenshot of acp setting on first post. I just now saw the Added ACP option to set value (Board features)
And I understand your link now.
You set those up in the listener, I've never seen that done before.
What planet do you hail from?
Maybe add a screenshot of acp setting on first post. I just now saw the Added ACP option to set value (Board features)
And I understand your link now.
Code: Select all
<a href="{member_viewed.URL}" "{member_viewed.TIME}" "{member_viewed.USERNAME_COLOUR}">{member_viewed.USERNAME}</a>
Code: Select all
$user_colour = ($totalviewsmember['user_colour']) ? ' style="color:#' . $totalviewsmember['user_colour'] . '" class="username-coloured"' : '';
$user_time = ($totalviewsmember['date']) ? ' title="' . $this->user->format_date($totalviewsmember['date']) . '': '';
-
- Founder
- Posts: 6464
- Joined: 13 Jan 2014, 21:45
Re: Member Profile Views
Check listener and comment out this line:
'COUNTER' => $totalviewsmember['counter_user'],