3.2 & 3.3 Extensions Database 3.2 / 3.3 ⇒ Member Profile Views
-
Kim
- 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.
Cuilibet fatuo placet sua clava.
-
rogerio24
- 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
-
The Good
- 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
-
BLIZZARDCZ
- 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.
-
Wolfkin48
- 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?
-
The Good
- 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
-
mortalites
- 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
-
Sniper_E
- VIP

- Posts: 1164
- 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}">-
dmzx
- Founder

- Posts: 6585
- 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
-
Sniper_E
- VIP

- Posts: 1164
- 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']) . '': '';-
dmzx
- Founder

- Posts: 6585
- Joined: 13 Jan 2014, 21:45
Re: Member Profile Views
Check listener and comment out this line:
'COUNTER' => $totalviewsmember['counter_user'],



