
3.2 & 3.3 Extensions Database 3.2 / 3.3 ⇒ Member Profile Views
-
- Founder
- Posts: 6466
- Joined: 13 Jan 2014, 21:45
Re: Member Profile Views
Read from here
Who Visited This Topic

-
- Users
- Posts: 15
- Joined: 18 Apr 2022, 00:00
Re: Member Profile Views
dmzx wrote: 01 Mar 2023, 10:33Check it like this:
SHOW VARIABLES LIKE 'sql_mode';
And post the output here.
You do not have the required permissions to view the files attached to this post! Maybe your post count is too low.
Last edited by Bruce Banner on 10 Jul 2023, 18:16, edited 1 time in total.
-
- Users
- Posts: 15
- Joined: 18 Apr 2022, 00:00
Re: Member Profile Views
The first command resulted in
I couldn't run the 2nd command. I don't have the right privileges.
EDIT: It's alright, my host disabled ONLY_FULL_GROUP_BY for me and now everything's working fine. Thanks!
You do not have the required permissions to view the files attached to this post! Maybe your post count is too low.
Last edited by Bruce Banner on 13 Jul 2023, 17:56, edited 3 times in total.
-
- Founder
- Posts: 6466
- Joined: 13 Jan 2014, 21:45
Re: Member Profile Views
Thanks for the feedbackBruce Banner wrote: 12 Jul 2023, 19:54The first command resulted in
Capture.PNG
I couldn't run the 2nd command. I don't have the right privileges.
Capture2.PNG
EDIT: It's alright, my host disabled ONLY_FULL_GROUP_BY for me and now everything's working fine. Thanks!

-
- Users
- Posts: 93
- Joined: 05 Nov 2015, 22:48
Re: Member Profile Views
How to change Last 100 members that viewed your profile by just Last 5 members that viewed your profile
THANKS
THANKS
-
- Users
- Posts: 918
- Joined: 02 Feb 2018, 12:04
Re: Member Profile Views
Check admin panelThe Good wrote: 05 Aug 2023, 23:21 how to change Last 100 members that viewed your profile by just Last 5 members that viewed your profile
THANKS
GENERAL---->LOAD SITTINGS

Scroll down and you will se this

Feed like a disease
And bring them to their knees
They'll pay for their deceit
And bring them to their knees
They'll pay for their deceit
-
- Users
- Posts: 279
- Joined: 15 Aug 2015, 20:25
Re: Member Profile Views
Hey DM :)
Is there a permission somewhere in this ext that can toggle on/off the ability to view visits to a profile...as in:
Can view who visited profile
I can't seem to find it. If not could that be added?
Is there a permission somewhere in this ext that can toggle on/off the ability to view visits to a profile...as in:
Can view who visited profile
I can't seem to find it. If not could that be added?

-
- VIP
- Posts: 1157
- Joined: 14 Oct 2014, 19:01
Re: Member Profile Views
There are no permissions setup for who 'Can view member profile views.'
But in the memberprofileviews/styles/prosilver/template/event/memberlist_view_contact_after.html
If you want only admins to see it
Or use group numbers in your if statement.
But in the memberprofileviews/styles/prosilver/template/event/memberlist_view_contact_after.html
Code: Select all
{% if MEMBER_PROFILE_VIEW and S_USER_LOGGED_IN %}
Code: Select all
{% if MEMBER_PROFILE_VIEW and U_ACP %}
-
- Users
- Posts: 279
- Joined: 15 Aug 2015, 20:25
Re: Member Profile Views
That's what I was looking for! Thank you Snip!!!!
Now I just need to learn how to deal with group numbers ( Also need this knowledge for edit's in magic )
Going to copy over your edits to my site for quick access


Now I just need to learn how to deal with group numbers ( Also need this knowledge for edit's in magic )
Going to copy over your edits to my site for quick access
-
- VIP
- Posts: 1157
- Joined: 14 Oct 2014, 19:01
Re: Member Profile Views
For admins 5 and moderators 4 try:Now I just need to learn how to deal with group numbers.
Code: Select all
{% if MEMBER_PROFILE_VIEW and (S_GROUP_5 or S_GROUP_4) %}
You can always find the group id number you need for your if statements there.
-
- Admin
- Posts: 5105
- Joined: 06 Apr 2014, 16:12
Re: Member Profile Views
Group id's will only work in templates if a core edit is done to the function.php file BUT with the power of cssmagic installed you can use group id's.
Hence the message
Cssmagic now allows you to use template vars in html files with out the need of the group template vars ext also magic does not need to be enabled for this to work.
Example:
Hence the message
Cssmagic now allows you to use template vars in html files with out the need of the group template vars ext also magic does not need to be enabled for this to work.
Example:
Code: Select all
{% if S_GROUP_5 or S_GROUP_7 %} Testing {% else %} What ever. {% endif %}

-
- VIP
- Posts: 1157
- Joined: 14 Oct 2014, 19:01
Re: Member Profile Views
One !important thing we left out. The user needs to see how many visits to his/her profile.
Code: Select all
{% if MEMBER_PROFILE_VIEW and (U_ACP or S_GROUP_7 or S_USERNAME == USERNAME) %}
-
- Admin
- Posts: 5105
- Joined: 06 Apr 2014, 16:12
Re: Member Profile Views
Custom version for you on mine try it.